/* ============================
   ARTICLE PAGE STYLES
   ============================ */

/* ============================
   CSS Variables
   ============================ */
:root {
    --accent: #FF5A00;
    --accent-dark: #E04D00;
    --accent-light: #FF7A30;
    --accent-glow: rgba(255, 90, 0, 0.2);
    --accent-bg: rgba(255, 90, 0, 0.06);

    --bg-primary: #FDFBF7;
    --bg-secondary: #F8F5EE;
    --bg-card: #FFFFFF;
    --bg-dark: #1A1D23;
    --bg-dark-secondary: #22262E;

    --text-primary: #0B1020;
    --text-secondary: #3D4048;
    --text-tertiary: #6B6F78;
    --text-light: #8F939D;
    --text-white: #FFFFFF;
    --text-white-secondary: #B8BDC6;

    --border-color: #E8E4DA;
    --border-light: rgba(0, 0, 0, 0.06);

    --gradient-accent: linear-gradient(135deg, #FF5A00 0%, #E04D00 100%);

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.12);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --radius-full: 999px;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --max-width: 1200px;
    --max-width-wide: 1400px;
}

/* ============================
   Reset & Base
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================
   Navigation Bar
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-dark);
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-smooth);
    padding: 0.85rem 0;
}

.navbar.scrolled {
    background: var(--bg-dark);
    background-image: none;
    padding: 0.6rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-img {
    height: 80px;
    width: auto;
}

.logo-text {
    letter-spacing: -0.5px;
    color: var(--text-white);
}

.logo-highlight {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    padding: 0.3rem 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: #FFFFFF;
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255, 90, 0, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 90, 0, 0.35);
    color: #FFFFFF;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

/* ============================
   BREADCRUMB NAVIGATION
   ============================ */
.article-breadcrumb {
    padding: 2.5rem 0 2rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    flex-wrap: wrap;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-tertiary);
    font-weight: 500;
    font-size: 1.05rem;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.breadcrumb-link:hover {
    color: var(--accent);
    background: var(--accent-bg);
    transform: translateX(-2px);
}

.breadcrumb-link i {
    font-size: 0.9rem;
    transition: transform var(--transition-fast);
}

.breadcrumb-link:hover i {
    transform: translateX(-4px);
}

.breadcrumb-divider {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 300;
    padding: 0 0.2rem;
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05rem;
    background: var(--accent-bg);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 90, 0, 0.08);
}

/* ============================
   Single Article Layout
   ============================ */
.single-article {
    padding: 120px 0 4rem;
    background: var(--bg-primary);
}

.article-container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

/* ----- Article Header ----- */
.article-header {
    margin-bottom: 2.5rem;
    margin-top: 0.5rem;
}

.article-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
}

/* ----- Article Meta ----- */
.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.article-meta .author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.article-meta .author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.article-meta .author .name {
    font-weight: 600;
    color: var(--text-primary);
}

