/* Article Details Page Styles */
html {
    scroll-padding-top: 110px;
}

/* Article Hero Section */
.article-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: var(--white);
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.article-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.1);
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(6, 29, 53, 0.85) 0%,
            rgba(13, 56, 90, 0.75) 50%,
            rgba(6, 29, 53, 0.9) 100%);
    z-index: 2;
}

.article-hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 0 60px;
    max-width: 800px;
}

.article-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-family: var(--ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.article-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-hero .breadcrumb a:hover {
    color: var(--gold);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.article-category {
    background: var(--gold);
    color: var(--navy);
    padding: 8px 14px;
    font-family: var(--ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    display: inline-block;
}

.article-date,
.article-read-time {
    font-family: var(--ui);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.article-title {
    font-family: var(--serif);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.article-excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px;
    max-width: 600px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.author-title {
    font-family: var(--ui);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Article Content Layout */
.article-content-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fffaf2 0%, #fff 50%, #fbf6ec 100%);
    border-bottom: 1px solid rgba(201, 155, 61, 0.1);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

.article-main {
    max-width: none;
}

.article-content {
    font-family: var(--ui);
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.content-block {
    margin-bottom: 40px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.lead-paragraph {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.article-content h2 {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 48px 0 24px;
}

.article-content h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
    margin: 36px 0 20px;
}

.article-content h4 {
    font-family: var(--ui);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 28px 0 16px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 17px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content strong {
    font-weight: 600;
    color: var(--navy);
}

/* Content Images */
.content-image {
    /* margin: 40px 0; */
    text-align: center;
}

.content-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.image-caption {
    font-size: 14px;
    font-style: italic;
    color: #666;
    margin-top: 12px;
    text-align: center;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(227, 189, 104, 0.15), rgba(201, 155, 61, 0.08));
    border-left: 4px solid var(--gold);
    padding: 28px;
    margin: 32px 0;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(201, 155, 61, 0.08);
}

.highlight-box h3 {
    font-family: var(--ui);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 16px;
}

.highlight-box ul {
    margin: 0;
}

.info-box {
    background: linear-gradient(135deg, rgba(6, 29, 53, 0.04), rgba(13, 56, 90, 0.02));
    border: 2px solid rgba(201, 155, 61, 0.3);
    padding: 11px;
    margin: 24px 0;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-box h4 {
    font-family: var(--ui);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px;
}

.info-box p {
    margin: 0;
    font-size: 15px;
}

/* Season Grid */
.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.season-card {
    background: var(--white);
    border: 2px solid #e5e5e5;
    padding: 28px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.season-card:hover {
    border-color: rgba(201, 155, 61, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.season-card.best-season {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(227, 189, 104, 0.08), rgba(201, 155, 61, 0.04));
    box-shadow: 0 8px 24px rgba(201, 155, 61, 0.15);
}

.season-card.good-season {
    border-color: #4CAF50;
}

.season-card.avoid-season {
    border-color: #f44336;
}

.season-card h4 {
    font-family: var(--ui);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px;
}

.season-temp {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.season-card ul {
    margin: 0;
    padding-left: 20px;
}

.season-card li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* Cruise Types */
.cruise-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.cruise-type {
    background: var(--white);
    border: 1px solid #e5e5e5;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cruise-type:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 155, 61, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.cruise-type h4 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 8px;
}

.price-range {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.cruise-type ul {
    margin: 0;
    padding-left: 20px;
}

.cruise-type li {
    font-size: 15px;
    margin-bottom: 8px;
}

/* Packing Categories */
.packing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.packing-category {
    background: linear-gradient(135deg, rgba(6, 29, 53, 0.03), rgba(13, 56, 90, 0.01));
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 29, 53, 0.15);
    transition: all 0.3s ease;
}

.packing-category h4 {
    font-family: var(--ui);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 16px;
}

.packing-category ul {
    margin: 0;
    padding-left: 20px;
}

.packing-category li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* Sidebar Styles */
.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid #e5e5e5;
    padding: 28px;
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.sidebar-widget h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

/* Table of Contents */
.toc-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-nav li {
    margin-bottom: 8px;
}

.toc-nav a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    border-left: 3px solid transparent;
    padding-left: 12px;
    transition: all 0.3s ease;
}

.toc-nav a:hover {
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 16px;
}

/* Quick Facts */
.quick-facts {
    background: linear-gradient(135deg, rgba(6, 29, 53, 0.04), rgba(201, 155, 61, 0.02));
    border: 1px solid rgba(201, 155, 61, 0.2);
}

.fact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(6, 29, 53, 0.1);
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.fact-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

/* Related Tours */
.tour-card {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.tour-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tour-card img {
    /* width: 80px;
    height: 60px; */
    object-fit: cover;
    border-radius: var(--radius-md);
}

.tour-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 4px;
}

.tour-info p {
    font-size: 12px;
    color: #666;
    margin: 0 0 8px;
    line-height: 1.4;
}

.tour-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--navy) 0%, rgba(13, 56, 90, 0.95) 100%);
    color: var(--white);
    border: 2px solid rgba(201, 155, 61, 0.3);
    box-shadow: 0 8px 32px rgba(6, 29, 53, 0.2);
}

.newsletter-widget h3 {
    color: var(--white);
    border-bottom-color: var(--gold);
}

.newsletter-widget p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    border-radius: var(--radius-md);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
}

/* Booking Section */
.article-booking-section {
    background: linear-gradient(135deg, rgba(6, 29, 53, 0.05), rgba(13, 56, 90, 0.02));
    padding: 80px 0;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.booking-text h2 {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 20px;
}

.booking-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #555;
}

.feature i {
    color: var(--gold);
    font-size: 16px;
}

.cta-card {
    /* background: #082844; */
    padding: 40px;
    /* border-radius: 0; */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-card h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 12px;
}

.cta-card p {
    font-size: 16px;
    /* color: #666; */
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cta-buttons .btn {
    padding: 14px 24px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.contact-info i {
    color: var(--gold);
    margin-right: 8px;
}

/* Article Footer */
.article-footer-section {
    background: rgba(6, 29, 53, 0.02);
    padding: 40px 0;
}

.article-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.article-tags h4,
.article-share h4 {
    font-family: var(--ui);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(6, 29, 53, 0.1);
    color: var(--navy);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--gold);
    color: var(--white);
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: #666;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Related Articles */
.related-articles-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin: 0;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.related-article {
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.related-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.related-article .article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-article .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article:hover .article-image img {
    transform: scale(1.05);
}

.related-article .article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.related-article .article-info {
    padding: 24px;
}

.related-article h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px;
}

/* Simplified Article Layout */
.article-main {
    max-width: 955px;
    padding: 26px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 314px;
    gap: 9px;
    align-items: start;
}

@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* CTA Section */
.article-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(6, 29, 53, 0.03), rgba(201, 155, 61, 0.05));
    border-top: 1px solid rgba(201, 155, 61, 0.2);
    border-bottom: 1px solid rgba(201, 155, 61, 0.2);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 16px;
}

.cta-content>p {
    font-size: 18px;
    color: #555;
    margin: 0 0 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
}

.cta-contact {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact span {
    font-size: 16px;
    color: var(--navy);
    font-weight: 500;
}

.cta-contact i {
    color: var(--gold);
    margin-right: 8px;
}

/* Season Grid Simplified */
.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.season-card {
    background: var(--white);
    border: 2px solid #e5e5e5;
    padding: 28px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.season-card:hover {
    border-color: rgba(201, 155, 61, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.season-card h4 {
    font-family: var(--ui);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px;
}

.season-temp {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
}

.season-card.best-season {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(227, 189, 104, 0.08), rgba(201, 155, 61, 0.04));
    box-shadow: 0 8px 24px rgba(201, 155, 61, 0.15);
}

.season-card.good-season {
    border-color: #4CAF50;
}

.season-card ul {
    margin: 0;
    padding-left: 20px;
}

.season-card li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

.related-article h3 a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-article h3 a:hover {
    color: var(--gold);
}

.related-article p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 16px;
}

.related-article .article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .article-hero {
        min-height: 60vh;
    }

    .article-hero-content {
        padding: 60px 0 40px;
    }

    .article-title {
        font-size: clamp(28px, 8vw, 48px);
    }

    .article-excerpt {
        font-size: 16px;
    }

    .article-content-section {
        padding: 40px 0;
    }

    .article-content h2 {
        font-size: 28px;
        margin: 32px 0 20px;
    }

    .article-content h3 {
        font-size: 21px;
        margin: 0 0 12px;
    }

    .season-grid,
    .cruise-types,
    .packing-categories {
        grid-template-columns: 1fr;
    }

    .booking-features {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .article-footer {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .share-buttons {
        justify-content: center;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-hero-content {
        padding: 40px 0 30px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .cta-card {
        padding: 24px;
    }

    .tags-list {
        justify-content: center;
    }
}


.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.toc-box {
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.toc-mobile {
    display: none;
}

.toc-box h3 {
    font-family: var(--ui);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(201, 155, 61, 0.2);
}

.toc-box ol {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.toc-box li {
    margin-bottom: 12px;
}

.toc-box a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.toc-box a:hover {
    color: var(--gold);
    background: rgba(201, 155, 61, 0.08);
    padding-left: 16px;
}

/* Related Articles Grid */
.related-articles {
    margin-top: 50px;
    margin-bottom: 50px;
    /* border-top: 2px solid rgba(201, 155, 61, 0.2); */
}

.related-articles h2 {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 48px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.related-card {
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 155, 61, 0.3);
}

.related-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #ececec);
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.05);
}

.related-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    padding: 6px 12px;
    font-family: var(--ui);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.related-card-content {
    padding: 24px;
}

.related-card-content h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 12px;
    line-height: 1.3;
}

.related-card-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}


.section-head.align-left {
    margin-left: 0;
    text-align: center;
    justify-content: center;
}

.editorial-blog-grid {
    grid-template-columns: 1.12fr 1.12fr 1.12fr;
}

.editorial-blog__grid {
    grid-template-columns: 1.12fr 1.12fr;
}

#faq-title {
    text-align: left;
}

.blog-feature-card img {
    height: 285px;
}

.blog-feature-card a {
    display: grid;
    height: auto;
    grid-template-rows: 1fr auto;
}


.blog-feature-card h3 {
    font-size: 30px;
    height: 69px;
}

.blog-mini-card img {
    height: 76px;
    width: 100px;
}
.blog-mini-card a {
    grid-template-columns: 97px 1fr;
    align-items: start;
}
.blog-side--list {
    grid-template-rows: auto auto 1fr;
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: var(--radius-lg);
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-top: 6px;
    gap: 4px;
}
.blog-side-list h2{
    text-align: center;
    margin-top: 11px;
    margin-bottom: 13px;
}

.blog-mini-card h3 {
    font-size: 19px;
}


.toc-mobile{
    display: none;
}

@media (max-width: 1024px) {
    .editorial-blog-grid {
        grid-template-columns: auto;
    }

    .article-layout {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .toc-desktop {
        display: none;
    }

    .toc-mobile {
        display: block;
        order: 1;
    }

    .article-main {
        padding: 10px;
        order: 2;
    }

    .article-sidebar {
        position: static;
        top: auto;
        order: 3;
    }

    .season-card {
        padding: 15px;
    }

    .highlight-box {
        padding: 9px;
    }
    .blog-feature-card h3 {
    font-size: 26px;
    height: 89px;
}

}
