/* ==========================================================================
   Motherland Developers - Blog & Editorial Stylesheet
   Matches site branding: Forest Green, Gold Accent, Lufga & Inter Typography
   ========================================================================== */

:root {
    --blog-green-deep: #07231B;
    --blog-green-main: #0A4833;
    --blog-green-light: #146147;
    --blog-green-soft: #E9F1EC;
    --blog-gold: #C9A55A;
    --blog-gold-light: #F4EEDF;
    --blog-ink: #1B2E28;
    --blog-muted: #5A7067;
    --blog-border: rgba(10, 72, 51, 0.12);
    --blog-bg-cream: #FAF8F4;
    --blog-card-shadow: 0 10px 30px rgba(7, 35, 27, 0.06);
    --blog-card-hover: 0 20px 40px rgba(7, 35, 27, 0.12);
}

/* --------------------------------------------------------------------------
   General Blog Page Structure
   -------------------------------------------------------------------------- */
.blog-page {
    background-color: var(--blog-bg-cream);
    color: var(--blog-ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
}

.blog-page h1:not(.main-footer *),
.blog-page h2:not(.main-footer *),
.blog-page h3:not(.main-footer *),
.blog-page h4:not(.main-footer *) {
    font-family: 'Lufga', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--blog-green-deep);
    font-weight: 600;
}

.blog-page .main-footer .footer-office h4 {
    color: #ebebeb;
}

/* --------------------------------------------------------------------------
   Blog Hero Header (Listing Page)
   -------------------------------------------------------------------------- */
.blog-hero {
    position: relative;
    background: linear-gradient(135deg, #07231B 0%, #0A4833 60%, #146147 100%);
    color: #ffffff;
    padding: 7rem 0 4.5rem;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 165, 90, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(201, 165, 90, 0.2);
    border: 1px solid rgba(201, 165, 90, 0.4);
    color: var(--blog-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.blog-hero h1 {
    color: #dab76c;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Category Filter Tabs
   -------------------------------------------------------------------------- */
.blog-categories-bar {
    padding: 1.5rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--blog-border);
    position: sticky;
    top: 70px;
    z-index: 40;
}

.blog-cat-list {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.blog-cat-list::-webkit-scrollbar {
    display: none;
}

.blog-cat-btn {
    display: inline-block;
    padding: 0.5rem 1.15rem;
    border-radius: 50px;
    background: var(--blog-bg-cream);
    color: var(--blog-ink);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid var(--blog-border);
    transition: all 0.25s ease;
}

.blog-cat-btn:hover,
.blog-cat-btn.active {
    background: var(--blog-green-main);
    color: #ffffff;
    border-color: var(--blog-green-main);
}

/* --------------------------------------------------------------------------
   Article Cards Grid
   -------------------------------------------------------------------------- */
.blog-grid-section {
    padding: 4rem 0 6rem;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--blog-border);
    box-shadow: var(--blog-card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--blog-card-hover);
    border-color: rgba(201, 165, 90, 0.4);
}

.blog-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #07231B;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    background: rgba(7, 35, 27, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--blog-muted);
    margin-bottom: 0.75rem;
}

.blog-card-meta .dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blog-gold);
}

.blog-card-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.85rem;
}

.blog-card-title a {
    color: var(--blog-green-deep);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--blog-green-light);
}

.blog-card-excerpt {
    color: #4A5F58;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(10, 72, 51, 0.08);
}