.article-meta .author .role {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.article-meta .date,
.article-meta .read-time {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.article-meta .date i,
.article-meta .read-time i {
    margin-right: 0.4rem;
}

/* ----- Featured Image ----- */
.article-featured-image {
    margin: 2rem 0 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ----- Article Body ----- */
.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.5px;
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 0.8rem;
}

.article-body p {
    margin-bottom: 1.2rem;
}

.article-body ul,
.article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.article-body ul li,
.article-body ol li {
    margin-bottom: 0.5rem;
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ----- Highlight Box ----- */
.article-body .highlight-box {
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.8rem;
    margin: 1.5rem 0;
}

.article-body .highlight-box strong {
    color: var(--accent);
}

/* ----- Case Study ----- */
.article-body .case-study {
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

.article-body .case-study h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.article-body .case-study p {
    margin-bottom: 0;
}

/* ----- Blockquote ----- */
.article-body blockquote {
    border-left: 4px solid var(--accent);
    padding: 1.2rem 1.8rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.article-body blockquote p {
    margin-bottom: 0;
}

.article-body blockquote .quote-author {
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-primary);
}

/* ----- Tags ----- */
.article-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 2.5rem 0 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.article-tags span {
    padding: 0.3rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* ----- Share Section ----- */
.share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 2rem 0;
    flex-wrap: wrap;
}

.share-section span {
    font-weight: 600;
    color: var(--text-primary);
}

.share-buttons {
    display: flex;
    gap: 0.6rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all var(--transition-fast);
    background: var(--bg-card);
}

.share-btn:hover {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.share-btn.linkedin:hover { background: #0077B5; border-color: #0077B5; }
.share-btn.twitter:hover { background: #000000; border-color: #000000; }
.share-btn.facebook:hover { background: #1877F2; border-color: #1877F2; }
.share-btn.whatsapp:hover { background: #25D366; border-color: #25D366; }
.share-btn.email:hover { background: var(--text-primary); border-color: var(--text-primary); }

/* ----- Author Bio ----- */
.author-bio {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2.5rem 0;
    border: 1px solid var(--border-color);
}

.author-bio img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-bio .bio-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.author-bio .bio-content .bio-role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    display: block;
    margin-bottom: 0.6rem;
}

.author-bio .bio-content p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ----- Related Articles ----- */
.related-articles {
    margin-top: 3rem;
}

.related-articles h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-smooth);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(255, 90, 0, 0.15);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card .related-body {
    padding: 1.2rem 1.5rem 1.5rem;
}

.related-card .related-body h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

.related-card:hover .related-body h4 {
    color: var(--accent);
}

.related-card .related-body h4 a:hover {
    color: var(--accent);
}

.related-card .related-body .related-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ----- Article CTA ----- */
.article-cta {
    margin-top: 3rem;
    text-align: center;
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.article-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.article-cta p {
    color: var(--text-tertiary);
    margin-bottom: 1.2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- CTA Button ----- */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gradient-accent);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(255, 90, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(255, 90, 0, 0.45);
    color: #FFFFFF;
}

.cta-button i {
    transition: transform var(--transition-fast);
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* ============================
   Footer
   ============================ */
.footer {
    background: var(--bg-dark);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
    color: var(--text-white-secondary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-logo-text {
    color: var(--text-white);
}

.footer-brand-text {
    color: var(--text-white-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.footer-brand-description {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-cta {
    display: inline-flex;
    font-size: 0.85rem;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: #FFFFFF;
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-smooth);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 90, 0, 0.3);
    color: #FFFFFF;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--text-white-secondary);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.subscribe-input {
    background: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.subscribe-input:focus {
    border-color: var(--accent);
}

.subscribe-input::placeholder {
    color: var(--text-light);
}

.subscribe-btn {
    background: var(--gradient-accent);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.subscribe-btn:hover {
    box-shadow: 0 4px 20px rgba(255, 90, 0, 0.3);
    transform: translateY(-1px);
}

.footer-social {
    display: flex;
    gap: 0.7rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-dark-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white-secondary);
    font-size: 0.85rem;
    transition: all var(--transition-smooth);
    border: 1px solid transparent;
}

.social-link:hover {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.footer-legal a {
    color: var(--text-light);
    font-size: 0.8rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--accent-light);
}

.legal-separator {
    color: var(--text-light);
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1024px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .single-article {
        padding: 110px 0 3rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-meta {
        gap: 1rem;
    }

    .article-body {
        font-size: 0.95rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .article-body h3 {
        font-size: 1.15rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right var(--transition-smooth);
        box-shadow: var(--shadow-lg);
        gap: 2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.2rem;
    }

    .nav-link {
        color: var(--text-primary);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle .bar {
        background: var(--accent);
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }

    /* Breadcrumb Responsive */
    .article-breadcrumb {
        padding: 1.8rem 0 1.5rem;
        margin-bottom: 1.5rem;
    }

    .breadcrumb-wrapper {
        font-size: 0.95rem;
        gap: 0.6rem;
    }

    .breadcrumb-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    .breadcrumb-current {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .breadcrumb-divider {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .article-header h1 {
        font-size: 1.6rem;
    }

    .article-meta .author img {
        width: 36px;
        height: 36px;
    }

    .article-meta .author .role {
        font-size: 0.7rem;
    }

    .article-body {
        font-size: 0.9rem;
    }

    .article-body h2 {
        font-size: 1.3rem;
    }

    .article-body h3 {
        font-size: 1rem;
    }

    .article-body .highlight-box {
        padding: 1rem 1.2rem;
    }

    .article-body .case-study {
        padding: 1rem 1.2rem;
    }

    .article-body blockquote {
        padding: 1rem 1.2rem;
    }

    .share-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-bio {
        padding: 1.5rem;
    }

    .author-bio img {
        width: 64px;
        height: 64px;
    }

    .article-cta {
        padding: 1.5rem;
    }

    .article-cta h3 {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
    }

    .footer-logo img {
        height: 60px;
    }

    /* Breadcrumb Mobile */
    .article-breadcrumb {
        padding: 1.2rem 0 1rem;
        margin-bottom: 1rem;
    }

    .breadcrumb-wrapper {
        font-size: 0.85rem;
        gap: 0.4rem;
    }

    .breadcrumb-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }

    .breadcrumb-current {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
        max-width: 120px;
    }

    .breadcrumb-divider {
        font-size: 0.8rem;
    }
}