:root {
  --guide-ink: #17392d;
  --guide-muted: #5f7069;
  --guide-coral: #e96d3a;
  --guide-coral-dark: #c95125;
  --guide-cream: #f7f0e7;
  --guide-paper: #fffdf9;
  --guide-line: #e8dfd2;
  --guide-mint: #e5f1e9;
  --guide-gold: #f3c86b;
  --guide-shadow: 0 18px 55px rgba(23, 57, 45, .11);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

html {
  scroll-behavior: smooth;
}

body:has(.guides-page-shell) {
  background:
    radial-gradient(circle at 8% 4%, rgba(233, 109, 58, .09), transparent 26rem),
    radial-gradient(circle at 92% 28%, rgba(38, 111, 84, .10), transparent 30rem),
    var(--guide-cream);
}

.guides-page-shell .seo-main {
  width: min(1180px, calc(100% - 40px));
  max-width: 1180px;
}

.guides-page-shell .seo-main {
  overflow: visible !important;
}

.seo-nav {
  padding: 18px 0;
}

.guide-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.guide-nav-link {
  color: var(--guide-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.seo-nav .guide-nav-actions .guide-nav-cta {
  padding: 10px 15px;
  white-space: nowrap !important;
}

.guide-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 4px;
  background: rgba(255, 255, 255, .55);
}

.guide-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--guide-coral), #f4aa58);
  transition: width .12s linear;
}

.seo-main--guides,
.seo-main--article {
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.guide-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
  padding: clamp(30px, 6vw, 76px);
  border-radius: 32px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(19, 58, 44, .98), rgba(22, 82, 59, .93)),
    #17392d;
  box-shadow: var(--guide-shadow);
}

.guide-hero::before,
.guide-hero::after {
  position: absolute;
  z-index: -1;
  content: '';
  border-radius: 999px;
  pointer-events: none;
}

.guide-hero::before {
  width: 360px;
  height: 360px;
  top: -210px;
  right: -80px;
  border: 70px solid rgba(243, 200, 107, .15);
}

.guide-hero::after {
  width: 230px;
  height: 230px;
  left: 48%;
  bottom: -180px;
  background: rgba(233, 109, 58, .17);
}

.guide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #f8d993;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.guide-kicker::before {
  width: 27px;
  height: 2px;
  content: '';
  background: currentColor;
}

.guide-hero h1,
.article-hero h1 {
  max-width: 900px;
  margin: 0 !important;
  font-size: clamp(36px, 5.4vw, 68px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.guide-hero .seo-lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.guide-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}

.guide-stats strong {
  color: #fff;
}

.guide-search-wrap {
  position: relative;
  max-width: 820px;
  margin-top: 30px;
}

.guide-search-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 19px;
  width: 21px;
  height: 21px;
  translate: 0 -50%;
  color: var(--guide-muted);
  pointer-events: none;
}

.guide-search {
  width: 100%;
  min-width: 0;
  height: 62px;
  padding: 0 122px 0 54px;
  border: 2px solid transparent;
  border-radius: 18px;
  background: #fff;
  color: var(--guide-ink);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
  font: inherit;
  font-size: 16px;
  outline: none;
}

.guide-search:focus {
  border-color: var(--guide-gold);
  box-shadow: 0 0 0 4px rgba(243, 200, 107, .2), 0 12px 35px rgba(0, 0, 0, .18);
}

.guide-search::-webkit-search-cancel-button,
.faq-search::-webkit-search-cancel-button {
  appearance: none;
}

