/* BLOG SINGLE PAGE STYLES - DOCUMENTATION STYLE */
/* Place this in: wp-content/themes/debmedia/css/single-post-styles.css */

/* ========== VARIABLES ========== */
:root {
    --primary-blue: #0A1B4D;
    --gold-accent: #D4AF37;
    --light-bg: #F8F9FA;
    --white: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #5A6C7D;
    --text-light: #8B98AD;
    --border-color: #E8EAF0;
    --code-bg: #2d2d2d;
    --info-blue: #3498db;
    --warning-yellow: #f39c12;
    --success-green: #27ae60;
    --error-red: #e74c3c;
}

/* ========== SECTION 1: ARTICLE HERO ========== */
.article-hero {
    background: var(--light-bg);
    padding: 120px 40px 60px;
    border-bottom: 1px solid var(--border-color);
}

.article-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Breadcrumb */
.article-breadcrumb {
    font-size: 14px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.article-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: var(--gold-accent);
}

.article-breadcrumb .separator {
    margin: 0 10px;
    color: var(--border-color);
}

.article-breadcrumb .current {
    color: var(--text-light);
}

/* Category Badge */
.article-category-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.article-category-badge.ai-engineering {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.article-category-badge.saas-architecture {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.article-category-badge.cybersecurity {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.article-category-badge.automation {
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
}

.article-category-badge.web-development {
    background: rgba(52, 73, 94, 0.1);
    color: #34495e;
}

/* Title */
.article-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Summary */
.article-summary {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Author & Meta Bar */
.article-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 14px;
    color: var(--text-secondary);
}

.article-metadata {
    display: flex;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-secondary);
}

.meta-item .icon {
    opacity: 0.7;
}

/* Featured Image */
.article-featured-image {
    background: var(--white);
    padding: 40px 40px 0;
}

.featured-image-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== SECTION 2: CONTENT GRID (3 COLUMNS) ========== */
.blog-content-section {
    background: var(--white);
    padding: 60px 40px 100px;
}

.blog-layout-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr 320px;
    gap: 50px;
    align-items: start;
}

/* ========== LEFT SIDEBAR: TABLE OF CONTENTS ========== */
.toc-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
}

.toc-box {
    background: #ffffff;
    padding: 20px 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}


.toc-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 8px;
}

.toc-item-h3 {
    padding-left: 16px;
}

.toc-link {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
    border-left-color: var(--gold-accent);
}

.toc-link.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--text-primary);
    font-weight: 600;
    border-left-color: var(--gold-accent);
}

/* ========== CENTER: MAIN ARTICLE CONTENT ========== */
.article-content {
    max-width: 720px;
    margin: 0 auto;
}

/* Typography */
.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.article-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.article-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 12px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content a {
    color: var(--gold-accent);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.article-content a:hover {
    opacity: 0.8;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.article-content blockquote {
    border-left: 4px solid var(--gold-accent);
    padding-left: 24px;
    margin: 30px 0;
    font-size: 20px;
    font-style: italic;
    color: var(--text-secondary);
}

/* Code Blocks */
.article-content pre {
    background: var(--code-bg);
    color: #f8f8f2;
    padding: 24px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 30px 0;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.article-content code {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 15px;
}

.article-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

/* Highlight Boxes */
.article-content .info-box,
.article-content .warning-box,
.article-content .success-box {
    padding: 20px 24px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid;
}

.article-content .info-box {
    background: rgba(52, 152, 219, 0.1);
    border-left-color: var(--info-blue);
}

.article-content .warning-box {
    background: rgba(243, 156, 18, 0.1);
    border-left-color: var(--warning-yellow);
}

.article-content .success-box {
    background: rgba(39, 174, 96, 0.1);
    border-left-color: var(--success-green);
}

/* Tables */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 16px;
}

.article-content table th {
    background: var(--light-bg);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.article-content table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

/* Tags */
.article-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.tags-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 14px;
}

.tag-pill {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-pill:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--primary-blue);
}

/* Share Buttons */
.article-share {
    margin-top: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
}

.share-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-btn.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
    color: white;
}

.share-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.share-btn.copy-link:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--primary-blue);
}

/* Author Box Large */
.author-box-large {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: var(--light-bg);
    border-radius: 12px;
    margin-top: 50px;
}

.author-box-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box-content {
    flex: 1;
}

.author-box-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-box-role {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.author-box-bio {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--gold-accent);
}

/* ========== RIGHT SIDEBAR: CONVERSION WIDGETS ========== */
.right-sidebar {
    position: relative;
}

.sidebar-sticky-wrapper {
    position: sticky;
    top: 110px;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* Lead Magnet Widget */
.lead-magnet-widget {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #c49d2c 100%);
    border: none;
    color: var(--primary-blue);
    text-align: center;
}

.widget-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.lead-magnet-widget h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.lead-magnet-widget p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-widget {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-widget:hover {
    background: #162a4f;
    transform: translateY(-2px);
}

/* Author Widget */
.widget-author-content {
    text-align: center;
}

.widget-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.widget-author-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.widget-author-role {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.widget-author-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Popular Posts Widget */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.popular-post-item:hover {
    background: var(--light-bg);
}

.popular-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 5px;
}

.popular-post-date {
    font-size: 12px;
    color: var(--text-light);
}

/* Service CTA Widget */
.service-cta-widget {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
}

.service-cta-widget h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-cta-widget p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-widget-primary {
    background: var(--gold-accent);
    color: var(--primary-blue);
}

.btn-widget-primary:hover {
    background: #b8961f;
}

/* ========== RELATED ARTICLES ========== */
.related-articles-section {
    background: var(--light-bg);
    padding: 80px 40px;
}

.related-articles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 50px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.related-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.related-article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-article-card:hover .related-article-image img {
    transform: scale(1.05);
}

.related-article-content {
    padding: 25px;
}

.related-article-content h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.related-article-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-article-content h3 a:hover {
    color: var(--gold-accent);
}

.related-article-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.related-article-meta {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    gap: 8px;
}

/* ========== BOTTOM CTA ========== */
.article-bottom-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #162a4f 100%);
    padding: 80px 40px;
    text-align: center;
}

.article-bottom-cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.article-bottom-cta h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
}

