/* Blog page specific styles */

.blog-hero {
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../images/Airport.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 140px;
    padding-bottom: 80px;
    color: #fff;
}

/* overlay is handled by background-image gradient above */

.blog-hero .container { position: relative; z-index: 1; }

.blog-hero-inner {
    text-align: center;
    padding: 30px 0 10px 0;
}

.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 6vw, 72px);
    margin: 0 0 12px 0;
}

.blog-sub {
    max-width: 980px;
    margin: 0 auto;
    font-size: clamp(16px, 2.2vw, 22px);
    line-height: 1.6;
    opacity: 0.95;
}

.blog-filters {
    background: #faf7ff;
    border-bottom: 1px solid rgba(74,20,140,0.12);
}
.blog-filters .container { max-width: 920px; }

.filter-row {
    display: flex;
    gap: 28px;
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: grid;
    gap: 6px;
    min-width: 360px;
}

.filter-label {
    font-size: 14px;
    color: #6a1b9a;
    font-weight: 800;
}

.filter-select {
    min-width: 100%;
    height: 48px;
    background: #f5f2f8;
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    box-shadow: inset 0 0 0 1px rgba(106,27,154,0.06);
}
.filter-select:focus { box-shadow: inset 0 0 0 2px rgba(106,27,154,0.25); }

.filter-select-wrap { position: relative; }
.filter-reset {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: #9aa0a6;
    font-weight: 700;
}

/* Sidebar podcast */
.podcast-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}
.podcast-cover {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.podcast-body { padding: 12px 12px 16px 12px; }
.btn-podcast {
    display: inline-block;
    margin-top: 8px;
    background: #4a148c;
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    text-decoration: none;
    font-weight: 700;
}
.rss-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #2b1b3b;
    text-decoration: none;
    font-weight: 700;
}
.rss-link i { color: #6a1b9a; }

/* Feature tiles */
.blog-feature-row { padding: 20px 0 10px 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 992px) {
    .features-grid { grid-template-columns: 1fr; }
}
.feature-tile {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.feature-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.feature-badge {
    position: absolute;
    left: 14px; top: 12px;
    font-size: 12px;
    font-weight: 800;
    color: #7c3aed;
    background: #f3ecff;
    padding: 6px 10px;
    border-radius: 999px;
}
.feature-title {
    font-size: 22px;
    font-weight: 800;
    color: #2b1b3b;
    padding: 10px 14px 46px 14px;
    margin: 0;
}

/* Sticky left column */
.sticky-col { position: sticky; top: 96px; }
.chip {
    position: absolute;
    right: 12px; bottom: 12px;
    background: #f1eafe;
    color: #4a148c;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 12px;
}

.blog-grid-section {
    padding: 24px 0 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    
    .blog-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .sticky-col {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .blog-hero {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    
    .blog-title {
        font-size: clamp(28px, 8vw, 48px);
    }
    
    .blog-sub {
        font-size: clamp(14px, 3vw, 18px);
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .filter-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .blog-grid { 
        grid-template-columns: 1fr; 
        gap: 1.25rem;
    }
    
    .blog-hero {
        padding-top: 72px;
        padding-bottom: 40px;
    }
    
    .feature-title {
        font-size: 18px;
        padding: 8px 12px 40px 12px;
    }
    
    .post-card {
        margin-bottom: 0;
    }
}

.post-card {
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .25s ease;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.16);
}

.post-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.post-meta {
    padding: 10px 14px 0 14px;
    color: #6a1b9a;
    font-weight: 700;
    font-size: 12px;
}

.post-title {
    padding: 6px 14px 14px 14px;
    font-size: 18px;
    font-weight: 800;
    color: #2b1b3b;
    line-height: 1.35;
}



