/* ==========================================================================
   BLOG DETAIL PAGE SPECIFIC STYLES - PREMIUM EDITORIAL DESIGN
   ========================================================================== */

:root {
    --primary-accent: #2563eb;      /* Haima Corporate Blue */
    --primary-accent-dark: #1d4ed8; /* Darker shade for hover */
    --accent-orange: #f59e0b;       /* Trending Badge Amber */
    --bg-dark-navy: #061a3a;        /* Header/Footer Deep Navy */
    --bg-navy-form: #0a2040;        /* Form Section Navy */
    --text-dark: #0f172a;           /* Main Headings / Charcoal */
    --text-body: #334155;           /* Readable Slate Body Text */
    --text-muted: #64748b;          /* Muted Text */
    --border-color: #e2e8f0;        /* Light slate borders */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: #ffffff;
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 72px; /* Push content below fixed navbar */
}

/* ==========================================
   BREADCRUMBS
   ========================================== */
.breadcrumbs-section {
    background-color: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
}

.breadcrumbs-container {
    max-width: 1440px;
    margin: 0 auto;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    overflow: hidden;
}

.breadcrumbs-active {
    color: var(--primary-accent);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60vw;
}

.breadcrumbs-list a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color var(--transition-speed);
}

.breadcrumbs-list a:hover {
    color: var(--primary-accent);
}

.breadcrumbs-separator {
    color: #cbd5e1;
}



/* ==========================================
   EDITORIAL BLOG HERO (Rexel-Style)
   ========================================== */
.blog-hero-section {
    position: relative;
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
}

.blog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.blog-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 0 24px;
    text-align: center;
}

.blog-category-badge {
    display: inline-block;
    background-color: var(--primary-accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.blog-hero-title {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.blog-hero__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    flex-wrap: wrap;
    font-weight: 500;
}

.blog-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-hero-meta-item svg {
    opacity: 0.8;
}

/* ==========================================
   MAIN LAYOUT & TWO-COLUMN GRID
   ========================================== */
.blog-detail-wrapper {
    max-width: 1440px;
    margin: 64px auto;
    padding: 0 40px;
    /* Use clip instead of hidden — clip does NOT create a scroll container,
       so position:sticky on .blog-sidebar-col continues to work correctly */
    overflow-x: clip;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left Content Column */
.blog-content-col {
    max-width: 100%;
    min-width: 0;
}

/* Share Icons Row (Standard Inline - Under H1 on Tablet/Mobile) */
.blog-meta-share-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 32px;
    gap: 16px;
}

.blog-author-info {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-author-info strong {
    color: var(--text-dark);
}

.blog-share-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-share-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.share-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.share-link:hover {
    background-color: var(--primary-accent);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Floating Share Bar (Desktop Only) */
.share-float {
    position: fixed;
    left: 40px;
    top: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    background: #ffffff;
    padding: 16px 10px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: left var(--transition-speed);
}

.share-float .share-link {
    width: 36px;
    height: 36px;
}

@media (min-width: 1560px) {
    .share-float {
        left: calc(50% - 785px); /* Keeps floating bar aligned beautifully just outside the 1440px content wrapper */
    }
}

@media (max-width: 1560px) {
    .share-float {
        display: none;
    }
}

/* ==========================================
   BLOG CONTENT TYPOGRAPHY
   ========================================== */
.blog-lead-text {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.65;
    color: var(--text-dark);
    margin-bottom: 24px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.blog-body-p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 24px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.blog-section-h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 40px 0 16px;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 8px;
    scroll-margin-top: 100px; /* Offset for sticky header scroll target */
}

.blog-section-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-accent);
}

.blog-bullet-list {
    margin: 0 0 24px 20px;
    list-style: none;
}

.blog-bullet-list li {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: var(--text-body);
}

.blog-bullet-list li::before {
    content: "•";
    color: var(--primary-accent);
    font-weight: bold;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Editorial Inline Blog Images */
.blog-body-image {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    margin: 32px 0 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.blog-body-image-caption {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 500;
}

/* Pull Quote Editorial Callouts */
.blog-callout {
    background-color: #f0f7ff;
    border-left: 4px solid var(--primary-accent);
    padding: 24px 32px;
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}

.blog-callout__text {
    font-size: 0.975rem;
    font-style: italic;
    font-weight: 600;
    color: #1e3a8a;
    line-height: 1.55;
}

.blog-callout__author {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Editorial Tag Chips */
.blog-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.blog-tag-chip {
    text-decoration: none;
    background-color: #f1f5f9;
    color: #475569;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all var(--transition-speed);
}

.blog-tag-chip:hover {
    background-color: var(--primary-accent);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ==========================================
   SIDEBAR & STICKY MODULES
   ========================================== */
.blog-sidebar-col {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    /* Hide scrollbar visually but keep it functional */
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE/Edge */
}

.blog-sidebar-col::-webkit-scrollbar {
    display: none;                /* Chrome/Safari */
}

/* Table of Contents */
.blog-toc {
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.blog-toc__title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-accent);
}

.blog-toc__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-toc__item a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
    transition: all var(--transition-speed);
    display: block;
}

.blog-toc__item a:hover,
.blog-toc__item.active a {
    color: var(--primary-accent);
    font-weight: 700;
    padding-left: 6px;
    border-left: 2px solid var(--primary-accent);
}

/* Trending Stack */
.sidebar-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--text-dark);
}

.trending-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trending-card {
    display: flex;
    gap: 16px;
    padding: 12px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
    text-decoration: none;
}

.trending-card:hover {
    border-color: var(--primary-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.trending-thumb-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.trending-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trending-badge {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 800;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent-orange);
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-link {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
}

/* ==========================================
   RELATED ARTICLES GRID
   ========================================== */
.related-articles-section {
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color);
    padding: 80px 24px;
}

.related-container {
    max-width: 1440px;
    margin: 0 auto;
}

.related-header {
    margin-bottom: 40px;
}

.related-header-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-accent);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.related-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-speed);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-accent);
}

