/* Icon font — skip if fonts not available */

/* Force DM Sans on every element — prevents browser-default serif leaks */
*, *::before, *::after {
  font-family: var(--font-dm-sans), 'DM Sans', sans-serif;
}

/* Font variables the theme expects */
:root {
  --font-dm-sans: 'DM Sans';
  --cs-font-base-family: var(--font-dm-sans), 'DM Sans', sans-serif;
  --cs-font-base-size: 1rem;
  --cs-font-base-weight: 400;
  --cs-font-base-style: normal;
  --cs-font-base-line-height: 1.7;
  --cs-font-base-letter-spacing: normal;
  --cs-font-headings-family: var(--font-dm-sans), 'DM Sans', sans-serif;
  --cs-font-headings-weight: 700;
  --cs-font-headings-text-transform: none;
  --cs-font-headings-line-height: 1.3;
  --cs-font-headings-letter-spacing: -0.02em;
  --cs-font-primary-family: 'DM Sans', sans-serif;
  --cs-font-secondary-family: 'DM Sans', sans-serif;
  --cs-font-section-headings-family: 'DM Sans', sans-serif;
  --cs-font-menu-family: 'DM Sans', sans-serif;
  --cs-font-submenu-family: 'DM Sans', sans-serif;
  --cs-font-input-family: 'DM Sans', sans-serif;
  --cs-font-main-logo-family: 'DM Sans', sans-serif;
  --cs-font-footer-logo-family: 'DM Sans', sans-serif;
  --cs-font-footer-menu-family: 'DM Sans', sans-serif;
  --cs-font-footer-submenu-family: 'DM Sans', sans-serif;
  --cs-font-post-meta-family: 'DM Sans', sans-serif;
  --cs-font-primary-size: 0.875rem;
  --cs-font-primary-line-height: 1.5;
  --cs-font-primary-weight: 500;
  --cs-font-primary-style: normal;
  --cs-font-primary-letter-spacing: 0;
  --cs-font-primary-text-transform: none;
  --cs-font-entry-title-family: 'DM Sans', sans-serif;
  --cs-font-entry-title-weight: 700;
  --cs-font-entry-title-line-height: 1.3;
  --cs-font-entry-title-letter-spacing: -0.02em;
  --cs-font-entry-excerpt-family: 'DM Sans', sans-serif;
  --cs-font-entry-excerpt-weight: 400;
  --cs-font-entry-excerpt-size: 0.9375rem;
  --cs-font-entry-excerpt-letter-spacing: 0;
  --cs-font-entry-excerpt-line-height: 1.6;
  --cs-font-post-content-family: 'DM Sans', sans-serif;
  --cs-font-post-content-weight: 400;
  --cs-font-post-content-size: 1.0625rem;
  --cs-font-post-content-letter-spacing: 0;
  --cs-font-post-content-line-height: 1.8;
  --cs-font-post-subtitle-family: 'DM Sans', sans-serif;
  --cs-font-post-subtitle-size: 1.0625rem;
  --cs-font-post-subtitle-line-height: 1.6;
  --cs-font-post-subtitle-weight: 400;
  --cs-font-post-subtitle-letter-spacing: 0;
  --cs-font-category-family: 'DM Sans', sans-serif;
  --cs-font-category-size: 0.6875rem;
  --cs-font-category-line-height: 1;
  --cs-font-category-weight: 700;
  --cs-font-category-style: normal;
  --cs-font-category-letter-spacing: 0.06em;
  --cs-font-category-text-transform: uppercase;
  --cs-heading-1-font-size: 2.5rem;
  --cs-heading-2-font-size: 2rem;
  --cs-heading-3-font-size: 1.5rem;
  --cs-heading-4-font-size: 1.25rem;
  --cs-heading-5-font-size: 1.0625rem;
  --cs-heading-6-font-size: 0.875rem;
  --cs-entry-title-font-size: 1.5rem;
  --cs-font-post-title-family: 'DM Sans', sans-serif;
  --cs-font-post-title-size: 2.5rem;
  --cs-font-post-title-line-height: 1.2;
  --cs-font-post-title-weight: 700;
  --cs-font-post-title-letter-spacing: -0.03em;
  --cs-font-post-title-text-transform: none;
}

/* Overrides et ajouts spécifiques Astro */

/* images */
.cs-entry__thumbnail,
.cs-entry__overlay,
.cs-overlay-background {
  position: relative;
}
.cs-overlay-background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo texte fallback */
.cs-logo__text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cs-color-primary);
  letter-spacing: -0.02em;
}