.article-bottom-cta p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.bottom-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: var(--gold-accent);
    color: var(--primary-blue);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #b8961f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-accent);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--gold-accent);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--gold-accent);
    color: var(--primary-blue);
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .blog-layout-grid {
        grid-template-columns: 220px 1fr 280px;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .blog-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .toc-sidebar,
    .right-sidebar {
        display: none;
    }
    
    .article-content {
        max-width: 800px;
    }
    
    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-content-section,
.blog-layout-grid,
.toc-sidebar,
.right-sidebar {
    overflow: visible !important;
}

@media (max-width: 768px) {
    .article-hero {
        padding: 100px 20px 40px;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .article-summary {
        font-size: 17px;
    }
    
    .article-meta-bar {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .blog-content-section {
        padding: 40px 20px 80px;
    }
    
    .article-content {
        font-size: 17px;
    }
    
    .article-content h2 {
        font-size: 26px;
    }
    
    .article-content h3 {
        font-size: 22px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .author-box-large {
        flex-direction: column;
        text-align: center;
    }
    
    .author-box-avatar {
        margin: 0 auto;
    }
    
    .author-social-links {
        justify-content: center;
    }
    
    .related-articles-section {
        padding: 60px 20px;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-bottom-cta {
        padding: 60px 20px;
    }
    
    .article-bottom-cta h2 {
        font-size: 28px;
    }
    
    .bottom-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 26px;
    }
    
    .article-content {
        font-size: 16px;
    }
}

.blog-layout-grid {
    display: grid;
    grid-template-columns: 260px minmax(0,1fr) 320px;
    gap: 48px;
    align-items: start;
}
#tableOfContents ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#tableOfContents li {
    margin-bottom: 6px;
}

#tableOfContents a {
    display: block;
    padding: 6px 10px;
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    border-radius: 6px;
    line-height: 1.4;
}

#tableOfContents a:hover {
    background: #f1f5f9;
}

#tableOfContents a.active {
    background: #fff7cc;
    border: 1px solid #facc15;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .toc-sidebar {
        display: none;
    }

    .blog-layout-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   TOC – LARGE & PREMIUM STYLE
================================ */

.toc-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
}

/* Card */
.toc-sticky-wrapper,
.toc-box {
    background: #ffffff;
    padding: 24px 20px 22px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

/* Title */
.toc-title {
    font-size: 13px;
    letter-spacing: 1.2px;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 16px;
}

/* List */
#tableOfContents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Items */
#tableOfContents li {
    margin-bottom: 8px;
}

/* Main Links */
#tableOfContents a {
    display: block;
    padding: 10px 14px;
    font-size: 15px;          /* ⬅ BIGGER */
    line-height: 1.5;
    color: #1e293b;           /* darker */
    text-decoration: none;
    border-radius: 10px;
    border-left: 4px solid transparent;
    transition: all 0.18s ease;
    font-weight: 500;
}

/* Hover */
#tableOfContents a:hover {
    background: #f8fafc;
    border-left-color: #e5e7eb;
}

/* Active */
#tableOfContents a.active {
    background: linear-gradient(90deg, #fff3bf, #ffffff);
    border-left-color: #facc15;
    color: #0f172a;
    font-weight: 700;         /* ⬅ STRONG */
}

/* Sub-headings (H3) */
#tableOfContents .toc-item-h3 a {
    padding-left: 32px;
    font-size: 14px;          /* ⬅ still readable */
    color: #475569;
    font-weight: 500;
}

/* Optional subtle left glow */
.toc-sidebar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 3px;
    background: linear-gradient(to bottom, transparent, #facc15, transparent);
    opacity: 0.18;
    border-radius: 3px;
}
#tableOfContents a {
    box-shadow: inset 0 0 0 1px transparent;
}

#tableOfContents a.active {
    box-shadow: inset 0 0 0 1px #fde68a;
}

/* ================= INLINE CTA BOX (BLOG) ================= */

.inline-cta-box{
    background: linear-gradient(135deg, #0A1B4D 0%, #142a63 100%);
    border: 2px solid #D4AF37;
    border-radius: 18px;
    padding: 45px 40px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10,27,77,0.35);
}

/* soft glow circles */
.inline-cta-box::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:#D4AF37;
    opacity:0.08;
    border-radius:50%;
    top:-80px;
    left:-80px;
}

.inline-cta-box::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:#D4AF37;
    opacity:0.06;
    border-radius:50%;
    bottom:-70px;
    right:-70px;
}

.inline-cta-box h3{
    color:#ffffff;
    font-size:28px;
    font-weight:700;
    margin-bottom:14px;
    line-height:1.3;
}

.inline-cta-box p{
    color:#B8C5D6;
    font-size:17px;
    line-height:1.7;
    max-width:650px;
    margin:0 auto 30px;
}

/* Buttons wrapper */
.inline-cta-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

/* Primary button */
.inline-cta-buttons .btn-primary{
    background:#D4AF37;
    color:#0A1B4D;
    padding:14px 34px;
    border-radius:10px;
    font-weight:700;
    font-size:16px;
    text-decoration:none;
    transition:all .3s ease;
    box-shadow:0 10px 25px rgba(212,175,55,0.35);
}

.inline-cta-buttons .btn-primary:hover{
    background:#b8961f;
    tran



