.blog-page {
    background: #f5fbfb;
    color: #19323a;
}

.blog-hero,
.blog-detail-hero {
    background: linear-gradient(135deg, #e8fbf8 0%, #fff7ec 100%);
    padding: 72px 0 58px;
    border-bottom: 1px solid #d7efea;
}

.blog-hero__content,
.blog-detail-hero__content {
    max-width: 820px;
}

.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #0f766e;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(20, 97, 89, 0.08);
}

.blog-brand-prime {
    color: #eb8c00;
}

.blog-brand-eventz {
    color: #27c7bd;
}

.blog-hero h1,
.blog-detail-hero h1 {
    color: #17323a;
    font-family: "Poppins", sans-serif;
    font-size: clamp(34px, 6vw, 62px);
    font-weight: 900;
    line-height: 1.04;
    margin: 0 0 18px;
}

.blog-hero p,
.blog-detail-hero p {
    color: #36545c;
    font-size: 18px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0;
}

.blog-listing,
.blog-detail-section {
    padding: 54px 0 74px;
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #d9efea;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(27, 70, 73, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(27, 70, 73, 0.14);
}

.blog-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    background: #eaf5f2;
    overflow: hidden;
}

.blog-card__media img,
.blog-mini-card img,
.blog-article__banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.blog-card__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f766e;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-card h2 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
}

.blog-card h2 a,
.blog-card__link,
.blog-back-link,
.blog-mini-card {
    color: inherit;
    text-decoration: none;
}

.blog-card p {
    color: #4d6670;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 22px;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f28c13;
    font-weight: 800;
    margin-top: auto;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.blog-pagination .pagination {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0;
}

.blog-pagination .page-link {
    min-width: 42px;
    border: 1px solid #d9efea;
    border-radius: 8px;
    color: #17323a;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 10px 24px rgba(27, 70, 73, 0.08);
}

.blog-pagination .page-item.active .page-link {
    border-color: #f28c13;
    background: #f28c13;
    color: #ffffff;
}

.blog-pagination .page-item.disabled .page-link {
    color: #8ba1a8;
    background: #eef7f5;
}

.blog-empty {
    max-width: 560px;
    margin: 0 auto;
    padding: 44px 24px;
    border: 1px solid #d9efea;
    border-radius: 8px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 18px 45px rgba(27, 70, 73, 0.08);
}

.blog-empty .tf-icons {
    color: #0f766e;
    font-size: 44px;
}

.blog-empty h2 {
    color: #17323a;
    font-weight: 800;
    margin: 12px 0 8px;
}

.blog-empty p {
    color: #4d6670;
    margin: 0;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 24px;
    color: #0f766e;
    font-weight: 800;
}

.blog-author-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #30505a;
    font-size: 16px;
    font-weight: 800;
    margin: -4px 0 18px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    align-items: start;
}

.blog-article,
.blog-sidebar__panel {
    border: 1px solid #d9efea;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(27, 70, 73, 0.08);
}

.blog-article {
    overflow: hidden;
}

.blog-article__banner {
    display: block;
    aspect-ratio: 16 / 8;
    background: #eaf5f2;
}

.blog-article__content {
    padding: 34px;
}

.blog-article__content h1,
.blog-article__content h2,
.blog-article__content h3,
.blog-article__content h4 {
    color: #17323a;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.blog-article__content p,
.blog-article__content li {
    color: #344f58;
    font-size: 17px;
    line-height: 1.85;
}

.blog-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-faq-section {
    padding: 4px 34px 38px;
}

.blog-faq-heading {
    margin-bottom: 18px;
}

.blog-faq-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    color: #0f766e;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.blog-faq-heading h2 {
    color: #17323a;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 8px;
}

.blog-faq-heading p {
    color: #526c74;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.blog-faq-item {
    overflow: hidden;
    border: 1px solid #d8eeea;
    border-radius: 8px;
    background: #fbfefe;
    box-shadow: 0 12px 30px rgba(27, 70, 73, 0.06);
}

.blog-faq-item + .blog-faq-item {
    margin-top: 12px;
}

.blog-faq-toggle {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 36px;
    width: 100%;
    align-items: center;
    gap: 14px;
    border: 0;
    background: #ffffff;
    color: #17323a;
    padding: 18px;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-faq-toggle:hover {
    background: #f3fbf9;
}

.blog-faq-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e8fbf8;
    color: #0f766e;
    font-size: 13px;
    font-weight: 900;
}

.blog-faq-title {
    min-width: 0;
    color: #17323a;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.45;
}

.blog-faq-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff4e5;
    color: #f28c13;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.blog-faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #344f58;
    font-size: 16px;
    line-height: 1.75;
    transition: max-height 0.25s ease;
}

.blog-faq-answer__inner {
    padding: 0 22px 20px 78px;
}

.blog-faq-answer p {
    margin: 0;
}

.blog-faq-item.is-open .blog-faq-toggle {
    background: #f3fbf9;
}

.blog-faq-item.is-open .blog-faq-icon {
    background: #f28c13;
    color: #ffffff;
    transform: rotate(45deg);
}

.blog-sidebar {
    position: sticky;
    top: 24px;
}

.blog-sidebar__panel {
    padding: 22px;
}

.blog-sidebar__panel h2 {
    color: #17323a;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 16px;
}

.blog-mini-card {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #e3f2ef;
}

.blog-mini-card img {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    background: #eaf5f2;
}

.blog-mini-card span {
    color: #17323a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.blog-mini-card small {
    display: block;
    color: #0f766e;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.blog-sidebar__empty {
    color: #4d6670;
    margin: 0;
}

@media (max-width: 991px) {
    .blog-grid,
    .blog-detail-layout {
        grid-template-columns: 1fr 1fr;
    }

    .blog-sidebar {
        position: static;
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .blog-hero,
    .blog-detail-hero {
        padding: 46px 0 38px;
    }

    .blog-listing,
    .blog-detail-section {
        padding: 32px 0 48px;
    }

    .blog-grid,
    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card__body,
    .blog-article__content,
    .blog-faq-section,
    .blog-sidebar__panel {
        padding: 20px;
    }

    .blog-hero p,
    .blog-detail-hero p {
        font-size: 16px;
    }

    .blog-card h2 {
        font-size: 20px;
    }

    .blog-faq-section {
        padding-top: 0;
    }

    .blog-faq-heading h2 {
        font-size: 24px;
    }

    .blog-faq-toggle {
        grid-template-columns: 38px minmax(0, 1fr) 32px;
        gap: 10px;
        padding: 14px;
    }

    .blog-faq-number {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .blog-faq-title {
        font-size: 15px;
        line-height: 1.45;
    }

    .blog-faq-icon {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .blog-faq-answer__inner {
        padding: 0 14px 16px 62px;
    }

    .blog-faq-answer {
        font-size: 15px;
        line-height: 1.65;
    }

    .blog-article__banner {
        aspect-ratio: 16 / 11;
    }
}