.guide-search-clear {
  position: absolute;
  top: 50%;
  right: 10px;
  min-height: 42px;
  padding: 0 14px;
  translate: 0 -50%;
  border: 0;
  border-radius: 12px;
  background: var(--guide-mint);
  color: var(--guide-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.guide-search-clear[hidden] {
  display: none;
}

.guide-section {
  margin-top: clamp(42px, 6vw, 72px);
}

.guide-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.guide-section-head > div {
  max-width: 760px;
}

.guide-section-head h2 {
  margin: 0 !important;
  font-size: clamp(27px, 3.6vw, 40px);
  letter-spacing: -.025em;
}

.guide-section-head p {
  margin: 7px 0 0;
  color: var(--guide-muted);
}

.guide-count {
  flex: none;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--guide-mint);
  color: var(--guide-ink);
  font-size: 13px;
  font-weight: 850;
}

.guide-start-grid,
.guide-card-grid,
.guide-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guide-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.guide-city-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 245px;
  flex-direction: column;
  padding: 21px;
  border: 1px solid #d9e7de;
  border-radius: 20px;
  background: linear-gradient(145deg, #f2faf5, #fffdf9 68%);
  color: var(--guide-ink);
  text-decoration: none;
  transition: translate .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.guide-city-card:hover,
.guide-city-card:focus-visible {
  translate: 0 -4px;
  border-color: var(--guide-coral);
  box-shadow: 0 16px 34px rgba(23, 57, 45, .10);
  outline: none;
}

.guide-city-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--guide-muted);
  font-size: 12px;
  font-weight: 780;
}

.guide-city-card-meta span + span::before {
  margin-right: 7px;
  content: '·';
}

.guide-city-card h3 {
  margin: 14px 0 9px;
  font-size: 22px;
  line-height: 1.2;
}

.guide-city-card p {
  margin: 0 0 14px;
  color: var(--guide-muted);
  font-size: 14px;
  line-height: 1.55;
}

.guide-city-card-count {
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--guide-mint);
  color: var(--guide-ink);
  font-size: 12px;
  font-weight: 900;
}

.guide-start-card,
.guide-card,
.guide-related-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--guide-line);
  background: var(--guide-paper);
  color: var(--guide-ink);
  text-decoration: none;
  transition: translate .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.guide-start-card:hover,
.guide-card:hover,
.guide-related-card:hover,
.guide-start-card:focus-visible,
.guide-card:focus-visible,
.guide-related-card:focus-visible {
  translate: 0 -4px;
  border-color: rgba(233, 109, 58, .65);
  box-shadow: 0 16px 34px rgba(23, 57, 45, .10);
  outline: none;
}

.guide-start-card {
  min-height: 290px;
  padding: 24px;
  border-radius: 24px;
}

.guide-start-card:first-child {
  background: linear-gradient(145deg, #fff8ee, #fffdf9);
}

.guide-card {
  min-height: 310px;
  padding: 22px;
  border-radius: 20px;
}

.guide-card::before {
  width: 44px;
  height: 5px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--theme-accent, var(--guide-coral));
  content: '';
}

