/* ===================================================
   BLOG LISTING STYLES
=================================================== */
.blog-page-wrapper {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    background: var(--bg-body);
    min-height: 80vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.blog-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-header p {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-empty {
    width: min(90%, 760px);
    margin: 0 auto;
    padding: 48px 32px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 20, 34, 0.08);
    text-align: center;
}

.blog-empty h2 {
    margin: 0 0 14px;
    font-size: 2rem;
    color: var(--primary-color);
}

.blog-empty p {
    margin: 0 auto;
    max-width: 560px;
    color: var(--muted-text);
    line-height: 1.8;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-pub-date {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: calc(1.3em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-desc {
    font-size: 0.95rem;
    color: var(--muted-text);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    min-height: calc(1.6em * 5);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-btn {
    align-self: flex-start;
    padding: 8px 18px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-card-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ===================================================
   BLOG DETAIL (MONTH-WISE) STYLES
=================================================== */
.bd-hero {
    margin-top: calc(var(--header-height));
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-color);
    background-attachment: fixed;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 550px;
}

.bd-hero-container {
    width: 100%;
    flex: 0 0 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.bd-hero-text {
    max-width: 800px;
    text-align: left;
}

.bd-hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.bd-hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.bd-hero-text p {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
}

@media (max-width: 800px) {
    .bd-hero {
        padding: 80px 20px;
        min-height: 450px;
    }

    .bd-hero-text h1 {
        font-size: 2.8rem;
    }

    .bd-hero-text p {
        font-size: 1.1rem;
    }
}

.bd-content {
    background: #fff;
}

.bd-intro {
    background: linear-gradient(180deg, rgba(6, 12, 24, 0.94) 0, rgba(6, 12, 24, 0.94) 46%, #ffffff 46%, #ffffff 100%);
    padding: 0 20px 30px;
}

.bd-intro-shell {
    max-width: 1280px;
    margin: -70px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
    position: relative;
    z-index: 3;
}

.bd-intro-copy,
.bd-intro-side {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 22px 50px rgba(12, 20, 34, 0.14);
    height: 100%;
}

.bd-intro-copy {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bd-intro-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.bd-intro-copy h2 {
    margin: 0 0 16px;
    font-size: 2rem;
    line-height: 1.15;
    color: var(--primary-color);
}

.bd-intro-copy p {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted-text);
}

.bd-intro-copy p:last-child {
    margin-bottom: 0;
}

.bd-intro-side h3 {
    margin: 0 0 14px;
    font-size: 1.45rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.bd-intro-side p {
    margin: 0;
    color: var(--muted-text);
    line-height: 1.72;
    font-size: 0.98rem;
}

.bd-intro-side {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(12, 20, 34, 0.06);
}

.bd-intro-side::before {
    content: "";
    position: absolute;
    left: 32px;
    right: 32px;
    top: 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color), rgba(0, 0, 0, 0));
}

.bd-intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bd-intro-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
}

.bd-intro-checklist {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.bd-intro-data-grid {
    display: grid;
    gap: 14px;
    margin-top: 2px;
}

.bd-intro-data-block {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.035);
    border: 1px solid rgba(12, 20, 34, 0.05);
}

.bd-intro-data-label {
    display: inline-block;
    margin-bottom: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--muted-text);
}

.bd-intro-checklist li {
    position: relative;
    padding-left: 22px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.55;
    font-size: 0.95rem;
}

.bd-intro-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-color);
    box-shadow: 0 0 0 5px rgba(244, 63, 94, 0.08);
}

.bd-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.bd-intro-stats {
    display: grid;
    gap: 12px;
}

.bd-intro-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.035);
}

.bd-intro-stat-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted-text);
}

.bd-intro-stat strong {
    font-size: 0.98rem;
    text-align: right;
    color: var(--primary-color);
}

.bd-intro-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 170px;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #ffffff;
    background: var(--primary-color);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bd-intro-link:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.bd-intro-link-secondary {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.05);
}

.bd-section-shell {
    max-width: 1280px;
    margin: 0 auto;
}

.bd-section-head {
    text-align: center;
    margin-bottom: 30px;
}

.bd-section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.bd-section-head h2 {
    margin: 0;
    font-size: 2.2rem;
    color: var(--primary-color);
}

/* Alternating Month Blocks */
.bd-month-block {
    padding: 50px 20px;
    width: 100%;
}

.bd-month-block:nth-child(odd) {
    background-color: var(--bg-body);
    /* Light gray usually */
    color: var(--text-dark);
}

.bd-month-block:nth-child(even) {
    background-color: var(--primary-color);
    /* The site's primary color */
    color: #ffffff;
}

.bd-month-block:nth-child(3n) {
    background-color: var(--accent-color);
    /* The site's accent color */
    color: #ffffff;
}

.bd-month-container {
    max-width: 1280px;
    margin: 0 auto;
}

.bd-no-events {
    margin: 0;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
}

.bd-empty-guide {
    max-width: 860px;
    margin: 0 auto;
    padding: 34px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 42px rgba(12, 20, 34, 0.18);
    text-align: center;
}

.bd-month-block:nth-child(odd) .bd-empty-guide {
    background: #ffffff;
    border-color: rgba(12, 20, 34, 0.08);
}

.bd-empty-guide-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.16);
}

.bd-month-block:nth-child(odd) .bd-empty-guide-kicker {
    background: rgba(0, 0, 0, 0.06);
    color: var(--primary-color);
}