/* Scroll to top */
.cs-scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: var(--cs-button-border-radius, 8px);
  background: var(--cs-color-button);
  color: var(--cs-color-button-contrast);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.cs-scroll-to-top:hover {
  opacity: 1;
}

/* Search overlay */
.cs-search-root {
  display: none;
}
.cs-search-root.is-active {
  display: flex !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 99999 !important;
  opacity: 1 !important;
  visibility: visible !important;
  align-items: flex-start;
  justify-content: center;
  background: rgba(0,0,0,0.6) !important;
}
.cs-search-root .cs-search__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  margin-top: 12vh;
  padding: 2rem;
  background: var(--cs-layout-background, #fff);
  border-radius: var(--cs-layout-elements-border-radius, 8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.cs-search__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cs-color-primary);
  padding: 0.5rem;
}
.cs-search__form {
  display: flex;
  gap: 0.5rem;
}
.cs-search__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cs-color-border);
  border-radius: var(--cs-input-border-radius);
  background: var(--cs-color-input);
  color: var(--cs-color-input-contrast);
  font-size: 1rem;
}
.cs-search__submit-btn {
  padding: 0.75rem 1.25rem;
  background: #1a3a6b;
  color: #fff;
  border: none;
  border-radius: var(--cs-input-border-radius);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
}
.cs-search__submit-btn:hover {
  opacity: 0.9;
}
.cs-search__categories {
  margin-top: 1.25rem;
}
.cs-search__categories-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #696981;
  margin-bottom: 0.75rem;
}
.cs-search__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cs-search__tag {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid var(--cs-color-border);
  border-radius: 6px;
  background: none;
  color: var(--cs-color-primary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cs-search__tag:hover {
  background: #1a3a6b;
  color: #fff;
  border-color: #1a3a6b;
}
.cs-search__results {
  margin-top: 1.25rem;
  max-height: 50vh;
  overflow-y: auto;
}
.cs-search__no-results {
  color: #696981;
  font-size: 0.9375rem;
}
.cs-search__results-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cs-search__result-item a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cs-color-border, #E1E1E8);
  text-decoration: none;
}
.cs-search__result-item:last-child a {
  border-bottom: none;
}
.cs-search__result-item a:hover .cs-search__result-title {
  color: #1a3a6b;
}
.cs-search__result-title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--cs-color-primary);
  margin-bottom: 0.25rem;
  transition: color 0.15s;
}
.cs-search__result-excerpt {
  display: block;
  font-size: 0.8125rem;
  color: #696981;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs-search__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Sidebar social icons */
.cs-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e1e1e8;
  color: #1a1a2e;
  background: none;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.cs-social-icon:hover {
  border-color: #1a3a6b;
  color: #1a3a6b;
}

/* Offcanvas overlay */
.cs-offcanvas__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}
.cs-offcanvas__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cs-color-primary);
  padding: 0.5rem;
  display: flex;
}

/* Entry content prose */
.entry-content {
  max-width: var(--cs-entry-content-width, 878px);
  margin: 0 auto;
  padding-top: 1px;
}
.entry-content,
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6,
.entry-content p, .entry-content li, .entry-content blockquote,
.entry-content span, .entry-content a, .entry-content strong,
.entry-content em, .entry-content td, .entry-content th {
  font-family: 'DM Sans', sans-serif;
}
.entry-content h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.entry-content h3 { font-size: 1.3rem; margin: 1.5rem 0 0.75rem; }
.entry-content p { margin-bottom: 1.25rem; line-height: 1.75; }
.entry-content a { color: var(--cs-color-accent); text-decoration: underline; }
.entry-content img { max-width: 100%; height: auto; border-radius: var(--cs-thumbnail-border-radius); }
.entry-content blockquote {
  border-left: 4px solid var(--cs-color-accent);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: var(--cs-color-highlight-background);
  border-radius: 0 var(--cs-layout-elements-border-radius) var(--cs-layout-elements-border-radius) 0;
}
.entry-content pre {
  background: var(--cs-color-contrast-900);
  color: #f8f8f2;
  padding: 1rem 1.25rem;
  border-radius: var(--cs-layout-elements-border-radius);
  overflow-x: auto;
  margin: 1.5rem 0;
}
.entry-content code {
  font-family: 'Fira Mono', 'Consolas', monospace;
  font-size: 0.9em;
  background: var(--cs-color-highlight-background);
  padding: 0.1em 0.4em;
  border-radius: 4px;
}
.entry-content pre code {
  background: none;
  padding: 0;
}

/* Page not found */
.cs-content-not-found {
  text-align: center;
  padding: 4rem 1rem;
}