.blog-card-link {
    color: var(--blog-green-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease, color 0.2s ease;
}

.blog-card-link:hover {
    color: var(--blog-gold);
    gap: 0.65rem;
}

/* --------------------------------------------------------------------------
   Single Article Detail Page
   -------------------------------------------------------------------------- */
.article-header .container,
.article-featured-banner .container,
.article-layout-container {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.article-header {
    background: linear-gradient(180deg, #051B15 0%, #0A3C2B 100%);
    color: #ffffff;
    padding: 6.5rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 165, 90, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.article-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.article-breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-breadcrumbs a:hover {
    color: var(--blog-gold);
}

.article-breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.article-breadcrumbs span:last-child {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.article-pill {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.article-title {
    color: #ffffff !important;
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.article-lead-excerpt {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.65;
    max-width: 820px;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.75rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta-item svg {
    color: var(--blog-gold);
    flex-shrink: 0;
}

/* Featured Image Banner */
.article-featured-banner {
    position: relative;
    margin-top: -3.5rem;
    margin-bottom: 3.5rem;
    z-index: 10;
}

.article-cover-wrap {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(7, 35, 27, 0.14);
    background: #000;
}

.article-cover-img {
    width: 100%;
    height: auto;
    max-height: 580px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* Article Content Body & Layout */
.article-layout-container {
    padding-bottom: 5rem;
}

.article-main-body {
    width: 100%;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #2D3748;
}

.article-content p {
    margin-bottom: 1.6rem;
}

.article-content h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 700;
    color: var(--blog-green-deep);
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--blog-border);
    position: relative;
    line-height: 1.3;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--blog-gold);
}

.article-content h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 700;
    margin-top: 2.2rem;
    margin-bottom: 0.9rem;
    color: var(--blog-green-main);
    line-height: 1.35;
}

.article-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.8rem;
}

.article-content ul li {
    position: relative;
    padding-left: 1.85rem;
    margin-bottom: 0.65rem;
    line-height: 1.65;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300845F'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E") no-repeat center center;
    background-size: contain;
}

.article-content ol {
    margin-bottom: 1.8rem;
    padding-left: 1.75rem;
}

.article-content ol li {
    margin-bottom: 0.65rem;
    line-height: 1.65;
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.75rem;
    background: #ffffff;
    border-left: 4px solid var(--blog-gold);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--blog-green-deep);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.article-content a {
    color: var(--blog-green-main);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.article-content a:hover {
    color: var(--blog-gold);
}

.article-content strong {
    color: var(--blog-green-deep);
    font-weight: 600;
}

/* Override embedded .mld-guide container styles */
.article-content .mld-guide {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.article-content .mld-guide > .mld-skip,
.article-content .mld-guide > .mld-breadcrumbs,
.article-content .mld-guide > .mld-eyebrow,
.article-content .mld-guide > .mld-dek,
.article-content .mld-guide > .mld-meta {
    display: none !important;
}

/* TOC (In this guide) */
.article-content .mld-toc {
    margin: 2.5rem 0;
    padding: 2rem 2.25rem;
    background: #FAF8F4;
    border: 1px solid #ECE7DD;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.article-content .mld-toc h2 {
    margin: 0 0 1.25rem 0;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 0;
}

.article-content .mld-toc h2::after {
    display: none;
}

.article-content .mld-toc h2::before {
    content: 'In this guide';
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--blog-green-main);
    display: inline-block;
}

.article-content .mld-toc ol,
.article-content .mld-toc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 2rem;
}

@media (max-width: 767px) {
    .article-content .mld-toc ol,
    .article-content .mld-toc ul {
        grid-template-columns: 1fr;
    }
}

.article-content .mld-toc li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.45;
    font-weight: 500;
}

.article-content .mld-toc li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300845F'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E") no-repeat center center;
    background-size: contain;
}

.article-content .mld-toc li a {
    color: #1B2E28;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-content .mld-toc li a:hover {
    color: var(--blog-green-main);
    text-decoration: underline;
}

/* Embedded Notes & Callouts */
.article-content .mld-note {
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    background: #F0FDF4;
    border-left: 4px solid #16A34A;
    border-radius: 0 12px 12px 0;
    color: #166534;
}

.article-content .mld-warning {
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    background: #FFFBEB;
    border-left: 4px solid #D97706;
    border-radius: 0 12px 12px 0;
    color: #92400E;
}

.article-content .mld-disclaimer {
    margin: 2.5rem 0;
    padding: 1.75rem;
    background: #F8F9FA;
    border-radius: 12px;
    border-left: 4px solid #CBD5E1;
    font-size: 0.92rem;
    color: #64748B;
}

.article-content .mld-disclaimer h2 {
    font-size: 1.1rem;
    color: #475569;
    border-bottom: none;
    margin-top: 0;
    padding-bottom: 0;
}

.article-content .mld-disclaimer h2::after {
    display: none;
}

.article-content .mld-cta {
    margin: 3.5rem 0;
    padding: 2.5rem;
    background: #FAF8F4;
    border: 1px solid rgba(10, 72, 51, 0.12);
    border-radius: 16px;
}

.article-content .mld-cta h2 {
    color: var(--blog-green-deep);
    border-bottom: none;
    margin-top: 0;
    padding-bottom: 0;
}

.article-content .mld-cta h2::after {
    display: none;
}

.article-content .mld-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.article-content .mld-cta-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.article-content .mld-cta-actions a:first-child {
    background: var(--blog-green-main);
    color: #ffffff;
    border: 1px solid var(--blog-green-main);
}

.article-content .mld-cta-actions a:first-child:hover {
    background: var(--blog-green-deep);
    color: #ffffff;
}

.article-content .mld-cta-actions a:last-child {
    background: transparent;
    color: var(--blog-green-main);
    border: 1px solid var(--blog-green-main);
}

.article-content .mld-cta-actions a:last-child:hover {
    background: var(--blog-green-soft);
    color: var(--blog-green-main);
}

/* Sidebar Styling */
.article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-cta-card {
    background: #F4F7F5;
    border: 1px solid rgba(10, 72, 51, 0.12);
    border-radius: 16px;
    padding: 1.85rem;
    box-shadow: 0 4px 20px rgba(7, 35, 27, 0.04);
}

.sidebar-cta-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--blog-green-deep);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.sidebar-cta-desc {
    font-size: 0.95rem;
    color: #5A7067;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: var(--blog-green-main);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sidebar-cta-btn:hover {
    background: var(--blog-green-deep);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 72, 51, 0.2);
}

