*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== LOCAL FONTS ===== */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/inter/Inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('../fonts/playfair-display/PlayfairDisplay-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400 900;
    font-display: swap;
    src: url('../fonts/playfair-display/PlayfairDisplay-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --white: #ffffff;
    --black: #141413;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo {
    height: 56px;
    width: auto;
}

.text-logo {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    white-space: nowrap;
}

.site-brand .logo-groupe {
    display: block;
    color: #178C2D;
    font-size: 18px;
    font-weight: 700;
}

.site-brand .ta { color: #E20616; }
.site-brand .cc { color: #F7A407; }
.site-brand .em { color: #0F852B; }
.site-brand .s  { color: #F27209; }

.site-brand .logo-taccems {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.site-brand .logo-asbl {
    display: block;
    color: #020202;
    font-size: 16px;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--black);
    background: var(--gray-100);
}

.nav-facebook {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--black);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-facebook:hover {
    background: var(--gray-800) !important;
    transform: translateY(-1px);
}

/* ===== MOBILE MENU ===== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MAIN ===== */
.site-main {
    flex: 1;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--gray-200);
}

.hero-logo {
    max-width: 180px;
    margin: 0 auto 32px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTION ===== */
.section {
    padding: 60px 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

/* ===== ARTICLES GRID ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.article-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.article-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--gray-100);
}

.article-card-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 3rem;
}

.article-card-body {
    padding: 24px;
}

.article-card-categorie {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.article-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-card-title a:hover {
    opacity: 0.7;
}

.article-card-excerpt {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.article-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
}

.article-card-link:hover {
    text-decoration: underline;
}

/* ===== ARTICLE SINGLE ===== */
.article-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.article-single-header {
    margin-bottom: 40px;
}

.article-single-categorie {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.article-single-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-single-meta {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.article-single-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

/* ===== ARTICLE SHARE ===== */
.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 16px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.article-share-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
}

.article-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.article-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.article-share-whatsapp { background: #25D366; }
.article-share-whatsapp:hover { background: #1da851; }
.article-share-twitter { background: #000000; }
.article-share-twitter:hover { background: #333333; }
.article-share-facebook { background: #1877F2; }
.article-share-facebook:hover { background: #1565c0; }

/* ===== ARTICLE CONTENT ===== */
.article-content {
    max-width: 820px;
    margin: 0 auto;
    font-family: var(--font-sans);
    font-size: 20px;
    line-height: 1.85;
    color: #292929;
    word-break: normal;
    overflow-wrap: break-word;
}

.article-content p {
    margin: 0 0 28px;
}

.article-content h2 {
    margin: 42px 0 20px;
    font-size: 32px;
    line-height: 1.25;
}

.article-content h3 {
    margin: 36px 0 18px;
    font-size: 27px;
    line-height: 1.3;
}

.article-content h4 {
    margin: 30px 0 16px;
    font-size: 23px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 28px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    margin: 34px 0;
    padding: 18px 24px;
    border-left: 5px solid #e20616;
    background: #fafafa;
    font-size: 21px;
    line-height: 1.7;
}

.article-content a {
    color: #0f852b;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: #0a5c1f;
}

.article-content img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 34px auto;
    border-radius: 12px;
}

.article-content iframe,
.article-content video {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 34px auto;
}

.article-content .ql-align-center {
    text-align: center;
}

.article-content .ql-align-right {
    text-align: right;
}

.article-content .ql-align-justify {
    text-align: justify;
}

.article-content .ql-indent-1 {
    padding-left: 3em;
}

.article-content .ql-indent-2 {
    padding-left: 6em;
}

@media (max-width: 768px) {
    .article-single {
        padding: 40px 16px;
    }
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-weight: 600;
    color: var(--gray-500);
}

.article-back:hover {
    color: var(--black);
}

/* ===== PAGE CONTENT ===== */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-content h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.page-content p,
.page-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.page-content h2,
.page-content h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-content h2 {
    font-size: 1.6rem;
}

.page-content h3 {
    font-size: 1.3rem;
}

.page-content ul {
    list-style: none;
    padding: 0;
}

.page-content ul li {
    padding-left: 24px;
    position: relative;
}

.page-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gray-400);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-item-text h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 1rem;
    color: var(--gray-700);
}

.contact-item-text a:hover {
    color: var(--black);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    height: 300px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-sans);
    line-height: 1;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
    border: 1.5px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.btn-danger {
    background: #dc2626;
    color: var(--white);
}

.btn-danger:hover {
    background: #b91c1c;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: var(--radius);
}

/* ===== NO MORE ===== */
.no-more {
    text-align: center;
    padding: 40px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ===== FLASH MESSAGES ===== */
.flash {
    padding: 16px 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
}

.flash-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.flash-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.flash-info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: block;
    width: 90px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand .logo-groupe {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.footer-brand .logo-taccems {
    font-size: 28px;
    font-weight: 700;
}

.footer-brand .logo-asbl {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-facebook {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== MORE NEWS CTA ===== */
.more-news-section {
    width: 100%;
    max-width: 1180px;
    margin: 56px auto 0;
    padding: 0 20px;
}

.more-news-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 34px;
    border: 1px solid #e4e4e4;
    border-radius: 16px;
    background: #fafafa;
}

.more-news-content h2 {
    margin: 0 0 8px;
    font-size: 25px;
    line-height: 1.25;
}

.more-news-content p {
    margin: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

.more-news-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 10px;
    background: #111111;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.more-news-button:hover {
    background: #333333;
    color: #ffffff;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin: 48px auto 20px;
}

.pagination-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 13px;
    border: 1px solid #dedede;
    border-radius: 9px;
    background: #ffffff;
    color: #171717;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pagination-button:hover {
    border-color: #171717;
    background: #171717;
    color: #ffffff;
}

.pagination-button.active {
    border-color: #171717;
    background: #171717;
    color: #ffffff;
    pointer-events: none;
}

.pagination-button.disabled {
    color: #a6a6a6;
    background: #f5f5f5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 42px;
    color: #777777;
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .article-single-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        gap: 4px;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .hero {
        padding: 48px 0 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo {
        width: 80px;
    }

    .page-content h1 {
        font-size: 1.8rem;
    }

    .article-single-title {
        font-size: 1.6rem;
    }

    .article-single-meta {
        flex-direction: column;
        gap: 8px;
    }

    .article-share {
        gap: 10px;
    }

    .article-share-btn {
        width: 38px;
        height: 38px;
    }

    .article-share-btn svg {
        width: 18px;
        height: 18px;
    }

    .article-content {
        margin-top: 32px;
        padding: 0 20px;
        font-size: 18px;
        line-height: 1.8;
    }

    .article-content h2 {
        font-size: 28px;
    }

    .article-content h3 {
        font-size: 24px;
    }

    .article-content blockquote {
        padding: 16px 18px;
        font-size: 19px;
    }

    .pagination {
        gap: 8px;
        margin-top: 36px;
    }

    .pagination-button {
        min-width: 40px;
        height: 40px;
        padding: 0 11px;
        font-size: 14px;
    }

    .more-news-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .more-news-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-inner {
        height: 60px;
    }

    .site-logo {
        height: 42px;
    }

    .site-brand .logo-groupe {
        font-size: 16px;
    }

    .site-brand .logo-taccems {
        font-size: 28px;
    }

    .site-brand .logo-asbl {
        font-size: 14px;
    }

    .hero {
        padding: 32px 0;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .article-card-body {
        padding: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .pagination {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .pagination-pages {
        grid-column: 1 / -1;
        grid-row: 1;
        flex-wrap: nowrap;
        gap: 6px;
        overflow: hidden;
    }

    .pagination-nav {
        width: 100%;
    }

    .pagination-button {
        min-width: 36px;
        height: 38px;
        padding: 0 9px;
        font-size: 13px;
    }

    .pagination-ellipsis {
        min-width: 20px;
        height: 38px;
    }
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 20px 0 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    color: var(--gray-300);
    font-size: 1rem;
}

.breadcrumbs a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--black);
}

.breadcrumbs [aria-current="page"] {
    color: var(--black);
    font-weight: 500;
}