/* Reading time badge — hidden, shown inline in header meta */
.cs-entry__metabar {
  display: none;
}

/* cs-main-content grid layout with sidebar */
.cs-main-content {
  position: relative;
  display: grid;
  grid-auto-flow: row;
  row-gap: 3rem;
  grid-template-columns: minmax(0, 1fr);
}
.cs-sidebar-right .cs-main-content {
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1248px) {
  .cs-sidebar-right .cs-main-content {
    grid-template-columns: minmax(0, 1fr) 300px;
    column-gap: 2.5rem;
  }
}

/* Hero type 3 */
.cs-hero-type-3 {
  margin-top: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 767.98px) {
  .cs-hero-type-3 {
    margin-bottom: 2.5rem;
  }
}
.cs-hero-type-3__container {
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--cs-color-border, #e1e1e8);
}
@media (max-width: 767.98px) {
  .cs-hero-type-3__container {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1248px) {
  .cs-hero-type-3__container {
    grid-template-columns: calc(60% - 2rem) calc(40% - 0.5rem);
    grid-template-rows: auto auto auto;
    column-gap: 2.5rem;
    row-gap: 0;
  }
  .cs-hero-type-3 .cs-entry__featured {
    grid-row: span 3;
  }
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__outer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__outer:has(.cs-entry__thumbnail) .cs-entry__thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1;
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__outer:has(.cs-entry__thumbnail) .cs-entry__content {
  margin-top: -1rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  height: auto;
  display: block;
  padding-top: calc(2.5rem + 1rem);
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__title {
  font-size: var(--cs-heading-2-font-size, 1.75rem);
  margin-top: 0.625rem;
  margin-bottom: 0;
  color: var(--cs-color-primary);
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__subtitle {
  display: block;
  color: var(--cs-color-secondary);
  margin-top: 0.625rem;
}
.cs-hero-type-3 .cs-entry__list {
  display: grid;
}
@media (max-width: 1247.98px) {
  .cs-hero-type-3 .cs-entry__list {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cs-color-border, #e1e1e8);
  }
}
@media (min-width: 1248px) {
  .cs-hero-type-3 .cs-entry__list:not(:last-child) {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--cs-color-border, #e1e1e8);
  }
}
.cs-hero-type-3 .cs-entry__list .cs-entry__outer {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
}
@media (min-width: 400px) {
  .cs-hero-type-3 .cs-entry__list .cs-entry__outer:has(.cs-entry__thumbnail) {
    grid-template-columns: auto clamp(160px, 40%, 160px);
    column-gap: 1rem;
  }
  .cs-hero-type-3 .cs-entry__list .cs-entry__thumbnail {
    order: 2;
    aspect-ratio: 1;
    border-radius: var(--cs-layout-elements-border-radius, 8px);
    overflow: hidden;
  }
}

/* Sidebar widget headings */
.cs-sidebar__area {
  padding-top: 1rem;
}
.cs-sidebar__area .widget:first-child {
  margin-top: 0;
}
.cs-sidebar__area .widget:not(:last-child) {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cs-color-border, #e1e1e8);
}
.wp-block-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cs-color-secondary, #696981);
  margin: 0 0 1rem;
}

/* Sommaire */
.cs-toc {
  background: var(--cs-layout-background);
  border: 1px solid #E1E1E8;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 2.5rem;
}
.cs-toc__title {
  margin: 0 0 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #696981;
}
.cs-toc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.cs-toc-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1a3a6b;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
}
.cs-toc-link,
.entry-content .cs-toc-link {
  flex: 1;
  font-weight: 700;
  font-size: 1rem;
  color: #29294B;
  text-decoration: none;
  line-height: 1.4;
}
.cs-toc-link:hover,
.entry-content .cs-toc-link:hover {
  text-decoration: underline;
  color: #1a3a6b;
}
.cs-toc-arrow {
  flex-shrink: 0;
  color: #1a3a6b;
  text-decoration: none;
  display: flex;
}

/* FAQ — Questions fréquentes */
.cs-faq {
  background: var(--cs-layout-background);
  border: 1px solid #E1E1E8;
  border-radius: 8px;
  padding: 24px;
  margin: 2.5rem 0;
}
.cs-faq__title {
  margin: 0 0 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #696981;
}
.cs-faq-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
}
.cs-faq-item:not(:last-child) {
  border-bottom: none;
}
.cs-faq-item:first-of-type {
  padding-top: 0;
}
.cs-faq-item:last-of-type {
  padding-bottom: 0;
}
.cs-faq-bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a3a6b;
  margin-top: 6px;
}
.cs-faq-content {
  flex: 1;
  min-width: 0;
}
.cs-faq-question {
  font-weight: 700;
  font-size: 1rem;
  color: var(--cs-color-primary);
  line-height: 1.4;
  margin: 0 0 4px;
}
.cs-faq-answer {
  font-size: 0.9rem;
  color: #696981;
  line-height: 1.6;
  margin: 0;
}
.cs-faq-arrow {
  flex-shrink: 0;
  color: #1a3a6b;
  margin-top: 2px;
}
.cs-faq {
  max-width: var(--cs-entry-content-width);
  margin-left: auto;
  margin-right: auto;
}

