/* ==========================================================================
   Blog Article Shared Styles
   Unified design for all SEDA24 blog articles
   Light background, Navy headings, Gold accents
   ========================================================================== */

.blog-article,
.blog-back,
.blog-related {
    background-color: #FFFFFF;
}

/* Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #1E537C 0%, #2a6bb5 100%);
    padding: 80px 0 60px;
    color: white;
}
.blog-hero .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.blog-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Breadcrumb */
.blog-breadcrumb {
    margin-bottom: 30px;
    font-size: 0.95rem;
}
.blog-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
.blog-breadcrumb a:hover {
    color: #F9B233;
}
.blog-breadcrumb .separator {
    margin: 0 8px;
    color: rgba(255,255,255,0.5);
}
.blog-breadcrumb .current {
    color: #F9B233;
    font-weight: 600;
}

/* Blog Meta */
.blog-meta {
    font-size: 0.95rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}
.blog-meta i {
    margin-right: 5px;
}

/* ==========================================================================
   Article Body - Light Background
   ========================================================================== */
.blog-article {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    background-color: #FFFFFF;
    color: #333333;
}
.blog-article h2 {
    color: #1E537C;
    font-size: 1.85rem;
    font-weight: 700;
    margin: 56px 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #F9B233;
    line-height: 1.3;
}
.blog-article h3 {
    color: #1E537C;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 44px 0 16px;
    line-height: 1.35;
}
.blog-article p {
    color: #333333;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.blog-article ul,
.blog-article ol {
    color: #333333;
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 0 0 28px 24px;
    padding: 0;
}
.blog-article li {
    margin-bottom: 12px;
}
.blog-article a {
    color: #1E537C;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #F9B233;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}
.blog-article a:hover {
    color: #F9B233;
}
.blog-article strong {
    color: #1E537C;
}

/* ==========================================================================
   Blog Images
   ========================================================================== */
.blog-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.blog-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 32px auto;
    border-radius: 12px;
}
.blog-image figcaption {
    padding: 12px 20px;
    background: #f8f9fa;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    border-top: 1px solid #e5e7eb;
}

/* Full-width image that breaks out of article max-width */
.blog-image--wide {
    margin-left: -40px;
    margin-right: -40px;
    border-radius: 16px;
}

/* ==========================================================================
   Quote Block
   ========================================================================== */
.blog-quote {
    margin: 40px 0;
    padding: 32px 36px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    border-left: 4px solid #F9B233;
    border-radius: 0 12px 12px 0;
    position: relative;
}
.blog-quote::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 3rem;
    color: #F9B233;
    opacity: 0.4;
    line-height: 1;
    font-family: Georgia, serif;
}
.blog-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: #1E537C;
    line-height: 1.7;
    margin: 0;
    padding-left: 24px;
}
.blog-quote cite {
    display: block;
    margin-top: 12px;
    padding-left: 24px;
    font-size: 0.95rem;
    font-style: normal;
    color: #6b7280;
    font-weight: 600;
}

/* ==========================================================================
   Two-Column Layout
   ========================================================================== */
.blog-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 36px 0;
    align-items: start;
}
.blog-two-col > div {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #e5e7eb;
}
.blog-two-col h4 {
    color: #1E537C;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-two-col h4 i {
    color: #F9B233;
}
.blog-two-col p {
    font-size: 1rem;
    margin: 0;
    color: #333333;
    line-height: 1.7;
}
.blog-two-col ul {
    margin: 0;
    padding: 0 0 0 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
}
.blog-two-col li {
    margin-bottom: 6px;
}

/* ==========================================================================
   Highlight Box (key stat or number)
   ========================================================================== */
.blog-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 36px 0;
    padding: 28px 32px;
    background: linear-gradient(135deg, #1E537C 0%, #2a6bb5 100%);
    border-radius: 12px;
    color: white;
}
.blog-highlight-icon {
    font-size: 2.5rem;
    color: #F9B233;
    flex-shrink: 0;
}
.blog-highlight p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: white;
}
.blog-highlight strong {
    color: #F9B233;
    font-size: 1.15rem;
}

/* ==========================================================================
   Checklist Box
   ========================================================================== */
.blog-checklist {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 28px 0 36px;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #F9B233;
}
.blog-checklist h4 {
    color: #1E537C;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-checklist h4 i {
    color: #F9B233;
    font-size: 1.2rem;
}
.blog-checklist ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1.05rem;
}
.blog-checklist ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #333333;
    line-height: 1.7;
}
.blog-checklist ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 0.9rem;
}

/* ==========================================================================
   Tip Box
   ========================================================================== */