.bd-empty-guide h3 {
    margin: 0 0 14px;
    font-size: 2rem;
    line-height: 1.2;
}

.bd-empty-guide p {
    margin: 0 auto;
    max-width: 660px;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.92;
}

.bd-empty-guide-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.bd-empty-guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bd-month-block:nth-child(odd) .bd-empty-guide-btn {
    background: var(--primary-color);
    color: #ffffff;
}

.bd-empty-guide-btn:hover {
    transform: translateY(-2px);
    opacity: 0.94;
}

.bd-empty-guide-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.bd-month-block:nth-child(odd) .bd-empty-guide-btn-secondary {
    background: rgba(12, 20, 34, 0.05);
    color: var(--primary-color);
    border-color: rgba(12, 20, 34, 0.12);
}

.bd-month-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid currentColor;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.bd-event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bd-event-item-modern {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.bd-event-item-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.bd-month-block:nth-child(odd) .bd-event-item-modern {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.05);
}

.bd-month-block:nth-child(odd) .bd-event-item-modern:hover {
    background: rgba(0, 0, 0, 0.06);
}

.bd-event-date-badge {
    background: var(--accent-color);
    color: var(--primary-color);
    width: 65px;
    height: 65px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bd-event-date-badge .bd-dd {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.bd-event-date-badge .bd-mm {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.bd-event-info {
    flex-grow: 1;
}

.bd-event-link-modern {
    color: inherit;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.bd-event-link-modern:hover {
    opacity: 0.8;
}

.bd-event-venue-modern {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bd-btn-get-tickets {
    padding: 10px 24px;
    background: #ffffff;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.bd-month-block:nth-child(odd) .bd-btn-get-tickets {
    background: var(--primary-color);
    color: #ffffff;
}

.bd-btn-get-tickets:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.bd-outro {
    background: #ffffff;
    padding: 40px 20px 10px;
}

.bd-outro-shell {
    max-width: 1040px;
    margin: 0 auto;
    padding: 28px 32px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.035);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.bd-outro-copy h2 {
    margin: 0 0 10px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.bd-outro-copy p {
    margin: 0;
    color: var(--muted-text);
    line-height: 1.7;
}

.bd-outro-btn,
.bd-feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    color: #ffffff;
    background: var(--primary-color);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bd-outro-btn:hover,
.bd-feature-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.bd-related-blogs,
.bd-related-content {
    background: #ffffff;
    padding: 55px 20px;
}

.bd-related-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bd-related-blog-card,
.bd-related-content-card {
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 42px rgba(12, 20, 34, 0.1);
}

.bd-related-blog-card img,
.bd-related-content-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.bd-related-blog-copy,
.bd-related-content-copy {
    padding: 22px;
}

.bd-related-blog-copy h3,
.bd-related-content-copy h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.bd-related-blog-copy p,
.bd-related-content-copy p {
    margin: 0;
    color: var(--muted-text);
    line-height: 1.7;
}

.bd-related-blog-copy a {
    display: inline-block;
    margin-top: 16px;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
}

.bd-feature-banner {
    background: #f7f8fb;
    padding: 15px 20px 55px;
}

.bd-feature-shell {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
    background: #0b1220;
    border-radius: 28px;
    overflow: hidden;
}

.bd-feature-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.bd-feature-copy {
    padding: 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bd-feature-copy h2 {
    margin: 0 0 14px;
    font-size: 2.1rem;
    color: #ffffff;
}

.bd-feature-copy p {
    margin: 0 0 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.bd-related-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bd-related-content-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.06);
    color: var(--primary-color);
}

.bd-related-content-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    font-size: 0.92rem;
}

.bd-related-content-footer span {
    color: var(--muted-text);
}

.bd-related-content-footer a {
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
}

@media (max-width: 600px) {
    .bd-event-item-modern {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .bd-btn-get-tickets {
        width: 100%;
        text-align: center;
    }

    .bd-empty-guide {
        padding: 26px 20px;
    }

    .bd-empty-guide h3 {
        font-size: 1.55rem;
    }

    .bd-empty-guide-btn {
        width: 100%;
    }

    .bd-hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .bd-intro-shell {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }

    .bd-related-blog-grid,
    .bd-related-content-grid,
    .bd-feature-shell,
    .bd-outro-shell {
        grid-template-columns: 1fr;
    }

    .bd-outro-shell {
        display: grid;
    }
}

@media (max-width: 600px) {
    .bd-intro {
        padding: 0 16px 24px;
    }

    .bd-intro-copy,
    .bd-intro-side {
        padding: 24px;
        border-radius: 20px;
    }

    .bd-intro-data-block {
        padding: 16px;
    }

    .bd-intro-side::before {
        left: 24px;
        right: 24px;
    }

    .bd-intro-copy h2 {
        font-size: 1.7rem;
    }

    .bd-intro-stat {
        align-items: flex-start;
        flex-direction: column;
    }

    .bd-intro-stat strong {
        text-align: left;
    }

    .bd-section-head h2,
    .bd-feature-copy h2,
    .bd-outro-copy h2 {
        font-size: 1.7rem;
    }

    .bd-related-blogs,
    .bd-related-content,
    .bd-feature-banner,
    .bd-outro {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bd-related-blog-card img,
    .bd-related-content-card img {
        height: 190px;
    }

    .bd-feature-copy {
        padding: 28px 24px;
    }

    .bd-outro-shell {
        padding: 24px;
    }
}