/* L'essentiel collapsible */
.cs-essentiel {
  border-radius: 8px;
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem;
  overflow: hidden;
  border: 1px solid #1a3a6b;
}
.cs-essentiel__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #1a3a6b;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: opacity 0.15s;
}
.cs-essentiel__toggle:hover {
  opacity: 0.9;
}
.cs-essentiel__toggle svg {
  transition: transform 0.2s;
  flex-shrink: 0;
  color: #FFFFFF;
}
.cs-essentiel__toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.cs-essentiel__body {
  background: #F0F4FA;
  padding: 16px 1.5rem 1.25rem;
  color: #29294B;
  line-height: 1.7;
  font-size: 0.9375rem;
  border-top: 2px solid #1a3a6b;
}
.cs-essentiel__body p {
  margin: 0;
}

/* Post layout (article + sidebar) */
.post-layout {
  display: grid !important;
  grid-template-columns: 1fr 300px !important;
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
}
.post-layout > aside {
  min-width: 0;
}
@media (max-width: 768px) {
  .post-layout {
    grid-template-columns: 1fr;
  }
}
.sidebar-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--cs-color-primary, #1a1a2e);
}

/* Sidebar article links */
.sidebar-article {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  text-decoration: none;
  color: inherit;
}
.sidebar-article img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.sidebar-article-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: #1a202c;
}
.sidebar-article-date {
  font-size: 0.8rem;
  color: #718096;
  margin: 0;
}


/* Essentiel card (vanilla JS toggle) */
.essentiel-wrapper {
  margin-bottom: 1.5rem;
}
.essentiel-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--accent, #1a3a6b);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
}
.essentiel-content {
  padding: 1rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: #f8fafc;
}
.essentiel-content p { margin: 0; }

/* Articles similaires (inside post-layout left column) */
.articles-similaires {
  margin: 2rem 0 0;
}
.articles-similaires > h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cs-color-secondary);
  margin: 0 0 1.5rem;
}
.articles-similaires-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.articles-similaires-grid .cs-entry__outer {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.875rem 1rem;
  background: #ffffff;
  border-radius: var(--cs-layout-elements-border-radius);
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.articles-similaires-grid .cs-entry__outer:hover {
  box-shadow: 0 4px 16px rgba(var(--cs-color-box-shadow-rgb), 0.1);
  transform: translateY(-1px);
}
.articles-similaires-grid .cs-entry__thumbnail {
  position: relative;
  border-radius: var(--cs-layout-elements-border-radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.articles-similaires-grid .cs-entry__content {
  padding: 0;
}
.articles-similaires-grid .cs-entry__title {
  font-size: var(--cs-heading-6-font-size);
  margin: 0 0 0.25rem;
}
.articles-similaires-grid .cs-meta-date {
  font-size: 0.8125rem;
  color: var(--cs-color-secondary);
}

/* FAQ question links */
.cs-faq-question {
  text-decoration: none;
}
a.cs-faq-question:hover {
  color: #1a3a6b;
}

/* 5-column footer */
.site-footer {
  background: #1a1a2e;
  color: #e0e0e0;
  padding: 3.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.site-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2.5rem;
}
.site-footer__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}
.site-footer__desc {
  color: #a0a0b8;
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
.site-footer__social {
  display: flex;
  gap: 0.75rem;
}
.site-footer__social-link {
  color: #a0a0b8;
  transition: color 0.2s;
}
.site-footer__social-link:hover {
  color: #1a3a6b;
}
.site-footer__social-link svg {
  width: 20px;
  height: 20px;
}
.site-footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 1rem;
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__list li {
  margin-bottom: 0.5rem;
}
.site-footer__list a {
  color: #a0a0b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.site-footer__list a:hover {
  color: #1a3a6b;
}
.site-footer__bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.site-footer__bottom p {
  margin: 0;
  color: #6b6b80;
  font-size: 0.8125rem;
}
@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