.guide-card[data-theme='retrouver-lien'] { --theme-accent: #e96d3a; }
.guide-card[data-theme='passer-action'] { --theme-accent: #d9a62e; }
.guide-card[data-theme='prendre-soin'] { --theme-accent: #57927a; }
.guide-card[data-theme='bien-organiser'] { --theme-accent: #5684a6; }
.guide-card[data-theme='idees-partager'] { --theme-accent: #9b6ba8; }

.guide-card-meta,
.guide-related-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--guide-muted);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .02em;
}

.guide-card-meta span + span::before,
.guide-related-meta span + span::before {
  margin-right: 7px;
  content: '·';
}

.guide-card h3,
.guide-start-card h3,
.guide-related-card h3 {
  margin: 14px 0 10px;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -.018em;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.guide-card p,
.guide-start-card p,
.guide-related-card p {
  margin: 0;
  color: var(--guide-muted);
  font-size: 15px;
  line-height: 1.58;
}

.guide-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--guide-coral-dark);
  font-size: 13px;
  font-weight: 900;
}

.guide-read-badge {
  display: none;
  align-items: center;
  width: max-content;
  gap: 5px;
  margin-top: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--guide-mint);
  color: var(--guide-ink);
  font-size: 11px;
  font-weight: 900;
}

.guide-card.is-read .guide-read-badge,
.guide-start-card.is-read .guide-read-badge,
.guide-related-card.is-read .guide-read-badge {
  display: inline-flex;
}

.guide-filter-bar {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  margin: 0 0 22px;
  padding: 3px 2px 10px;
  scrollbar-width: thin;
}

.guide-filter {
  flex: none;
  padding: 10px 15px;
  border: 1px solid var(--guide-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  color: var(--guide-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.guide-filter:hover,
.guide-filter:focus-visible {
  border-color: var(--guide-coral);
  outline: none;
}

.guide-filter[aria-pressed='true'] {
  border-color: var(--guide-ink);
  background: var(--guide-ink);
  color: #fff;
}

.guide-empty {
  margin: 20px 0;
  padding: 28px;
  border: 1px dashed #c9bca9;
  border-radius: 18px;
  background: rgba(255, 255, 255, .7);
  text-align: center;
}

.guide-empty h3 {
  margin: 0 0 4px;
}

.guide-empty p {
  margin: 0;
  color: var(--guide-muted);
}

[hidden] {
  display: none !important;
}

.faq-lab {
  overflow: hidden;
  overflow: clip;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid #d9e7de;
  border-radius: 28px;
  background: linear-gradient(140deg, #edf7f0, #fffdf9 70%);
}

.faq-lab .guide-section-head {
  align-items: center;
}

.faq-search-wrap {
  position: relative;
  max-width: 760px;
  margin: 22px 0 14px;
}

.faq-search {
  width: 100%;
  height: 58px;
  padding: 0 50px 0 18px;
  border: 1px solid #c8d9ce;
  border-radius: 15px;
  background: #fff;
  color: var(--guide-ink);
  font: inherit;
  outline: none;
}

.faq-search:focus {
  border-color: var(--guide-coral);
  box-shadow: 0 0 0 4px rgba(233, 109, 58, .10);
}

.faq-quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.faq-quick {
  padding: 7px 11px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--guide-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px #d8e4dc;
}

.faq-quick:hover,
.faq-quick:focus-visible {
  box-shadow: inset 0 0 0 2px var(--guide-coral);
  outline: none;
}

.faq-results {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid #dce6df;
  border-radius: 15px;
  background: rgba(255, 255, 255, .9);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--guide-mint);
  content: '+';
  text-align: center;
  line-height: 27px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--guide-muted);
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-links a {
  padding: 7px 10px;
  border-radius: 9px;
  background: var(--guide-mint);
  color: var(--guide-ink);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.guide-disclaimer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  margin-top: 42px;
  padding: 18px 20px;
  border-radius: 17px;
  background: rgba(255, 255, 255, .72);
  color: var(--guide-muted);
  font-size: 14px;
}

.guide-disclaimer strong {
  color: var(--guide-ink);
}

.guide-disclaimer-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--guide-mint);
  color: var(--guide-ink);
  font-weight: 900;
}

/* Article */
.article-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 62px);
  border-radius: 30px;
  background: linear-gradient(135deg, #fff, #fff8ee);
  box-shadow: var(--guide-shadow);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 30px;
  color: var(--guide-muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.article-back:hover {
  color: var(--guide-coral-dark);
}

.article-theme {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--guide-mint);
  color: var(--guide-ink);
  font-size: 12px;
  font-weight: 900;
}

.article-hero .seo-lead {
  max-width: 820px;
  margin: 20px 0 22px;
  color: var(--guide-muted);
  font-size: clamp(18px, 2vw, 22px);
}

.article-byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--guide-muted);
  font-size: 13px;
}

.article-author {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--guide-ink);
  font-weight: 900;
}

.article-author-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--guide-ink);
  color: #fff;
  font-size: 12px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 760px);
  justify-content: center;
  gap: clamp(28px, 5vw, 70px);
  margin-top: 42px;
}

.article-side {
  min-width: 0;
}

.article-side-inner {
  position: sticky;
  top: 28px;
}