.related-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
    background-color: #cbd5e1;
}

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

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

.related-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.related-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-desc {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-read-more {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    margin-top: auto;
}

/* ==========================================
   CONTACT FORM SECTION (GET IN TOUCH)
   ========================================== */
.contact-section {
    background-color: var(--bg-navy-form);
    color: #ffffff;
    padding: 80px 24px;
    width: 100%;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.contact-info-col h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-info-col h2 span {
    color: var(--primary-accent);
}

.contact-subtext {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
}

.contact-grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-full-width {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.form-input {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: all var(--transition-speed);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.20);
    background-color: rgba(255, 255, 255, 0.02);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--primary-accent-dark), var(--primary-accent));
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-accent), #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}

/* Form Success State */
.thank-you-view {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn var(--transition-speed) ease-in-out;
}

.thank-you-view.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.verified-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 2px solid #10b981;
}

.verified-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.thank-you-view h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.thank-you-view p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 360px;
    line-height: 1.6;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
    background-color: var(--bg-dark-navy);
    color: #ffffff;
    padding: 80px 24px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================== */

/* Tablet Breakpoint (992px) */
@media (max-width: 992px) {
    .blog-hero-title {
        font-size: 2.15rem;
    }

    .blog-detail-wrapper {
        padding: 0 20px;
    }
    
    .blog-detail-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .blog-sidebar-col {
        position: static;
        margin-top: 16px;
        max-height: none;
        overflow-y: visible;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Breakpoint (768px) */
@media (max-width: 768px) {
    .blog-detail-wrapper {
        margin: 32px auto;
        padding: 0 16px;
    }

    .blog-content-col {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .blog-hero-section {
        height: auto;
        padding: 60px 0;
    }

    .blog-hero-title {
        font-size: 1.85rem;
    }

    .blog-hero__meta {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .blog-meta-share-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0;
    }

    .blog-bullet-list {
        margin-left: 12px;
    }

    /* ===========================================
       INLINE CONTENT BOX RESPONSIVE OVERRIDES
       =========================================== */

    /* All inline-styled bordered containers: scroll rather than clip */
    .blog-content-col > div[style*="border"] {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-bottom: 24px !important;
    }

    /* Inline grid table rows inside bordered containers: min-width forces horizontal scroll */
    .blog-content-col div[style*="display: grid"],
    .blog-content-col div[style*="display:grid"] {
        min-width: 420px !important;
    }

    /* Red/amber/green alert boxes: reduce padding so text fits without clipping */
    .blog-content-col div[style*="border-left"],
    .blog-content-col div[style*="background: #fef2f2"],
    .blog-content-col div[style*="background:#fef2f2"],
    .blog-content-col div[style*="background: #f0fdf4"],
    .blog-content-col div[style*="background:#f0fdf4"],
    .blog-content-col div[style*="background: #eff6ff"],
    .blog-content-col div[style*="background:#eff6ff"] {
        padding: 16px !important;
        margin-bottom: 20px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Inline text inside alert boxes: allow wrapping */
    .blog-content-col div[style*="border-left"] p,
    .blog-content-col div[style*="background: #fef2f2"] p,
    .blog-content-col div[style*="background:#fef2f2"] p {
        font-size: 0.875rem !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Callout heading row inside red box (flex with icon + text): allow wrapping */
    .blog-content-col div[style*="border-left"] p[style*="flex"],
    .blog-content-col div[style*="background: #fef2f2"] p[style*="flex"] {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    /* Monospace formula boxes */
    .blog-content-col div[style*="monospace"] {
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding: 14px 16px !important;
        font-size: 0.78rem !important;
        text-align: left !important;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    /* CTA button rows (flex + gap) — allow stacking on very narrow screens */
    .blog-content-col div[style*="display: flex"][style*="gap"] {
        flex-wrap: wrap !important;
    }

    /* Styled CSS class callout blocks */
    .blog-callout {
        padding: 18px 16px;
        margin: 20px 0;
        border-radius: 0 8px 8px 0;
        box-sizing: border-box;
        width: 100%;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 56px 16px;
    }

    .contact-form-card {
        padding: 24px;
    }

    .contact-grid-form {
        grid-template-columns: 1fr;
    }

    .form-full-width {
        grid-column: span 1;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}