.sidebar-related-card {
    background: #ffffff;
    border: 1px solid var(--blog-border);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--blog-card-shadow);
}

.sidebar-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blog-green-deep);
    margin-bottom: 1.25rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid rgba(10, 72, 51, 0.08);
}

.sidebar-related-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-related-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.sidebar-related-item:hover {
    transform: translateX(3px);
}

.sidebar-related-thumb {
    width: 82px;
    height: 62px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--blog-bg-cream);
}

.sidebar-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-related-item:hover .sidebar-related-thumb img {
    transform: scale(1.06);
}

.sidebar-related-info {
    flex: 1;
    min-width: 0;
}

.sidebar-related-headline {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
    color: #1B2E28;
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.sidebar-related-item:hover .sidebar-related-headline {
    color: var(--blog-green-main);
}

.sidebar-related-date {
    display: block;
    font-size: 0.8rem;
    color: #718096;
}

/* Article Share & Footer Box */
.article-footer-box {
    margin-top: 3.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--blog-border);
    box-shadow: var(--blog-card-shadow);
}

.article-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.article-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--blog-green-soft);
    color: var(--blog-green-main);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-share-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(10, 72, 51, 0.08);
}

.article-share-btns {
    display: flex;
    gap: 0.6rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blog-bg-cream);
    color: var(--blog-green-main);
    border: 1px solid var(--blog-border);
    transition: all 0.2s ease;
    text-decoration: none;
}

.share-btn:hover {
    background: var(--blog-green-main);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Lead Magnet CTA Card inside/below Article */
.blog-cta-banner {
    margin: 4rem auto;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #07231B 0%, #0A4833 100%);
    border-radius: 20px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 25px 60px rgba(7, 35, 27, 0.2);
    position: relative;
    overflow: hidden;
}

.blog-cta-banner::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 165, 90, 0.25) 0%, transparent 70%);
}

/* The global .blog-page h3:not(.main-footer *) rule near the top of this file
   carries a class inside :not(), so it outranks a plain .blog-cta-banner h3 and
   paints this heading dark green on the dark banner. Match that specificity so
   the gold wins on source order. */
.blog-cta-banner h3,
.blog-page .blog-cta-banner h3 {
    color: #dab76c;
    font-size: 1.85rem;
    margin-bottom: 0.85rem;
}

.blog-cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin: 0 auto 1.75rem;
    font-size: 1.05rem;
}

.blog-cta-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--blog-gold);
    color: #07231B;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-cta-btn:hover {
    background: #ffffff;
    color: var(--blog-green-main);
    transform: translateY(-2px);
}

/* Related Posts Section */
.related-posts-section {
    padding: 4rem 0 6rem;
    background: #ffffff;
    border-top: 1px solid var(--blog-border);
}

.related-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .blog-hero {
        padding: 5.5rem 0 3.5rem;
    }
    .article-header {
        padding: 5rem 0 3rem;
    }
    .article-featured-banner {
        margin-top: -2.5rem;
        margin-bottom: 2.5rem;
    }
    .article-cover-wrap {
        margin-top: -2rem;
    }
    .article-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .blog-card-body {
        padding: 1.25rem;
    }
    .article-content {
        font-size: 1.02rem;
        line-height: 1.75;
    }
    .blog-cta-banner {
        padding: 2.2rem 1.5rem;
    }
}