.article-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.article-tool {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid var(--guide-line);
  border-radius: 9px;
  background: rgba(255, 255, 255, .72);
  color: var(--guide-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.article-tool:hover,
.article-tool:focus-visible,
.article-tool[aria-pressed='true'] {
  border-color: var(--guide-coral);
  background: #fff;
  outline: none;
}

.article-toc strong {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  display: block;
  padding: 5px 0 5px 11px;
  border-left: 2px solid var(--guide-line);
  color: var(--guide-muted);
  font-size: 13px;
  line-height: 1.38;
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a.is-current {
  border-color: var(--guide-coral);
  color: var(--guide-ink);
}

.guide-article {
  width: 100%;
  max-width: 760px !important;
  min-width: 0;
  font-size: var(--article-size, 17px);
}

.guide-article .seo-note {
  margin: 0 0 32px;
  border-left: 4px solid #76a48e;
  background: #eff7f2;
  color: #405a50;
}

.guide-article .seo-section {
  scroll-margin-top: 28px;
  margin-top: 0;
  padding: 34px 0;
  border-bottom: 1px solid var(--guide-line);
}

.guide-article .seo-section:first-of-type {
  padding-top: 4px;
}

.guide-article .seo-section h2 {
  margin: 0 0 17px;
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -.025em;
}

.guide-article .seo-section p {
  margin: 0 0 1.05em;
}

.guide-body > h2 {
  scroll-margin-top: 28px;
  margin: 0;
  padding: 34px 0 17px;
  border-top: 1px solid var(--guide-line);
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -.025em;
}

.guide-body > h2:first-child {
  padding-top: 4px;
  border-top: 0;
}

.guide-body p,
.guide-body ul,
.guide-body ol,
.guide-body blockquote {
  margin-top: 0;
  margin-bottom: 1.05em;
}

.guide-body li {
  margin-bottom: .55em;
}

.guide-body img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.guide-article .seo-checklist {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.guide-article .seo-checklist li {
  position: relative;
  margin: 0;
  padding: 14px 15px 14px 45px;
  border-radius: 12px;
  background: #faf7f1;
}

.guide-article .seo-checklist li::before {
  position: absolute;
  top: 13px;
  left: 14px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--guide-mint);
  content: '✓';
  color: var(--guide-ink);
  font-size: 12px;
  font-weight: 900;
}

.article-resources {
  margin-top: 32px;
  padding: 22px;
  border: 1px solid #d5e5da;
  border-radius: 17px;
  background: #f3f9f5;
}

.article-resources h2 {
  margin: 0 0 5px !important;
  font-size: 21px !important;
}

.article-resources > p {
  margin: 0 0 14px;
  color: var(--guide-muted);
  font-size: 14px;
}

.article-resources ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-resources a {
  display: block;
  padding: 12px 13px;
  border-radius: 10px;
  background: #fff;
  color: var(--guide-ink);
  font-weight: 850;
  text-decoration: none;
}

.article-resources small {
  display: block;
  margin-top: 3px;
  color: var(--guide-muted);
  font-weight: 500;
}

.article-action {
  margin-top: 36px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 22px;
  background: var(--guide-ink);
  color: #fff;
}

.article-action h2 {
  margin: 0 0 8px !important;
  color: #fff;
  font-size: 27px !important;
}

.article-action p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .76);
}

.guides-page-shell .article-action .seo-cta {
  background: var(--guide-coral);
}

.article-finish {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid #eddcc6;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff8ed, #fff);
}

.article-finish-kicker {
  margin: 0 0 5px;
  color: var(--guide-coral-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-finish h2 {
  margin: 0 0 8px !important;
  font-size: clamp(26px, 3vw, 36px) !important;
}

.article-finish > p:last-child {
  margin: 0;
  color: var(--guide-muted);
}

.guide-related {
  margin-top: 54px;
}

.guide-related-card {
  min-height: 230px;
  padding: 20px;
  border-radius: 18px;
}

.guide-related-card h3 {
  font-size: 18px;
}

.article-share-status {
  width: 100%;
  min-height: 18px;
  color: var(--guide-muted);
  font-size: 11px;
}

body.guide-calm-mode {
  background: #eee9df !important;
}

body.guide-calm-mode .seo-nav,
body.guide-calm-mode .seo-footer,
body.guide-calm-mode .article-side {
  opacity: .28;
  transition: opacity .2s ease;
}

body.guide-calm-mode .seo-nav:hover,
body.guide-calm-mode .seo-footer:hover,
body.guide-calm-mode .article-side:hover,
body.guide-calm-mode .seo-nav:focus-within,
body.guide-calm-mode .article-side:focus-within {
  opacity: 1;
}

body.guide-calm-mode .article-hero,
body.guide-calm-mode .guide-article {
  max-width: 780px;
  margin-inline: auto;
}

@media (max-width: 940px) {
  .guide-start-grid,
  .guide-card-grid,
  .guide-related-grid,
  .guide-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .article-side-inner {
    position: static;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
  }

  .article-tools {
    max-width: 250px;
  }

  .article-toc {
    max-width: 420px;
  }
}

@media (max-width: 680px) {
  .guides-page-shell .seo-main {
    width: min(100% - 24px, 1180px);
  }

  .seo-nav {
    align-items: center !important;
  }

  .guide-nav-link {
    display: none;
  }

  .seo-nav .guide-nav-actions .guide-nav-cta {
    max-width: 148px;
    padding: 9px 11px !important;
    font-size: 12px !important;
  }

  .guide-hero,
  .article-hero {
    border-radius: 23px;
  }

  .guide-hero h1,
  .article-hero h1 {
    font-size: clamp(34px, 11vw, 49px) !important;
    letter-spacing: -.04em;
  }

  .guide-search {
    height: 58px;
    padding-right: 52px;
  }

  .guide-search-clear {
    width: 36px;
    padding: 0;
    font-size: 0;
  }

  .guide-search-clear::after {
    content: '×';
    font-size: 20px;
  }

  .guide-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .guide-start-grid,
  .guide-card-grid,
  .guide-related-grid,
  .guide-city-grid {
    grid-template-columns: 1fr;
  }

  .guide-start-card,
  .guide-card {
    min-height: 0;
  }

  .guide-card-arrow {
    margin-top: 4px;
  }

  .faq-lab {
    border-radius: 22px;
  }

  .article-shell {
    margin-top: 28px;
  }

  .article-side-inner {
    display: block;
  }

  .article-tools {
    max-width: none;
    margin-bottom: 15px;
  }

  .article-toc {
    padding: 15px;
    border: 1px solid var(--guide-line);
    border-radius: 13px;
    background: rgba(255, 255, 255, .65);
  }

  .guide-article {
    font-size: min(var(--article-size, 17px), 18px);
  }

  .guide-disclaimer {
    grid-template-columns: 1fr;
  }
}

.guides-city-page .seo-city-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.guides-city-page .seo-city-nav span {
  padding: 7px 11px;
  border: 1px solid var(--guide-line);
  border-radius: 999px;
  background: var(--guide-paper);
  color: var(--guide-ink-soft);
  font-size: 14px;
}

.guides-city-page .seo-facts {
  margin-top: 30px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .guide-start-card,
  .guide-card,
  .guide-related-card,
  .guide-progress span {
    transition: none;
  }
}

/* Regroupements « Explorer les guides » (par thème / par pays et par ville) et résultats de recherche */
.guide-subhead {
  margin: 2.6rem 0 1rem;
  font-size: 1.15rem;
  color: var(--guide-ink);
}
.guide-explore-local {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--guide-line);
}
.guide-country-group { margin-top: 1.6rem; }
.guide-country-group + .guide-country-group { margin-top: 2.4rem; }
.guide-country-title {
  margin: 0 0 1rem;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--guide-muted);
}
.guide-results { margin: 1.5rem 0 0; }
.guide-results[aria-busy="true"] { opacity: .55; }

/* CTA « Proposer un guide » + Mes lectures + formulaire de contribution */
.guide-contribute-cta { margin: 1.4rem 0 0; }
.guide-mine { margin-top: 2rem; }
.guide-submit-form {
  display: grid;
  gap: 1.1rem;
  max-width: 760px;
}
.guide-field { display: grid; gap: .4rem; }
.guide-field label { font-weight: 700; color: var(--guide-ink); }
.guide-submit-form input,
.guide-submit-form select,
.guide-submit-form textarea {
  width: 100%;
  padding: .7rem .8rem;
  border: 1px solid var(--guide-line);
  border-radius: 12px;
  background: var(--guide-paper);
  color: var(--guide-ink);
  font: inherit;
}
.guide-submit-form textarea { resize: vertical; }
.guide-submit-note { color: var(--guide-muted); font-size: .92rem; }
.guide-submit-status { min-height: 1.2em; font-weight: 600; color: var(--guide-coral-dark); }

/* Couverture photo emblématique de la page ville (refonte guides 2026) */
.guide-cover{margin:0 0 clamp(16px,3vw,26px);border-radius:20px;overflow:hidden;aspect-ratio:21/9;background:#e8dfd2;box-shadow:0 14px 34px rgba(23,57,45,.16)}
.guide-cover img{width:100%;height:100%;object-fit:cover;display:block}
@media(max-width:720px){.guide-cover{aspect-ratio:3/2;border-radius:14px}}