.blog-tip-box {
    background: #f0f7fc;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 28px 0 36px;
    border: 1px solid #d1e3f0;
    border-left: 4px solid #1E537C;
}
.blog-tip-label {
    font-weight: 700;
    color: #1E537C;
    font-size: 1.05rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-tip-label i {
    color: #F9B233;
}
.blog-tip-box p {
    margin: 0;
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.7;
}
.blog-tip-box p + p {
    margin-top: 8px;
}

/* ==========================================================================
   Warning Box
   ========================================================================== */
.blog-warning-box {
    background: #fffbeb;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 28px 0 36px;
    border: 1px solid #fde68a;
    border-left: 4px solid #F9B233;
}
.blog-warning-label {
    font-weight: 700;
    color: #92400e;
    font-size: 1.05rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-warning-label i {
    color: #F9B233;
}
.blog-warning-box p {
    margin: 0;
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.7;
}

/* ==========================================================================
   Info Box (neutral)
   ========================================================================== */
.blog-info-box {
    background: #f0f7fc;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 28px 0 36px;
    border: 1px solid #d1e3f0;
    border-left: 4px solid #1E537C;
}
.blog-info-box p {
    margin: 0;
    font-size: 1.05rem;
    color: #1E537C;
    font-weight: 500;
    line-height: 1.7;
}

/* ==========================================================================
   Price Table
   ========================================================================== */
.blog-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    font-size: 1.05rem;
}
.blog-price-table thead th {
    background: #1E537C;
    color: white;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}
.blog-price-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid #e8ecf0;
    color: #333333;
}
.blog-price-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}
.blog-price-table tbody tr:last-child td {
    border-bottom: none;
}
.blog-price-table tbody tr:hover {
    background: #f0f6fb;
}

/* ==========================================================================
   CTA Box
   ========================================================================== */
.blog-cta {
    background: linear-gradient(135deg, #1E537C 0%, #2a6bb5 100%);
    border-radius: 20px;
    padding: 56px 48px;
    text-align: center;
    color: white;
    margin: 64px 0 40px;
    position: relative;
    overflow: hidden;
}
.blog-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249,178,51,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.blog-cta::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(249,178,51,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.blog-cta h2 {
    color: #FFFFFF;
    font-size: 2rem;
    margin: 0 0 16px;
    border: none;
    padding: 0;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}
.blog-cta p {
    color: #FFFFFF;
    font-size: 1.15rem;
    margin: 0 auto 32px;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    max-width: 540px;
    position: relative;
    z-index: 1;
}
.blog-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.blog-cta-buttons a {
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-cta-primary {
    background: #F9B233;
    color: #1E537C;
    box-shadow: 0 4px 15px rgba(249,178,51,0.4);
}
.btn-cta-primary:hover {
    background: #e6a42e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249,178,51,0.5);
}
.btn-cta-secondary {
    border: 2px solid rgba(255,255,255,0.6);
    color: white;
    background: rgba(255,255,255,0.1);
}
.btn-cta-secondary:hover {
    background: white;
    color: #1E537C;
    border-color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
   Back Link
   ========================================================================== */
.blog-back {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 40px;
    background-color: #FFFFFF;
}
.blog-back a {
    color: #1E537C;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 12px 0;
}
.blog-back a:hover {
    color: #F9B233;
}

/* ==========================================================================
   Related Articles
   ========================================================================== */
.blog-related {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 60px;
    background-color: #FFFFFF;
}
.blog-related h3 {
    color: #1E537C;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 20px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}
.blog-related a {
    display: block;
    color: #1E537C;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}
.blog-related a:hover {
    background: #f0f7fc;
    border-color: #F9B233;
    color: #F9B233;
    transform: translateX(4px);
}
.blog-related a i {
    margin-right: 10px;
    color: #F9B233;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 0 40px;
    }
    .blog-hero h1 {
        font-size: 1.75rem;
    }
    .blog-article {
        padding: 40px 20px 60px;
    }
    .blog-article h2 {
        font-size: 1.5rem;
        margin-top: 40px;
    }
    .blog-article h3 {
        font-size: 1.2rem;
        margin-top: 32px;
    }
    .blog-article p {
        font-size: 1.05rem;
    }
    .blog-article ul,
    .blog-article ol {
        font-size: 1.05rem;
    }
    .blog-checklist,
    .blog-tip-box,
    .blog-warning-box,
    .blog-info-box {
        padding: 20px 22px;
    }
    .blog-cta {
        padding: 40px 24px;
        margin: 48px 0 32px;
    }
    .blog-cta h2 {
        font-size: 1.5rem;
    }
    .blog-cta p {
        font-size: 1.05rem;
    }
    .blog-price-table thead th,
    .blog-price-table tbody td {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    .blog-related a {
        padding: 12px 14px;
    }
    .blog-two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-image--wide {
        margin-left: -20px;
        margin-right: -20px;
    }
    .blog-quote {
        padding: 24px 20px;
    }
    .blog-highlight {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
}
