@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.content {
    background-color: #f8f9fa; /* Light background to make cards pop */
    padding: 60px 0;
}

.premium-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px;
    max-width: 1340px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.premium-blog-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(128, 156, 0, 0.15); /* #809c00 is their theme color */
}

.premium-blog-media {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.premium-blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-blog-card:hover .premium-blog-media img {
    transform: scale(1.08);
}

.premium-blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.premium-blog-content .entry-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333;
}

.premium-blog-content .entry-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.premium-blog-content .entry-title a:hover {
    color: #809c00;
}

.premium-blog-details-btn {
    margin-top: auto;
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #a2c33f 0%, #809c00 100%);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(128, 156, 0, 0.3);
}

.premium-blog-details-btn:hover {
    box-shadow: 0 8px 25px rgba(128, 156, 0, 0.5);
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* Fix main wrap spacing */
.full-width-wrap {
    background-color: transparent !important;
}
