:root {
  /* Colors */
  --primary-red: #B91C1C;
  --lb-green: #15803D;
  --lb-blue: #283a6c;
  --text-main: #09090B;
  --text-muted: #71717A;
  --border: #E4E4E7;
  --bg-ticker: #F4F4F5;
  --lb-surface: #f6f4ef;
  --lb-paper: #f9f9f9;
  --lb-page: #ffffff;
  --accent-yellow: #FFDB81;

  /* Typography */
  --font-primary: 'Source Serif 4', serif;
  --font-secondary: 'DM Sans', sans-serif;
  --font-tags: 'Public Sans', sans-serif;

  /* Spacing */
  --lb-page-gutter: var(--page-gutter, 24px);
  --lb-gap: 24px;
}

@keyframes lbSkeletonSweep {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.content-width {
    max-width: 1280px;
    padding: 0 var(--lb-page-gutter);
    margin: 0 auto;
}

.btn {
    border: none;
    background: none;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    justify-content: center;
    min-width: 140px;
}

.btn-solid {
    padding: 8px 12px;
    border-radius: 5px;
    background: var(--accent-yellow);
    color: #000;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.btn:hover {
    transform: translateY(-1px);
}

.icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-svg svg {
    width: 100%;
    height: 100%;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-svg .icon-svg-fill {
    fill: currentColor;
    stroke: none;
}

body.leboursier .mobile-nav-toggle svg {
    width: 32px;
    height: 32px;
}

.social {
    width: 32px;
    height: 32px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    color: var(--text-muted);
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.social:hover {
    background: #f8f8f8;
    border-color: #d6d6d6;
    transform: translateY(-1px);
}

.leboursier main {
    background: #fff;
}

.leboursier .breadcrumb {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0 24px;
}

@media (max-width: 640px) {
    :root {
        --lb-gap: 16px;
    }
}

@media (max-width: 720px) {
    .leboursier .breadcrumb {
        padding: 0 0 12px;
    }
}
