/**
 * Realisons Refonte V2 foundation
 *
 * Additive layout primitives for upcoming Divi 5.1 V2 modules.
 * Scoped to .r-v2 so existing V1 modules are not affected.
 */

/* stylelint-disable selector-class-pattern -- V2 class contracts include version suffixes and master-md names locked by PHP renderers. */

.r-v2 {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  background: var(--r-bg);
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  color-scheme: light;
  isolation: isolate;
}

.r-v2 *,
.r-v2 *::before,
.r-v2 *::after {
  box-sizing: inherit;
}

.r-v2__shell {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--r-chrome-h) - var(--r-admin-bar-h));
  width: 100%;
  overflow-x: clip;
  background: var(--r-bg);
  padding-block: var(--r-gutter-sm);
  padding-inline: var(--r-gutter-sm);
}

.r-v2__shell--center {
  align-items: center;
  justify-content: center;
}

.r-v2__inner {
  width: min(100%, var(--r-container-page));
  margin-inline: auto;
}

.r-v2__inner--narrow {
  width: min(100%, var(--r-container-standard));
}

.r-v2__inner--prose {
  width: min(100%, var(--r-container-prose));
}

.r-v2__card {
  min-width: 0;
  background: var(--r-bg);
  color: var(--r-text-body);
  border-radius: var(--r-radius-card);
  box-shadow: var(--r-neu-card);
  padding: var(--r-card-padding);
  transition: box-shadow var(--r-transition), color var(--r-transition);
}

.r-v2__card:hover,
.r-v2__card:focus-within {
  box-shadow: var(--r-neu-card-hover);
}

.r-v2__card--pressed {
  box-shadow: var(--r-neu-inner);
}

.r-v2-shell {
  box-sizing: border-box;
  width: 100%;
  min-height: calc(100dvh - var(--r-chrome-h) - var(--r-admin-bar-h));
  overflow-x: clip;
  background: var(--r-bg);
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  padding-block: var(--r-gutter-sm);
  padding-inline: var(--r-gutter-sm);
}

.r-v2-shell *,
.r-v2-shell *::before,
.r-v2-shell *::after {
  box-sizing: inherit;
}

.r-v2-shell__inner {
  display: grid;
  width: min(100%, var(--r-container-page));
  min-height: inherit;
  margin-inline: auto;
  gap: var(--r-section-gap);
  align-items: stretch;
}

.r-v2-shell__left,
.r-v2-shell__right,
.r-v2-shell__scroll,
.r-v2-shell__right-body {
  min-width: 0;
}

.r-v2-shell__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--r-gutter-sm);
}

.r-v2-shell__right {
  min-height: 0;
}

.r-v2-shell__scroll {
  overflow: visible;
  background: var(--r-bg);
  border-radius: var(--r-radius-card);
  box-shadow: var(--r-neu-card);
  padding: var(--r-card-padding);
}

.r-v2-shell__title,
.r-v2-shell__right-title,
.r-v2-shell__lead,
.r-v2-shell__kicker {
  margin-block: 0;
}

.r-v2-shell__kicker {
  color: var(--r-text-muted);
  font-family: var(--r-font-heading);
  font-weight: 700;
}

.r-v2__stack {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: var(--r-section-gap);
}

.r-v2__stack--compact {
  gap: calc(var(--r-section-gap) / 2);
}

.r-v2__stack--loose {
  gap: calc(var(--r-section-gap) * 2);
}

.r-v2__stack--center {
  align-items: center;
  text-align: center;
}

.r-v2__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  gap: var(--r-section-gap);
}

.r-v2__grid--dense {
  align-items: stretch;
}

.r-v2__grid--center {
  align-items: center;
}

.r-v2__grid-item {
  min-width: 0;
}

.r-master-page {
  box-sizing: border-box;
  width: 100%;
  min-height: calc(100dvh - var(--r-chrome-h) - var(--r-admin-bar-h));
  background: var(--r-bg);
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  padding: var(--r-gutter-sm);
}

.r-master-page *,
.r-master-page *::before,
.r-master-page *::after {
  box-sizing: inherit;
}

.r-master-page__inner {
  width: min(100%, var(--r-container-page));
  margin-inline: auto;
}

.r-master-page__grid,
.r-master-page__content,
.r-master-page__col,
.r-master-page__card,
.r-master-page__form,
.r-master-page__cards-grid {
  min-width: 0;
}

.r-master-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.r-master-page__content,
.r-master-page__col {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

.r-master-page__card,
.r-master-page__embed,
.r-master-page__widget,
.r-master-page__empty {
  background: var(--r-bg);
  border-radius: var(--r-radius-card);
  box-shadow: var(--r-neu-card);
  padding: var(--r-card-padding);
}

.r-master-page__card--inset {
  display: grid;
  place-items: center;
  min-height: var(--r-partner-card-min-h);
  box-shadow: var(--r-neu-inner);
}

a.r-master-page__card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: box-shadow var(--r-transition), transform var(--r-transition);
}

a.r-master-page__card:hover,
a.r-master-page__card:focus-visible {
  box-shadow: var(--r-neu-card-hover);
  transform: translateY(-2px);
}

.r-master-page__title,
.r-master-page__heading {
  margin-block: 0;
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  overflow-wrap: anywhere;
}

.r-master-page__title {
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.96;
}

.r-master-page__heading {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
}

.r-master-page__accent {
  display: block;
  color: var(--r-teal);
}

.r-catalogue-v2__title-accent {
  color: var(--r-teal);
}

.r-master-page__eyebrow,
.r-master-page__label,
.r-master-page__badge {
  width: fit-content;
  margin: 0;
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.r-master-page__lead,
.r-master-page__text,
.r-master-page__note,
.r-master-page__subtitle,
.r-master-page__price {
  margin-block: 0;
  line-height: 1.65;
}

.r-master-page__lead {
  max-width: var(--r-container-prose-narrow);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--r-text-dark);
}

.r-master-page__note,
.r-master-page__subtitle {
  color: var(--r-text-muted);
}

.r-master-page__price {
  color: var(--r-text-dark);
  font-weight: 700;
}

.r-master-page__actions,
.r-master-page__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.r-master-page__card .r-master-page__actions {
  margin-block-start: var(--r-section-gap);
}

.r-master-page__button--full {
  width: 100%;
  justify-content: center;
}

.r-master-page__pill {
  align-items: flex-start;
  flex-direction: column;
  padding: 10px 16px;
}

.r-v2-form-stack-right .r-master-page__pill {
  gap: calc(var(--r-section-gap) / 4);
  min-inline-size: min(100%, calc(var(--r-section-gap) * 13));
  border: 1px solid var(--r-teal);
  box-shadow: var(--r-neu-btn);
  color: var(--r-teal);
  transition: box-shadow var(--r-transition), border-color var(--r-transition), color var(--r-transition);
}

.r-v2-form-stack-right .r-master-page__pill:hover,
.r-v2-form-stack-right .r-master-page__pill:focus-visible {
  border-color: var(--r-teal);
  box-shadow: var(--r-neu-btn-hover);
  color: var(--r-teal);
}

.r-master-page__pill-label,
.r-master-page__pill-desc {
  display: block;
}

.r-v2-form-stack-right .r-master-page__pill-label {
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.r-v2-form-stack-right .r-master-page__pill-desc {
  color: var(--r-text-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.r-master-page__pill-desc,
.r-master-page__link-desc {
  color: var(--r-text-muted);
  font-size: 13px;
}

.r-master-page__list,
.r-master-page__links {
  display: grid;
  gap: 10px;
  margin-block: 0;
  padding-inline-start: 1.2em;
}

.r-master-page__links {
  padding-inline-start: 0;
  list-style: none;
}

.r-master-page__link,
.r-master-page__text a,
.r-master-page__checkbox a {
  color: var(--r-teal);
  text-decoration: none;
}

.r-master-page__link:hover,
.r-master-page__text a:hover,
.r-master-page__checkbox a:hover {
  color: var(--r-teal-dark);
}

.r-master-page__cards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--r-section-gap);
}

.r-master-page__partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--r-section-gap);
  margin-block-start: var(--r-section-gap);
}

@media (max-width: 1023.98px) {
  .r-master-page__partner-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .r-master-page__partner-logos {
    grid-template-columns: minmax(0, 1fr);
  }
}

.r-master-page__partner-logo,
.r-master-page__media {
  display: grid;
  place-items: center;
  min-width: 0;
}

.r-master-page__partner-logo {
  min-height: var(--r-partner-logo-h);
  padding: var(--r-gutter-sm);
  border-radius: var(--r-radius-card);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
  color: inherit;
  text-decoration: none;
  transition: box-shadow var(--r-transition), transform var(--r-transition);
}

.r-master-page__partner-logo:hover,
.r-master-page__partner-logo:focus-visible {
  box-shadow: var(--r-neu-btn-active);
  transform: translateY(-2px);
}

.r-master-page__partner-logo img,
.r-master-page__media img {
  display: block;
  width: min(100%, var(--r-partner-logo-max-w));
  max-height: var(--r-partner-logo-h);
  object-fit: contain;
}

.r-master-page__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.r-v2-form-stack-right .r-master-page__list--checks {
  list-style: none;
  padding-inline-start: 0;
}

.r-v2-form-stack-right .r-master-page__list--checks > li {
  position: relative;
  min-height: calc(var(--r-section-gap) * 1.35);
  padding-inline-start: calc(var(--r-section-gap) * 1.75);
}

.r-v2-form-stack-right .r-master-page__list--checks > li::before {
  /* Align bullet style with Prix/home (`.r-v2-shell__lead-check`):
     light teal background, no shadow, darker teal glyph (#1095). */
  content: "✓";
  position: absolute;
  display: inline-grid;
  place-items: center;
  inline-size: 1.25rem;
  block-size: 1.25rem;
  inset-inline-start: 0;
  inset-block-start: calc(var(--r-section-gap) * 0.12);
  border-radius: var(--r-radius-dot);
  background: var(--r-teal-a20);
  box-shadow: none;
  color: var(--r-teal-dark);
  font-family: var(--r-font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1;
}

.r-v2-form-stack-right__steps {
  display: grid;
  gap: var(--r-section-gap);
  padding-inline-start: 0;
  margin-block: var(--r-section-gap) 0;
  list-style: none;
}

.r-v2-form-stack-right__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--r-section-gap);
  align-items: start;
  padding: var(--r-gutter-sm);
  border-radius: var(--r-radius-card);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
}

.r-v2-form-stack-right__step-num {
  display: inline-grid;
  place-items: center;
  inline-size: calc(var(--r-section-gap) * 2);
  block-size: calc(var(--r-section-gap) * 2);
  border-radius: var(--r-radius-card);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-weight: 700;
}

.r-v2-form-stack-right__step-title,
.r-v2-form-stack-right__step-detail {
  margin-block: 0;
}

.r-v2-form-stack-right__step-title {
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-weight: 700;
}

.r-v2-form-stack-right__step-detail {
  margin-block-start: calc(var(--r-section-gap) * 0.35);
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  line-height: 1.55;
}

.r-master-page__field,
.r-master-page__checkbox {
  display: grid;
  gap: 8px;
  color: var(--r-text-dark);
  font-weight: 700;
}

.r-master-page__checkbox {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.r-master-page__field input,
.r-master-page__field textarea {
  width: 100%;
  border: 0;
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
  color: var(--r-text-dark);
  font: inherit;
  padding: 13px 14px;
}

.r-master-page__field input[type="file"] {
  cursor: pointer;
}

.r-master-page__field textarea {
  resize: vertical;
}

.r-master-page__error {
  color: var(--r-orange-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.r-master-page__checkbox .r-master-page__error {
  grid-column: 2 / -1;
}

.r-master-page__field--error input,
.r-master-page__field--error textarea {
  outline: 2px solid var(--r-orange-dark);
  outline-offset: 2px;
}

.r-master-page__embed iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--r-radius-card);
  box-shadow: var(--r-neu-inner);
}

.r-v2-article-stack-right,
.r-v2-form-stack-right,
.r-v2-booking-right {
  width: 100%;
}

.r-v2-article-stack-right .r-page__content,
.r-v2-form-stack-right .r-page__content,
.r-v2-booking-right .r-page__content {
  width: min(100%, var(--r-container-page));
  margin-inline: auto;
}

.r-v2-directory-grid-right .r-master-page__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--r-section-gap);
  overflow: visible;
}

.r-v2-directory-grid-right__grid,
.r-v2-directory-grid-right__jobs {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--r-section-gap);
}

.r-v2-directory-grid-right__inset {
  padding: var(--r-card-padding);
  box-shadow: var(--r-neu-inner);
}

.r-v2-directory-grid-right__job-card {
  color: inherit;
  text-decoration: none;
}

.r-v2-directory-grid-right__job-card:hover,
.r-v2-directory-grid-right__job-card:focus-visible {
  box-shadow: var(--r-neu-card-hover);
}

.r-v2-directory-grid-right__empty {
  display: grid;
  gap: var(--r-section-gap);
  color: var(--r-text-body);
}

.r-v2-directory-grid-right__empty-title,
.r-v2-directory-grid-right__empty-body {
  margin-block: 0;
}

.r-v2-directory-grid-right__empty-title {
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-weight: 700;
}

.r-v2-profile-right .r-master-page__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--r-section-gap);
  overflow: visible;
}

.r-v2-profile-right .r-page__content {
  display: grid;
  gap: var(--r-gutter-sm);
}

.r-v2-profile-right .r-master-page__media {
  position: relative;
  z-index: 1;
  margin: 0;
}

.r-v2-profile-right .r-master-page__list--coches {
  padding-inline-start: 0;
  list-style: none;
}

.r-v2-profile-right .r-master-page__list--coches li {
  position: relative;
  padding-inline-start: calc(var(--r-section-gap) * 1.8);
}

.r-v2-profile-right .r-master-page__list--coches li::before {
  content: "";
  position: absolute;
  inset-block-start: calc(var(--r-section-gap) * 0.35);
  inset-inline-start: 0;
  inline-size: calc(var(--r-section-gap) * 0.75);
  block-size: calc(var(--r-section-gap) * 0.4);
  border-inline-start: 0;
  border-block-start: 0;
  border-inline-end: 2px solid var(--r-teal);
  border-block-end: 2px solid var(--r-teal);
  transform: rotate(45deg);
}

.r-section-card__head {
  margin-block-end: var(--r-section-gap);
}

.r-section-card__title {
  margin-block: 0;
}

.r-master-page .r-section-card__title.r-master-page__heading {
  font-family: var(--r-font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
}

.r-v2-service-detail-right .r-section-card__title {
  color: var(--r-text-dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.r-service__points {
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) / 1.5);
}

.r-service__point {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
  padding-inline-start: 14px;
  border-left: 2px solid var(--r-teal);
}

.r-v2-service-detail-right__point {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
  padding-inline-start: 14px;
  border-left: 2px solid var(--r-teal);
}

.r-v2-service-detail-right__point + .r-v2-service-detail-right__point {
  margin-block-start: calc(var(--r-section-gap) / 1.5);
}

.r-v2-service-detail-right__point--left-rule {
  border-inline-start: 2px solid var(--r-teal);
}

.r-service__point-title,
.r-v2-service-detail-right__point-title {
  margin-block: 0;
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.r-service__point-title strong {
  font-weight: inherit;
}

.r-service__point-body,
.r-v2-service-detail-right__point-text {
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  font-size: 14.5px;
  line-height: 1.55;
}

.r-service__point-body p {
  margin-block: 0;
}

.r-single--service {
  min-height: calc(100dvh - var(--r-chrome-h) - var(--r-admin-bar-h));
  padding: 0;
  background: var(--r-bg);
}

.r-single--service .r-single__inner {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  width: 100%;
  max-width: none;
  min-height: calc(100dvh - var(--r-chrome-h) - var(--r-admin-bar-h));
  margin: 0;
  padding: 0;
  background: var(--r-bg);
  border-radius: 0;
  box-shadow: none;
}

.r-single--service .r-single__back,
.r-single--service .r-single__header,
.r-single--service .r-single__meta-card,
.r-single--service .r-single__cta {
  grid-column: 1;
  width: var(--r-v2-left-copy-width);
  margin-inline-start: var(--r-v2-left-anchor-x);
  margin-inline-end: var(--r-v2-left-safe-end);
}

.r-single--service .r-single__back {
  margin-block: var(--r-gutter-md) 0;
}

.r-single--service .r-single__header {
  grid-column: 1;
  align-self: start;
  margin-block: var(--r-gutter-sm) 0;
  padding: 0;
  border-bottom: 0;
}

.r-single--service .r-single__title {
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: 52px;
  line-height: 1.1;
}

.r-single--service .r-single__intro {
  color: var(--r-text-body);
  font-size: 17px;
  line-height: 1.55;
}

.r-single--service .r-single__lead {
  color: var(--r-teal-dark);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}

.r-single--service .r-single__meta-card {
  margin-block: var(--r-gutter-sm) 0;
}

.r-single--service .r-single__cta {
  margin-block: var(--r-gutter-sm) var(--r-gutter-md);
}

.r-single--service .r-single__body {
  grid-column: 2;
  grid-row: 1 / span 5;
  display: flex;
  flex-direction: column;
  gap: var(--r-section-gap);
  height: calc(100dvh - var(--r-chrome-h) - var(--r-admin-bar-h));
  max-width: none;
  margin: 0;
  padding: var(--r-gutter-md);
  overflow-y: auto;
  scrollbar-width: none;
}

.r-single--service .r-single__body::-webkit-scrollbar {
  display: none;
}

.r-single--service .r-service-section {
  background: var(--r-bg);
  border-radius: var(--r-radius-card);
  box-shadow: var(--r-neu-card);
  padding: var(--r-card-padding);
}

.r-single--service .r-service-section > *:first-child {
  margin-block-start: 0;
}

.r-single--service .r-service-section > *:last-child {
  margin-block-end: 0;
}

@media (width <= 1023px) {
  .r-single--service .r-single__inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .r-single--service .r-single__back,
  .r-single--service .r-single__header,
  .r-single--service .r-single__meta-card,
  .r-single--service .r-single__cta,
  .r-single--service .r-single__body {
    grid-column: 1;
    grid-row: auto;
  }

  .r-single--service .r-single__back,
  .r-single--service .r-single__header,
  .r-single--service .r-single__meta-card,
  .r-single--service .r-single__cta {
    width: min(100%, var(--r-v2-left-body-max));
    margin-inline: auto;
  }

  .r-single--service .r-single__body {
    height: auto;
    overflow: visible;
  }
}

/* Service single mobile lateral breathing room (#1151). */
@media (width < 768px) {
  .r-single--service {
    padding-inline: var(--r-gutter-sm);
  }

  .r-single--service .r-single__back,
  .r-single--service .r-single__header,
  .r-single--service .r-single__meta-card,
  .r-single--service .r-single__cta {
    width: 100%;
    margin-inline: 0;
  }

  .r-single--service .r-single__body {
    padding-inline: 0;
  }

  .r-single--service .r-single__title {
    font-size: 34px;
  }
}

.r-v2-article-stack-right .r-section-card__title,
.r-v2-legal-longform-right .r-section-card__title {
  color: var(--r-text-dark);
  font-family: var(--r-font-body);
  font-size: calc(var(--r-section-gap) * 1.5);
  font-weight: 700;
  line-height: 1.35;
}

.r-v2-article-stack-right .r-master-page__actions {
  margin-block-start: var(--r-section-gap);
}

.r-v2-article-stack-right .r-master-page__text > p:first-child {
  color: var(--r-teal-dark);
  font-style: italic;
}

.r-v2-article-stack-right--about .r-section-card__head {
  display: flex;
  gap: var(--r-section-gap);
  align-items: flex-start;
  justify-content: space-between;
}

.r-v2-article-stack-right--about .r-section-card__title {
  min-width: 0;
}

.r-v2-article-stack-right--about .r-v2-article-stack-right__label {
  flex: 0 0 auto;
  margin-inline-start: auto;
  text-align: right;
}

.r-v2-article-stack-right--about .r-master-page__text > p:first-child {
  color: var(--r-text-body);
  font-style: normal;
}

.r-v2-article-stack-right--access .r-master-page__text > p:first-child {
  color: var(--r-text-body);
  font-style: normal;
}

.r-v2-article-stack-right .r-master-page__text strong {
  color: var(--r-text-dark);
  font-weight: 700;
}

.r-v2-article-stack-right .r-master-page__embed--carte {
  margin-block-start: var(--r-section-gap);
}

.r-v2-directory-grid-right--account-menu .r-account-dashboard {
  gap: calc(var(--r-section-gap) * 1.5);
}

.r-v2-directory-grid-right--account-menu .r-account-menu,
.r-v2-account-access-right--woocommerce .r-account-menu {
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) * 1.5);
}

.r-v2-directory-grid-right--account-menu .r-account-card,
.r-v2-account-access-right--woocommerce .r-account-card {
  display: grid;
  grid-template-columns: calc(var(--r-section-gap) * 2.75) minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--r-section-gap);
  padding: calc(var(--r-card-padding) * 0.72) calc(var(--r-card-padding) * 0.85);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--r-neu-card);
}

.r-v2-directory-grid-right--account-menu .r-account-card--link,
.r-v2-directory-grid-right--account-menu .r-account-card--accent,
.r-v2-account-access-right--woocommerce .r-account-card--link,
.r-v2-account-access-right--woocommerce .r-account-card--accent {
  transition: box-shadow var(--r-transition), transform var(--r-transition);
}

.r-v2-directory-grid-right--account-menu .r-account-card--link:hover,
.r-v2-directory-grid-right--account-menu .r-account-card--link:focus-visible,
.r-v2-directory-grid-right--account-menu .r-account-card--accent:hover,
.r-v2-directory-grid-right--account-menu .r-account-card--accent:focus-visible,
.r-v2-account-access-right--woocommerce .r-account-card--link:hover,
.r-v2-account-access-right--woocommerce .r-account-card--link:focus-visible,
.r-v2-account-access-right--woocommerce .r-account-card--accent:hover,
.r-v2-account-access-right--woocommerce .r-account-card--accent:focus-visible {
  box-shadow: var(--r-neu-card-hover);
  transform: translateY(-2px);
}

.r-v2-directory-grid-right--account-menu .r-account-card__icon,
.r-v2-account-access-right--woocommerce .r-account-card__icon {
  display: grid;
  place-items: center;
  width: calc(var(--r-section-gap) * 2.75);
  aspect-ratio: 1;
  border-radius: var(--r-radius-btn);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
}

.r-v2-directory-grid-right--account-menu .r-account-card__icon-svg,
.r-v2-account-access-right--woocommerce .r-account-card__icon-svg {
  width: calc(var(--r-section-gap) * 1.35);
  height: calc(var(--r-section-gap) * 1.35);
  color: var(--r-teal);
}

.r-v2-directory-grid-right--account-menu .r-account-card__body,
.r-v2-account-access-right--woocommerce .r-account-card__body {
  min-width: 0;
}

.r-v2-directory-grid-right--account-menu .r-account-card__title,
.r-v2-account-access-right--woocommerce .r-account-card__title {
  margin-block: 0 calc(var(--r-section-gap) / 3);
  color: var(--r-text-dark);
  font-family: var(--r-font-body);
  font-size: calc(var(--r-section-gap) * 1.5);
  font-weight: 700;
  line-height: 1.25;
}

.r-v2-directory-grid-right--account-menu .r-account-card__sub,
.r-v2-account-access-right--woocommerce .r-account-card__sub {
  margin-block: 0;
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  font-size: calc(var(--r-section-gap) * 1.25);
  line-height: 1.5;
}

.r-v2-directory-grid-right--account-menu .r-account-card__arrow,
.r-v2-account-access-right--woocommerce .r-account-card__arrow {
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-size: calc(var(--r-section-gap) * 1.8);
  font-weight: 700;
  line-height: 1;
}

.r-v2-account-access-right--woocommerce .r-account-dashboard {
  display: grid;
  gap: calc(var(--r-section-gap) * 1.5);
}

.r-v2-account-access-right--woocommerce .r-account-dashboard__native {
  background: var(--r-bg);
  border-radius: var(--r-radius-card);
  box-shadow: var(--r-neu-inner);
  padding: var(--r-card-padding);
}

.r-v2-account-access-right--woocommerce .r-account-dashboard__native .woocommerce-MyAccount-navigation {
  display: none;
}

.r-v2-account-access-right--woocommerce .r-account-dashboard__native .woocommerce {
  max-width: none;
  margin: 0;
  padding: 0;
}

.r-v2-account-access-right--woocommerce .r-account-dashboard__native .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
  min-height: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

@media (max-width: 640px) {
  .r-v2-directory-grid-right--account-menu .r-account-card,
  .r-v2-account-access-right--woocommerce .r-account-card {
    grid-template-columns: calc(var(--r-section-gap) * 2.45) minmax(0, 1fr);
    padding: calc(var(--r-card-padding) * 0.65);
  }

  .r-v2-directory-grid-right--account-menu .r-account-card__icon,
  .r-v2-account-access-right--woocommerce .r-account-card__icon {
    width: calc(var(--r-section-gap) * 2.45);
  }

  .r-v2-directory-grid-right--account-menu .r-account-card__arrow,
  .r-v2-account-access-right--woocommerce .r-account-card__arrow {
    display: none;
  }
}

.r-v2-legal-longform-right .r-legal-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--r-section-gap) / 2);
  box-sizing: border-box;
  width: 100%;
  margin-block: 0 var(--r-section-gap);
  padding: var(--r-card-padding);
  background: var(--r-bg);
  border-radius: var(--r-radius-card);
  box-shadow: var(--r-neu-inner);
  color: var(--r-text-body);
  font-family: var(--r-font-heading);
  font-size: calc(var(--r-section-gap) + 1px);
  font-weight: 600;
  text-align: center;
}

.r-v2-legal-longform-right .r-section-card__head {
  display: flex;
  gap: var(--r-section-gap);
  align-items: flex-start;
  justify-content: space-between;
}

.r-v2-legal-longform-right .r-section-card__title {
  min-width: 0;
}

.r-v2-legal-longform-right .r-v2-legal-longform-right__label {
  flex: 0 0 auto;
  margin-inline-start: auto;
  text-align: right;
}

.r-v2-welcome-linktree.r-linktree-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--r-card-padding) * 2) var(--r-gutter-sm);
}

.r-v2-welcome-linktree .r-linktree {
  width: min(100%, 460px);
  background: var(--r-bg);
  border-radius: var(--r-radius-card);
  box-shadow: var(--r-neu-card);
  padding: calc(var(--r-card-padding) + var(--r-section-gap)) var(--r-card-padding);
  text-align: center;
}

.r-v2-welcome-linktree .r-linktree__logo {
  display: block;
  width: min(72%, calc(var(--r-section-gap) * 10));
  height: auto;
  max-height: calc(var(--r-section-gap) * 7);
  margin: 0 auto calc(var(--r-section-gap) * 1.7);
  object-fit: contain;
}

.r-v2-welcome-linktree--profile .r-linktree__logo {
  width: min(58%, calc(var(--r-section-gap) * 8));
  margin-block-end: var(--r-section-gap);
}

.r-v2-welcome-linktree .r-linktree__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--r-section-gap) * 5.5);
  aspect-ratio: 1;
  margin: 0 auto calc(var(--r-section-gap) * 1.85);
  border-radius: 50%;
  background: var(--r-bg);
  box-shadow: var(--r-neu-btn);
  color: var(--r-teal-dark);
  font-family: var(--r-font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  overflow: hidden;
}

.r-v2-welcome-linktree .r-linktree__avatar-img {
  display: block;
  height: calc(var(--r-section-gap) * 5.5);
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.r-v2-welcome-linktree .r-linktree__title {
  margin: 0 0 calc(var(--r-section-gap) / 3);
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.12;
}

.r-v2-welcome-linktree .r-linktree__title.r-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.r-v2-welcome-linktree .r-linktree__subtitle {
  margin: 0 0 calc(var(--r-section-gap) * 1.15);
  color: var(--r-teal);
  font-family: var(--r-font-body);
  font-size: 0.95rem;
  font-weight: 700;
}

.r-v2-welcome-linktree .r-linktree__intro {
  max-width: 36ch;
  margin: 0 auto calc(var(--r-section-gap) * 2.15);
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.55;
}

.r-v2-welcome-linktree .r-linktree__links {
  display: flex;
  flex-direction: column;
  gap: var(--r-section-gap);
}

.r-v2-welcome-linktree .r-linktree__link {
  display: flex;
  align-items: center;
  gap: calc(var(--r-section-gap) * 1.15);
  padding: calc(var(--r-section-gap) * 1.15) calc(var(--r-section-gap) * 1.5);
  background: var(--r-bg);
  border-radius: var(--r-radius-input);
  box-shadow: var(--r-neu-btn);
  color: var(--r-text-dark);
  font-family: var(--r-font-body);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: box-shadow var(--r-transition), color var(--r-transition), border-color var(--r-transition);
}

.r-v2-welcome-linktree .r-linktree__link:hover,
.r-v2-welcome-linktree .r-linktree__link:focus-visible {
  box-shadow: var(--r-neu-btn-hover);
  color: var(--r-teal-dark);
}

.r-v2-welcome-linktree .r-linktree__link--cta {
  border: 1px solid var(--r-orange);
  color: var(--r-orange);
  font-weight: 700;
}

.r-v2-welcome-linktree .r-linktree__link--cta:hover,
.r-v2-welcome-linktree .r-linktree__link--cta:focus-visible {
  border-color: var(--r-orange-dark);
  color: var(--r-orange-dark);
}

.r-v2-welcome-linktree .r-linktree__link-icon {
  flex: 0 0 auto;
  width: calc(var(--r-section-gap) * 1.85);
  height: calc(var(--r-section-gap) * 1.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--r-teal);
}

.r-v2-welcome-linktree .r-linktree__link--cta .r-linktree__link-icon {
  color: var(--r-orange);
}

.r-v2-welcome-linktree .r-linktree__link-icon svg {
  width: 100%;
  height: 100%;
}

.r-v2-welcome-linktree .r-linktree__link-label {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.r-v2-welcome-linktree .r-linktree__back {
  display: inline-block;
  margin-block-start: calc(var(--r-section-gap) * 1.85);
  color: var(--r-text-muted);
  font-family: var(--r-font-body);
  font-size: 0.92rem;
  text-decoration: none;
}

.r-v2-welcome-linktree .r-linktree__back:hover,
.r-v2-welcome-linktree .r-linktree__back:focus-visible {
  color: var(--r-text-body);
}

@media (prefers-color-scheme: dark) {
  .r-v2-welcome-linktree .r-linktree__logo {
    filter: invert(1) hue-rotate(180deg);
  }
}

.r-v2-landing-overlay {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--r-card-padding) * 2) var(--r-gutter-sm);
  background: var(--r-bg);
  color: var(--r-text-body);
  isolation: isolate;
}

.r-v2-landing-overlay__backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--r-gutter-md);
  filter: blur(var(--r-entry-overlay-blur));
  opacity: 0.52;
  transform: scale(1.04);
  pointer-events: none;
  z-index: -1;
}

.r-v2-landing-overlay__home-preview {
  width: min(100%, 980px);
  min-height: min(72vh, 680px);
  display: grid;
  align-content: start;
  gap: calc(var(--r-section-gap) * 1.5);
  padding: calc(var(--r-card-padding) * 2);
  border-radius: var(--r-radius-card);
  background: var(--r-bg);
  box-shadow: var(--r-neu-card);
}

.r-v2-landing-overlay__home-preview span {
  display: block;
  width: 100%;
  min-height: calc(var(--r-section-gap) * 5);
  border-radius: var(--r-radius-input);
  background: color-mix(in srgb, var(--r-bg) 68%, var(--r-teal-light));
  box-shadow: var(--r-neu-inner);
}

.r-v2-landing-overlay__home-preview span:nth-of-type(2) {
  width: 72%;
}

.r-v2-landing-overlay__home-preview span:nth-of-type(3) {
  width: 86%;
}

.r-v2-landing-overlay__preview-eyebrow,
.r-v2-landing-overlay__eyebrow {
  margin: 0;
  color: var(--r-teal);
  font-family: var(--r-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.r-v2-landing-overlay__preview-title {
  max-width: 18ch;
  margin: 0 0 calc(var(--r-section-gap) * 2);
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
}

.r-v2-landing-overlay__card {
  width: min(100%, 520px);
  padding: calc(var(--r-card-padding) * 1.45);
  border: 1px solid var(--r-entry-panel-stroke);
  border-radius: var(--r-radius-card);
  background: var(--r-entry-panel-bg);
  box-shadow: var(--r-neu-card);
  backdrop-filter: blur(var(--r-entry-overlay-blur));
}

.r-v2-landing-overlay__title {
  display: grid;
  gap: calc(var(--r-section-gap) / 2);
  margin: calc(var(--r-section-gap) * 1.1) 0;
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.02;
}

.r-v2-landing-overlay__subtitle {
  margin: 0 0 var(--r-section-gap);
  color: var(--r-teal-dark);
  font-family: var(--r-font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.r-v2-landing-overlay__lead {
  margin: 0;
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.r-v2-landing-overlay__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--r-section-gap);
  margin-block-start: calc(var(--r-section-gap) * 2);
}

.r-v2-landing-overlay__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(var(--r-section-gap) * 3.7);
  padding: calc(var(--r-section-gap) * 0.85) calc(var(--r-section-gap) * 1.65);
  border-radius: var(--r-radius-btn);
  box-shadow: var(--r-neu-btn);
  font-family: var(--r-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow var(--r-transition), color var(--r-transition);
}

.r-v2-landing-overlay__cta--primary {
  background: var(--r-bg);
  color: var(--r-teal-dark);
}

.r-v2-landing-overlay__cta--secondary {
  background: var(--r-bg);
  color: var(--r-orange);
}

.r-v2-landing-overlay__cta:hover,
.r-v2-landing-overlay__cta:focus-visible {
  box-shadow: var(--r-neu-btn-hover);
}

@media (width <= 700px) {
  .r-v2-landing-overlay__preview-title {
    font-size: 2.4rem;
  }

  .r-v2-landing-overlay__title {
    font-size: 2.2rem;
  }

  .r-v2-landing-overlay__card {
    padding: var(--r-card-padding);
  }

  .r-v2-landing-overlay__actions,
  .r-v2-landing-overlay__cta {
    width: 100%;
  }
}

.r-v2-form-stack-right .r-master-page__form {
  margin-block-start: var(--r-section-gap);
}

.r-v2-account-access-right__login .r-master-page__form {
  margin-block-start: var(--r-section-gap);
}

.r-v2-account-access-right__login .r-master-page__note {
  margin-block-start: var(--r-section-gap);
}

.r-v2-checkout-shell .r-checkout__inner {
  grid-template-columns: minmax(0, 1fr);
  gap: var(--r-section-gap);
  max-width: var(--r-container-page);
}

.r-v2-checkout-shell .r-checkout__left,
.r-v2-checkout-shell .r-checkout__right {
  min-width: 0;
  position: static;
}

.r-v2-checkout-shell .r-checkout__left {
  display: grid;
  gap: var(--r-section-gap);
  grid-column: 1;
  grid-row: 1;
}

.r-v2-checkout-shell .r-checkout__right {
  display: grid;
  gap: var(--r-section-gap);
  grid-column: 1;
  grid-row: 2;
}

.r-v2-checkout-shell .r-checkout__offer-price {
  display: grid;
  gap: calc(var(--r-section-gap) / 2);
  margin: 0;
}

.r-v2-checkout-shell .r-checkout__details,
.r-v2-checkout-shell .r-checkout__trust {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.r-v2-checkout-shell .r-checkout__details {
  display: grid;
  gap: var(--r-section-gap);
  box-shadow: none;
}

.r-v2-checkout-shell .r-checkout__details-section {
  display: grid;
  gap: calc(var(--r-section-gap) / 2);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.r-v2-checkout-shell .r-checkout__details-section .r-info-section__list {
  margin-block-end: 0;
}

.r-v2-checkout-shell .r-checkout__details-title {
  margin: 0;
}

.r-v2-checkout-shell .r-checkout__promo-note strong {
  color: var(--r-text-dark);
  font-weight: 700;
}

.r-v2-checkout-shell .r-checkout__coupon-card,
.r-v2-checkout-shell .r-checkout__form-card {
  display: grid;
  gap: var(--r-section-gap);
  padding: var(--r-card-padding);
  border-radius: var(--r-radius-card);
  background: var(--r-bg);
  box-shadow: var(--r-neu-card);
}

.r-v2-checkout-shell .r-checkout__coupon-card {
  padding: var(--r-card-padding);
  box-shadow: var(--r-neu-card);
}

.r-v2-checkout-shell .r-checkout__card-title {
  margin: 0;
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.25;
}

.r-v2-checkout-shell .r-checkout__coupon-note {
  margin: 0;
  color: var(--r-text-body);
}

/* stylelint-disable selector-id-pattern, declaration-no-important -- WooCommerce checkout IDs and float rules require scoped overrides. */
.r-v2-checkout-shell .r-checkout__form-card .woocommerce,
.r-v2-checkout-shell .r-checkout__form-card #customer_details,
.r-v2-checkout-shell .r-checkout__form-card .woocommerce-billing-fields,
.r-v2-checkout-shell .r-checkout__form-card #order_review {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}
/* stylelint-enable selector-id-pattern, declaration-no-important */

@media (width >= 1024px) {
  .r-v2-checkout-shell .r-checkout__inner {
    grid-template-columns: minmax(0, var(--r-v2-left-col)) minmax(0, var(--r-v2-right-col));
    gap: calc(var(--r-section-gap) * 2);
    align-items: start;
  }

  .r-v2-checkout-shell .r-checkout__left {
    grid-column: 1;
    grid-row: 1;
  }

  .r-v2-checkout-shell .r-checkout__right {
    grid-column: 2;
    grid-row: 1;
  }
}

.r-merci--commande {
  align-items: stretch;
}

.r-merci--commande .r-merci__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(var(--r-section-gap), 4vw, calc(var(--r-section-gap) * 2));
  width: min(100%, var(--r-container-page));
  max-width: var(--r-container-page);
  text-align: left;
}

.r-merci--commande .r-merci__left,
.r-merci--commande .r-merci__right {
  min-width: 0;
}

.r-merci--commande .r-merci__right {
  display: grid;
  gap: var(--r-section-gap);
}

.r-merci--commande .r-merci__card {
  display: grid;
  gap: calc(var(--r-section-gap) / 2);
  padding: var(--r-card-padding);
  border-radius: var(--r-radius-card);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
}

.r-merci--commande .r-merci__card-title {
  margin: 0;
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.25;
}

.r-merci--commande .r-merci__card-body {
  margin: 0;
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  line-height: 1.6;
}

.r-merci--commande .r-merci__ctas {
  justify-content: flex-start;
}

@media (width >= 900px) {
  .r-merci--commande .r-merci__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    align-items: start;
  }
}

.r-rdv__widget,
.r-rdv__details,
.r-rdv__calendar {
  min-width: 0;
}

.r-rdv__widget {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--r-section-gap);
  align-items: stretch;
  width: 100%;
  margin-inline: auto;
}

.r-rdv__widget--embed-only {
  grid-template-columns: minmax(0, 1fr);
}

.r-rdv__widget--embed-only .r-v2-booking-right__embed {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  width: 100%;
}

.r-rdv__widget--embed-only .r-v2-booking-right__embed > * {
  max-width: 100%;
}

.r-rdv__details,
.r-rdv__calendar {
  background: var(--r-bg);
  border-radius: var(--r-radius-card);
  box-shadow: var(--r-neu-card);
  padding: var(--r-card-padding);
}

.r-rdv__brand {
  display: inline-flex;
  gap: var(--r-section-gap);
  align-items: center;
  margin-block-end: var(--r-section-gap);
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-weight: 700;
}

.r-rdv__logo {
  display: inline-grid;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
}

.r-rdv__logo svg {
  width: 100%;
  height: 100%;
}

.r-rdv__title {
  margin-block: 0 var(--r-section-gap);
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
}

.r-rdv__meta {
  display: grid;
  gap: var(--r-section-gap);
  margin: 0 0 var(--r-section-gap);
  padding: 0;
  list-style: none;
}

.r-rdv__meta li {
  display: flex;
  gap: var(--r-section-gap);
  align-items: center;
  color: var(--r-text-dark);
  font-weight: 700;
}

.r-rdv__meta-icon {
  display: inline-grid;
  width: 1.25rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--r-teal);
}

.r-rdv__meta-icon svg {
  width: 100%;
  height: 100%;
}

.r-rdv__desc,
.r-v2-booking-right__fallback {
  margin-block: 0;
  color: var(--r-text-muted);
  line-height: 1.65;
}

.r-rdv__cal-head,
.r-rdv__cal-nav,
.r-rdv__tz-select-wrap {
  display: flex;
  align-items: center;
}

.r-rdv__cal-head {
  justify-content: space-between;
  gap: var(--r-section-gap);
  margin-block-end: var(--r-section-gap);
}

.r-rdv__cal-month {
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
}

.r-rdv__cal-year,
.r-rdv__tz-label {
  color: var(--r-text-muted);
}

.r-rdv__cal-nav {
  gap: calc(var(--r-section-gap) / 2);
}

.r-rdv__cal-arrow,
.r-rdv__cal-cell {
  border: 0;
  border-radius: var(--r-radius-btn);
  background: var(--r-bg);
  color: var(--r-text-dark);
  font: inherit;
}

.r-rdv__cal-arrow {
  display: inline-grid;
  width: 2.25rem;
  aspect-ratio: 1;
  place-items: center;
  box-shadow: var(--r-neu-btn);
}

.r-rdv__cal-arrow svg {
  width: 1rem;
  height: 1rem;
}

.r-rdv__cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: calc(var(--r-section-gap) / 2);
}

.r-rdv__cal-day-name {
  color: var(--r-text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.r-rdv__cal-cell {
  display: inline-grid;
  min-height: 2.35rem;
  place-items: center;
  box-shadow: var(--r-neu-inner);
  font-weight: 700;
}

.r-rdv__cal-cell--off {
  box-shadow: none;
}

.r-rdv__cal-cell--past {
  color: var(--r-text-muted);
  opacity: 0.7;
}

.r-rdv__cal-cell--avail,
.r-rdv__cal-cell--today {
  color: var(--r-teal);
  cursor: pointer;
}

.r-rdv__cal-cell--today {
  box-shadow: var(--r-neu-btn-active);
}

.r-rdv__tz {
  display: grid;
  gap: calc(var(--r-section-gap) / 2);
  margin-block-start: var(--r-section-gap);
}

.r-rdv__tz-select-wrap {
  position: relative;
}

.r-rdv__tz-select {
  width: 100%;
  appearance: none;
  border: 0;
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
  color: var(--r-text-dark);
  font: inherit;
  padding: var(--r-section-gap) var(--r-card-padding) var(--r-section-gap) var(--r-gutter-sm);
}

.r-rdv__tz-chevron {
  position: absolute;
  right: var(--r-gutter-sm);
  display: inline-grid;
  width: 1rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--r-text-muted);
  pointer-events: none;
}

.r-rdv__tz-chevron svg {
  width: 100%;
  height: 100%;
}

@media (width >= 1024px) {
  .r-rdv__widget {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }

  .r-rdv__widget.r-rdv__widget--embed-only {
    grid-template-columns: minmax(0, 1fr);
  }

  .r-rdv__tz {
    grid-column: 1 / -1;
  }
}

@media (width >= 768px) {
  .r-master-page {
    padding: var(--r-gutter-md);
  }

  .r-master-page__cards-grid,
  .r-master-page__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .r-master-page__field--wide,
  .r-master-page__checkbox,
  .r-master-page__form-note,
  .r-master-page__form .r-master-page__button {
    grid-column: 1 / -1;
  }
}

@media (width >= 1024px) {
  .r-master-page {
    padding: var(--r-gutter-lg);
  }

  .r-master-page__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .r-master-page__grid--checkout {
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  }

  .r-master-page__col--left,
  .r-master-page__col--right {
    position: sticky;
    top: calc(var(--r-header-h) + var(--r-admin-bar-h) + 24px);
  }

  .r-master-page__grid--checkout .r-master-page__col--left {
    position: static;
  }
}

@media (prefers-color-scheme: dark) {
  .r-v2 {
    color-scheme: dark;
  }
}

@media (width >= 768px) {
  .r-v2__shell,
  .r-v2-shell {
    padding-block: var(--r-gutter-md);
    padding-inline: var(--r-gutter-md);
  }

  .r-v2__grid--two,
  .r-v2__grid--three,
  .r-v2__grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .r-v2__grid-item--span-two {
    grid-column: span 2;
  }
}

@media (width >= 1024px) {
  .r-v2__shell,
  .r-v2-shell {
    padding-block: var(--r-gutter-lg);
    padding-inline: var(--r-gutter-lg);
  }

  .r-v2-shell__inner {
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  }

  .r-v2-shell__left {
    position: sticky;
    top: calc(var(--r-header-h) + var(--r-admin-bar-h) + var(--r-gutter-sm));
    align-self: start;
    min-height: calc(100dvh - var(--r-chrome-h) - var(--r-admin-bar-h) - (var(--r-gutter-lg) * 2));
  }

  .r-v2-shell__scroll {
    max-height: calc(100dvh - var(--r-chrome-h) - var(--r-admin-bar-h) - (var(--r-gutter-lg) * 2));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .r-v2__grid--three,
  .r-v2__grid--four {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .r-v2__grid-item--span-three {
    grid-column: span 3;
  }
}

@media (width >= 1280px) {
  .r-v2__shell,
  .r-v2-shell {
    padding-block: var(--r-gutter-xl);
    padding-inline: var(--r-gutter-xl);
  }

  .r-v2__grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .r-v2__grid-item--span-four {
    grid-column: span 4;
  }
}

/**
 * Tarifs V2 module (#598)
 */

.r-tarifs-v2__columns,
.r-tarifs-v2__left,
.r-tarifs-v2__right,
.r-tarifs-v2__offer,
.r-tarifs-v2__conditions {
  min-width: 0;
}

.r-tarifs-v2__columns {
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.r-tarifs-v2__title,
.r-tarifs-v2__extensions-title,
.r-tarifs-v2__offer-title,
.r-tarifs-v2__conditions-title,
.r-tarifs-v2__social-proof-title {
  color: var(--r-text-dark);
  overflow-wrap: anywhere;
}

.r-tarifs-v2__intro p,
.r-tarifs-v2__description p,
.r-tarifs-v2__conditions-body p {
  margin-block: 0;
}

.r-tarifs-v2__offer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.r-tarifs-v2__offer--programme {
  border: 1px solid var(--r-orange-a40);
}

.r-tarifs-v2__offer-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.r-tarifs-v2__badge {
  width: fit-content;
  margin: 0;
  padding: 4px 10px;
  border-radius: var(--r-radius-badge);
  background: var(--r-teal-a20);
  color: var(--r-teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.r-tarifs-v2__price {
  margin: 0;
  color: var(--r-orange-dark);
  font-family: var(--r-font-heading);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
}

.r-tarifs-v2__features {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.r-tarifs-v2__feature {
  position: relative;
  padding-left: 20px;
  color: var(--r-text-body);
}

.r-tarifs-v2__feature::before {
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 7px;
  height: 12px;
  border: solid var(--r-teal);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.r-tarifs-v2__condition,
.r-tarifs-v2__launch-note {
  margin: auto 0 0;
  color: var(--r-text-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.r-tarifs-v2__launch-note {
  margin-top: 0;
  color: var(--r-orange-dark);
}

.r-tarifs-v2__conditions {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.r-tarifs-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.r-tarifs-v2__cta {
  text-align: center;
}

.r-tarifs-v2__program {
  padding-block-start: calc(var(--r-section-gap) * 0.75);
}

.r-tarifs-v2__offers .r-tarifs-v2__offer {
  transition: none;
}

.r-tarifs-v2__offers .r-tarifs-v2__offer:hover {
  box-shadow: var(--r-neu-card);
}

.r-tarifs-v2__offers .r-tarifs-v2__offer:focus-within {
  box-shadow: var(--r-neu-card);
}

.r-tarifs-v2__social-proof {
  border-top: 1px solid var(--r-separator);
  padding-top: 18px;
}

/**
 * V2PricingRight child module (#671)
 */

.r-v2-pricing-right,
.r-v2-pricing-right .r-page__content,
.r-v2-pricing-right .r-tarif-feature,
.r-v2-pricing-right .r-tarif-feature__columns,
.r-v2-pricing-right .r-tarif-feature__offer,
.r-v2-pricing-right .r-tarif-feature__accompaniment,
.r-v2-pricing-right .r-tarif-feature__intro,
.r-v2-pricing-right .r-tarif-feature__card,
.r-v2-pricing-right .r-tarif-feature__launch-note,
.r-v2-pricing-right .r-price-block,
.r-v2-pricing-right .r-tarif-grid,
.r-v2-pricing-right .r-tarif-card {
  min-width: 0;
}

.r-v2-pricing-right {
  container-type: inline-size;
}

.r-v2-pricing-right .r-page__content {
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-gutter-md) + var(--r-section-gap));
}

.r-v2-pricing-right .r-tarif-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--r-gutter-md);
  padding: calc(var(--r-card-padding) + var(--r-section-gap));
  border-radius: var(--r-radius-card);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
}

.r-v2-pricing-right .r-tarif-feature__columns {
  display: grid;
  gap: var(--r-gutter-md);
  align-items: start;
}

.r-v2-pricing-right .r-tarif-feature__offer,
.r-v2-pricing-right .r-tarif-feature__accompaniment {
  display: flex;
  flex-direction: column;
  gap: var(--r-gutter-md);
}

.r-v2-pricing-right .r-tarif-feature__accompaniment {
  border-inline-start: 1px solid var(--r-separator);
  padding-inline-start: var(--r-gutter-md);
}

.r-v2-pricing-right .r-tarif-feature__ribbon {
  width: fit-content;
  margin: 0;
  padding: 0;
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.r-v2-pricing-right .r-tarif-feature__intro,
.r-v2-pricing-right .r-tarif-feature__card,
.r-v2-pricing-right .r-price-block,
.r-v2-pricing-right .r-tarif-card {
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) * 1.5);
}

.r-v2-pricing-right .r-tarif-feature__title,
.r-v2-pricing-right .r-tarif-extensions__title,
.r-v2-pricing-right .r-tarif-card__title,
.r-v2-pricing-right .r-social-proof__title {
  margin: 0;
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.r-v2-pricing-right .r-tarif-feature__title {
  padding-inline-end: 0;
  font-size: 1.72rem;
}

.r-v2-pricing-right .r-tarif-feature__desc,
.r-v2-pricing-right .r-tarif-card__desc,
.r-v2-pricing-right .r-price-block__econ {
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  font-weight: 300;
  line-height: 1.55;
}

.r-v2-pricing-right .r-tarif-feature__desc,
.r-v2-pricing-right .r-tarif-feature__desc p,
.r-v2-pricing-right .r-tarif-card__desc,
.r-v2-pricing-right .r-tarif-card__desc p,
.r-v2-pricing-right .r-price-block__econ {
  margin: 0;
}

.r-v2-pricing-right .r-tarif-feature__desc a,
.r-v2-pricing-right .r-tarif-card__desc a,
.r-v2-pricing-right .r-checklist a {
  color: var(--r-teal);
  text-decoration: underline;
  text-underline-offset: calc(var(--r-section-gap) / 4);
}

.r-v2-pricing-right .r-tarif-feature__desc a:hover,
.r-v2-pricing-right .r-tarif-card__desc a:hover,
.r-v2-pricing-right .r-checklist a:hover {
  color: var(--r-teal-dark);
}

.r-v2-pricing-right .r-tarif-feature__offer .r-price-block {
  align-items: flex-start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.r-v2-pricing-right .r-price-block__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: var(--r-section-gap);
}

.r-v2-pricing-right .r-price-block__strike {
  color: var(--r-text-muted);
  font-family: var(--r-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: var(--r-text-muted);
  white-space: nowrap;
}

.r-v2-pricing-right .r-price-block__instead {
  margin: 0;
  color: var(--r-text-muted);
  font-family: var(--r-font-heading);
  font-size: 1rem;
  line-height: 1.3;
}

.r-v2-pricing-right .r-price-block__main {
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.r-v2-pricing-right .r-price-block__offer {
  align-self: flex-start;
  width: fit-content;
  padding: calc(var(--r-section-gap) / 1.5) var(--r-section-gap);
  border-radius: var(--r-radius-input);
  background: var(--r-orange-a20);
  color: var(--r-orange-dark);
  font-family: var(--r-font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.r-v2-pricing-right .r-tarif-feature__launch-note {
  display: grid;
  gap: calc(var(--r-section-gap) / 2);
  padding: var(--r-section-gap);
  border-radius: var(--r-radius-input);
  background: var(--r-orange-a20);
}

.r-v2-pricing-right .r-tarif-feature__launch-label {
  width: fit-content;
  margin: 0;
  padding: calc(var(--r-section-gap) / 2) var(--r-section-gap);
  border-radius: var(--r-radius-input);
  background: var(--r-orange);
  color: var(--r-white);
  font-family: var(--r-font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.r-v2-pricing-right .r-tarif-feature__launch-body {
  margin: 0;
  color: var(--r-text-dark);
  font-family: var(--r-font-body);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.r-v2-pricing-right .r-checklist {
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) * 0.85);
  margin: 0;
  padding: 0;
  list-style: none;
}

.r-v2-pricing-right .r-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--r-section-gap);
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  font-size: 0.94rem;
  line-height: 1.45;
}

.r-v2-pricing-right .r-checklist__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: calc(var(--r-section-gap) / 6);
  border-radius: var(--r-radius-dot);
  background: var(--r-teal-a20);
  color: var(--r-teal-dark);
}

.r-v2-pricing-right .r-checklist__icon svg {
  width: 0.72rem;
  height: 0.72rem;
}

.r-v2-pricing-right .r-tarif-extensions__head {
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) / 2);
  padding-top: calc(var(--r-section-gap) * 1.5);
  border-top: 1px solid var(--r-separator);
}

.r-v2-pricing-right .r-tarif-extensions__eyebrow,
.r-v2-pricing-right .r-tarif-card__tag {
  margin: 0;
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.r-v2-pricing-right .r-tarif-extensions__title {
  font-size: 1.5rem;
}

.r-v2-pricing-right .r-tarif-grid {
  display: grid;
  gap: calc(var(--r-section-gap) * 1.5);
}

.r-v2-pricing-right .r-tarif-card {
  padding: var(--r-card-padding);
  border-radius: var(--r-radius-card);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
  transition: box-shadow var(--r-transition), transform var(--r-transition);
}

.r-v2-pricing-right .r-tarif-card:hover {
  box-shadow: var(--r-neu-card);
  transform: translateY(calc(-1 * var(--r-section-gap) / 4));
}

.r-v2-pricing-right .r-tarif-card__title {
  font-size: 1.3rem;
}

.r-v2-pricing-right .r-tarif-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: calc(var(--r-section-gap) / 3);
  margin: 0;
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.r-v2-pricing-right .r-tarif-card__price--text {
  font-size: 1.85rem;
}

.r-v2-pricing-right .r-tarif-card__price-suffix {
  color: var(--r-text-body);
  font-family: var(--r-font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.r-v2-pricing-right .r-social-proof {
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) * 1.5);
  margin-top: 0;
}

.r-v2-pricing-right .r-social-proof__title {
  font-size: 1.35rem;
}

.r-v2-pricing-right .r-social-proof__widget {
  min-height: calc(var(--r-card-padding) * 3);
}

@container (width >= 48rem) {
  .r-v2-pricing-right .r-tarif-feature__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .r-v2-pricing-right .r-tarif-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Pricing mobile responsive polish (#1152 #1153). */
@media (max-width: 767.98px) {
  .r-v2-pricing-right .r-page__content {
    gap: var(--r-gutter-sm);
  }

  .r-v2-pricing-right .r-tarif-feature {
    padding: var(--r-card-padding);
  }

  .r-v2-pricing-right .r-tarif-feature__accompaniment {
    border-inline-start: 0;
    border-top: 1px solid var(--r-separator);
    padding-inline-start: 0;
    padding-top: var(--r-gutter-md);
  }

  .r-v2-pricing-right .r-tarif-extensions__head,
  .r-v2-pricing-right .r-tarif-grid,
  .r-v2-pricing-right .r-social-proof {
    padding-inline: var(--r-gutter-sm);
  }

  .r-v2-pricing-right .r-social-proof {
    gap: var(--r-section-gap);
  }

  .r-v2-pricing-right .r-social-proof__title {
    margin-block: 0;
  }
}

/**
 * V2PodcastExplorerRight child module (#672)
 */

.r-v2-podcast-explorer-right,
.r-v2-podcast-explorer-right .r-player,
.r-v2-podcast-explorer-right .r-player__body,
.r-v2-podcast-explorer-right .r-player__episode-description,
.r-v2-podcast-explorer-right .r-player__episode-description-body,
.r-v2-podcast-explorer-right .r-player__platforms,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__platform-link,
.r-v2-podcast-explorer-right .r-toolbar,
.r-v2-podcast-explorer-right .r-podcast__grid {
  min-width: 0;
}

.r-v2-podcast-explorer-right {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-gutter-md) + var(--r-section-gap));
  padding-block-start: var(--r-gutter-sm);
  padding-block-end: var(--r-section-gap);
  padding-inline: var(--r-section-gap);
}

.r-v2-podcast-explorer-right .r-player__platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: calc(var(--r-section-gap) * 0.8);
  margin: 0;
  padding-block-start: calc(var(--r-section-gap) * 0.5);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__platform-link {
  display: inline-flex;
  align-items: center;
  min-height: calc(var(--r-card-padding) * 1.8);
  gap: var(--r-section-gap);
  padding: calc(var(--r-section-gap) * 0.7) var(--r-section-gap);
  border-radius: var(--r-radius-pill);
  background: var(--r-bg);
  box-shadow: var(--r-neu-btn-sm);
  font-family: var(--r-font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-decoration: none;
  transition: box-shadow var(--r-transition), color var(--r-transition), transform var(--r-transition);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__platform-link--spotify {
  color: var(--r-green);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__platform-link--apple {
  color: var(--r-purple);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__platform-link--youtube {
  color: var(--r-youtube-red);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__platform-link--youtube .r-v2-podcast-explorer-right__platform-label {
  color: var(--r-youtube-red);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__platform-link:hover,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__platform-link:focus-visible {
  box-shadow: var(--r-neu-btn-hover);
  transform: translateY(calc(-1 * var(--r-section-gap) / 6));
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__platform-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: calc(var(--r-section-gap) * 1.6);
  height: calc(var(--r-section-gap) * 1.6);
  place-items: center;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__platform-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.r-v2-podcast-explorer-right .r-player {
  display: grid;
  gap: var(--r-card-padding);
  padding: calc(var(--r-card-padding) + var(--r-section-gap));
  border-radius: var(--r-radius-card);
  background: var(--r-bg);
  box-shadow: var(--r-neu-card);
  color: var(--r-text-dark);
}

.r-v2-podcast-explorer-right .r-player__cover {
  display: grid;
  min-height: calc(var(--r-card-padding) * 6);
  overflow: hidden;
  border-radius: var(--r-radius-input);
  background: var(--r-teal-a20);
  box-shadow: var(--r-neu-inner);
  place-items: center;
}

.r-v2-podcast-explorer-right .r-player__cover img,
.r-v2-podcast-explorer-right .r-ep__cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r-v2-podcast-explorer-right .r-player__body {
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) * 1.25);
}

.r-v2-podcast-explorer-right .r-player__meta,
.r-v2-podcast-explorer-right .r-player__title,
.r-v2-podcast-explorer-right .r-player__episode-description-title,
.r-v2-podcast-explorer-right .r-player__episode-description-body p,
.r-v2-podcast-explorer-right .r-player__time,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__title,
.r-v2-podcast-explorer-right .r-ep__title,
.r-v2-podcast-explorer-right .r-ep__pitch,
.r-v2-podcast-explorer-right .r-ep__footer,
.r-v2-podcast-explorer-right .r-search-count,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__empty-title,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__empty-body {
  margin: 0;
}

.r-v2-podcast-explorer-right .r-player__meta,
.r-v2-podcast-explorer-right .r-badge,
.r-v2-podcast-explorer-right .r-ep__num,
.r-v2-podcast-explorer-right .r-search-count,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__rss {
  font-family: var(--r-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.r-v2-podcast-explorer-right .r-player__title,
.r-v2-podcast-explorer-right .r-player__episode-description-title,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__title {
  font-family: var(--r-font-heading);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.r-v2-podcast-explorer-right .r-player__title {
  color: var(--r-text-dark);
  font-size: clamp(1.6rem, 6cqw, 2.6rem);
}

.r-v2-podcast-explorer-right .r-player__progress {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--r-section-gap);
}

.r-v2-podcast-explorer-right .r-player__time {
  color: var(--r-text-muted);
  font-size: 0.78rem;
}

.r-v2-podcast-explorer-right .r-player__bar {
  min-height: calc(var(--r-section-gap) * 0.7);
  overflow: hidden;
  border-radius: var(--r-radius-pill);
  background: var(--r-separator);
  cursor: pointer;
}

.r-v2-podcast-explorer-right .r-player__bar-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--r-orange);
  transition: inline-size var(--r-transition);
}

.r-v2-podcast-explorer-right .r-player__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--r-section-gap);
}

.r-v2-podcast-explorer-right .r-player__episode-description {
  display: grid;
  gap: var(--r-section-gap);
  padding: var(--r-card-padding);
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
}

.r-v2-podcast-explorer-right .r-player__episode-description[hidden] {
  display: none;
}

.r-v2-podcast-explorer-right .r-player__episode-description-title {
  color: var(--r-text-dark);
  font-size: 1.25rem;
  scroll-margin-block-start: calc(var(--r-header-h) + var(--r-section-gap) * 2);
}

.r-v2-podcast-explorer-right .r-player__episode-description-title:focus {
  outline: none;
}

.r-v2-podcast-explorer-right .r-player__episode-description-body {
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  line-height: 1.68;
}

.r-v2-podcast-explorer-right .r-player__episode-description-body a {
  position: relative;
  z-index: 1;
  color: var(--r-teal);
  pointer-events: auto;
  text-decoration: underline;
  text-underline-offset: calc(var(--r-section-gap) * 0.25);
}

.r-v2-podcast-explorer-right .r-player__ctrl,
.r-v2-podcast-explorer-right .r-podcast__ep-listen,
.r-v2-podcast-explorer-right .r-ep__cta,
.r-v2-podcast-explorer-right .r-btn--light {
  border: 0;
  font-family: var(--r-font-heading);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition: box-shadow var(--r-transition), color var(--r-transition), transform var(--r-transition);
}

.r-v2-podcast-explorer-right .r-player__ctrl {
  display: inline-grid;
  width: calc(var(--r-card-padding) * 2.2);
  height: calc(var(--r-card-padding) * 2.2);
  padding: 0;
  border-radius: 50%;
  background: var(--r-bg);
  color: var(--r-teal-dark);
  box-shadow: var(--r-neu-btn);
  cursor: pointer;
  place-items: center;
}

.r-v2-podcast-explorer-right .r-player[data-state="playing"] .r-player__ctrl,
.r-v2-podcast-explorer-right .r-player__ctrl:active {
  color: var(--r-teal);
  box-shadow: var(--r-neu-btn-active);
}

.r-v2-podcast-explorer-right .r-player__ctrl:disabled {
  color: var(--r-text-muted);
  cursor: not-allowed;
  opacity: 0.55;
}

.r-v2-podcast-explorer-right .r-player__ctrl svg {
  width: 1.35rem;
  height: 1.35rem;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__rss {
  color: var(--r-orange-dark);
  font-family: var(--r-font-heading);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: calc(var(--r-section-gap) / 3);
}

.r-v2-podcast-explorer-right .r-btn--light--blue {
  color: var(--r-teal-dark);
}

.r-v2-podcast-explorer-right .r-btn--light--purple {
  color: var(--r-purple);
}

.r-v2-podcast-explorer-right .r-btn--light--teal {
  color: var(--r-teal-dark);
}

.r-v2-podcast-explorer-right .r-btn--light--teal-dark {
  color: var(--r-teal-dark);
}

.r-v2-podcast-explorer-right .r-btn--light--orange,
.r-v2-podcast-explorer-right .r-btn--light--amber {
  color: var(--r-orange-dark);
}

.r-v2-podcast-explorer-right .r-btn--light--green {
  color: var(--r-green);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__episodes {
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) * 1.5);
}

.r-v2-podcast-explorer-right .r-toolbar {
  display: grid;
  gap: var(--r-section-gap);
  align-items: end;
}

.r-v2-podcast-explorer-right .r-search {
  display: flex;
  align-items: center;
  min-height: calc(var(--r-card-padding) * 2.1);
  gap: calc(var(--r-section-gap) * 0.75);
  padding: calc(var(--r-section-gap) * 0.8) var(--r-section-gap);
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
  color: var(--r-text-body);
}

.r-v2-podcast-explorer-right .r-search__icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.2rem;
  color: var(--r-teal-dark);
  place-items: center;
}

.r-v2-podcast-explorer-right .r-search__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.r-v2-podcast-explorer-right .r-search__input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--r-text-dark);
  font: inherit;
  outline: none;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter {
  position: relative;
  z-index: calc(var(--r-z-nav) + 1);
  min-width: 0;
  overflow: visible;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__search,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-select,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-trigger {
  width: 100%;
  min-width: 0;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-select,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-trigger {
  min-height: calc(var(--r-card-padding) * 2.1);
  padding: calc(var(--r-section-gap) * 0.8) var(--r-section-gap);
  border: 1px solid var(--r-teal-a20);
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  background-image: none;
  box-shadow: var(--r-neu-inner);
  color: var(--r-teal);
  font: inherit;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  appearance: none;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--r-section-gap) * 0.75);
  cursor: pointer;
  text-align: left;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-trigger:focus-visible {
  outline: 2px solid var(--r-teal);
  outline-offset: 2px;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-current {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-chevron {
  flex: 0 0 auto;
  color: var(--r-teal-dark);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-chevron::before {
  content: "\25be";
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-panel {
  position: absolute;
  inset-block-start: calc(100% + (var(--r-section-gap) / 2));
  inset-inline: 0;
  z-index: calc(var(--r-z-nav) + 2);
  display: grid;
  gap: calc(var(--r-section-gap) / 2);
  width: 100%;
  max-height: min(calc(var(--r-section-gap) * 20), calc(100dvh - (var(--r-section-gap) * 8)));
  padding: calc(var(--r-section-gap) / 2);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--r-teal-a20);
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: var(--r-neu-card-hover);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-panel[hidden] {
  display: none;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-panel .r-section-catalogue__filter-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(var(--r-section-gap) * 2.5);
  padding: calc(var(--r-section-gap) * 0.65) calc(var(--r-section-gap) * 0.8);
  border: 0;
  border-radius: var(--r-radius-btn);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-panel .r-section-catalogue__filter-option:hover,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-panel .r-section-catalogue__filter-option:focus-visible,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-option--active {
  background: var(--r-teal-a20);
  color: var(--r-teal-dark);
  outline: none;
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-select option {
  color: var(--r-text-dark);
  background: var(--r-bg);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-option--all {
  color: var(--r-catalogue-analyse);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-option--recit,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-option--hors-serie {
  color: var(--r-purple);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-option--interview {
  color: var(--r-teal-dark);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__toolbar .r-section-catalogue__filter-option--analyse {
  color: var(--r-orange-dark);
}

.r-v2-podcast-explorer-right .r-search-count {
  color: var(--r-text-muted);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__title {
  color: var(--r-text-dark);
  font-size: 1.65rem;
}

.r-v2-podcast-explorer-right .r-podcast__grid {
  display: grid;
  gap: calc(var(--r-section-gap) * 1.5);
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.r-v2-podcast-explorer-right .r-ep {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) * 1.2);
  height: 100%;
  min-width: 0;
  padding: var(--r-card-padding);
  overflow: hidden;
  border-radius: var(--r-radius-card);
  background: var(--r-bg);
  box-shadow: var(--r-neu-card);
  cursor: pointer;
  transition: box-shadow var(--r-transition), transform var(--r-transition);
}

.r-v2-podcast-explorer-right .r-ep:hover,
.r-v2-podcast-explorer-right .r-ep:focus-within,
.r-v2-podcast-explorer-right .r-ep.is-active {
  box-shadow: var(--r-neu-card-hover);
  transform: translateY(calc(-1 * var(--r-section-gap) / 4));
}

.r-v2-podcast-explorer-right .r-ep__cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--r-radius-input);
  background: var(--r-teal-a20);
}

.r-v2-podcast-explorer-right .r-ep__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--r-section-gap);
}

.r-v2-podcast-explorer-right .r-ep__footer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--r-section-gap);
}

.r-v2-podcast-explorer-right .r-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: calc(var(--r-section-gap) / 2) var(--r-section-gap);
  border-radius: var(--r-radius-badge);
}

.r-v2-podcast-explorer-right .r-badge--teal,
.r-v2-podcast-explorer-right .r-badge--teal-dark {
  background: var(--r-teal-a20);
  color: var(--r-teal-dark);
}

.r-v2-podcast-explorer-right .r-badge--orange,
.r-v2-podcast-explorer-right .r-badge--amber {
  background: var(--r-orange-a20);
  color: var(--r-orange-dark);
}

.r-v2-podcast-explorer-right .r-badge--green {
  background: var(--r-green-a20);
  color: var(--r-green);
}

.r-v2-podcast-explorer-right .r-badge--purple {
  background: color-mix(in srgb, var(--r-purple) 18%, transparent);
  color: var(--r-purple);
}

.r-v2-podcast-explorer-right .r-ep__num {
  color: var(--r-text-muted);
}

.r-v2-podcast-explorer-right .r-ep__title {
  color: var(--r-text-dark);
  display: -webkit-box;
  font-family: var(--r-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.28;
  overflow: hidden;
  overflow-wrap: anywhere;
  padding-block-end: calc(var(--r-section-gap) * 0.2);
  -webkit-box-orient: vertical;
}

.r-v2-podcast-explorer-right .r-ep__pitch {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  line-height: 1.68;
  padding-block-end: calc(var(--r-section-gap) * 0.25);
}

.r-v2-podcast-explorer-right .r-ep__title {
  -webkit-line-clamp: 2;
}

.r-v2-podcast-explorer-right .r-ep__pitch,
.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__empty-body {
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  line-height: 1.55;
}

.r-v2-podcast-explorer-right .r-ep__pitch {
  -webkit-line-clamp: 3;
}

.r-v2-podcast-explorer-right .r-ep__footer {
  min-width: 0;
  margin-top: auto;
}

.r-v2-podcast-explorer-right .r-ep__cta,
.r-v2-podcast-explorer-right .r-btn--light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(var(--r-card-padding) * 1.8);
  padding: calc(var(--r-section-gap) * 0.75) calc(var(--r-section-gap) * 1.5);
  border-radius: var(--r-radius-btn);
  background: var(--r-bg);
  color: var(--r-orange-dark);
  box-shadow: var(--r-neu-btn);
  cursor: pointer;
}

.r-v2-podcast-explorer-right .r-podcast__ep-listen {
  align-self: flex-start;
  border: 1px solid var(--r-teal);
  border-color: var(--r-teal);
  color: var(--r-teal);
  text-align: center;
}

.r-v2-podcast-explorer-right .r-podcast__ep-listen:hover,
.r-v2-podcast-explorer-right .r-podcast__ep-listen:focus-visible,
.r-v2-podcast-explorer-right .r-ep__cta:hover,
.r-v2-podcast-explorer-right .r-ep__cta:focus-visible,
.r-v2-podcast-explorer-right .r-btn--light:hover,
.r-v2-podcast-explorer-right .r-btn--light:focus-visible,
.r-v2-podcast-explorer-right .r-player__ctrl:hover,
.r-v2-podcast-explorer-right .r-player__ctrl:focus-visible {
  box-shadow: var(--r-neu-btn-hover);
  transform: translateY(calc(-1 * var(--r-section-gap) / 6));
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__empty {
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) / 2);
  padding: var(--r-card-padding);
  border-radius: var(--r-radius-card);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
}

.r-v2-podcast-explorer-right .r-v2-podcast-explorer-right__empty-title {
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0;
}

.r-v2-podcast-explorer-right .is-hidden {
  display: none;
}

@container (width >= 42rem) {
  .r-v2-podcast-explorer-right .r-player {
    grid-template-columns: minmax(12rem, 0.32fr) minmax(0, 1fr);
    align-items: center;
  }

  .r-v2-podcast-explorer-right .r-toolbar {
    grid-template-columns: minmax(16rem, 1fr) minmax(10rem, auto) minmax(10rem, auto);
  }

  .r-v2-podcast-explorer-right .r-podcast__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width >= 1024px) {
  .r-tarifs-v2__columns {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    min-height: calc(100dvh - var(--r-chrome-h) - var(--r-admin-bar-h) - (var(--r-gutter-lg) * 2));
    align-items: center;
  }

  .r-tarifs-v2__left {
    position: sticky;
    top: calc(var(--r-admin-bar-h) + var(--r-header-h) + var(--r-gutter-lg));
    align-self: start;
  }
}

/**
 * Accueil V2 module (#595)
 */

.r-accueil-v2 {
  --r-accueil-v2-sticky-top: calc(var(--r-admin-bar-h) + var(--r-header-h) + var(--r-section-gap));
}

.r-accueil-v2__inner,
.r-accueil-v2__layout,
.r-accueil-v2__hero,
.r-accueil-v2__right,
.r-accueil-v2__section,
.r-accueil-v2__card {
  min-width: 0;
}

.r-accueil-v2__layout {
  display: grid;
  gap: var(--r-gutter-md);
  align-items: start;
}

.r-accueil-v2__hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--r-gutter-sm);
}

.r-accueil-v2__title {
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) / 2);
  color: var(--r-text-dark);
  overflow-wrap: anywhere;
}

.r-accueil-v2__title em {
  color: var(--r-teal);
  font-style: normal;
}

.r-accueil-v2__tagline,
.r-accueil-v2__lead,
.r-accueil-v2__section-lead,
.r-accueil-v2__card-body,
.r-accueil-v2__card-accent {
  margin: 0;
}

.r-accueil-v2__tagline {
  color: var(--r-orange-dark);
  font-family: var(--r-font-heading);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  line-height: 1.35;
}

.r-accueil-v2__lead strong {
  color: var(--r-text-dark);
  font-weight: 700;
}

.r-accueil-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--r-section-gap) / 1.5);
}

.r-accueil-v2__cta {
  text-align: center;
}

.r-accueil-v2__right {
  display: flex;
  flex-direction: column;
  gap: var(--r-gutter-sm);
}

.r-accueil-v2__right-title,
.r-accueil-v2__section-title,
.r-accueil-v2__card-title {
  color: var(--r-text-dark);
  overflow-wrap: anywhere;
}

.r-accueil-v2__stepper {
  z-index: var(--r-z-nav);
  padding-block: calc(var(--r-section-gap) / 2);
  background: var(--r-bg);
}

.r-accueil-v2__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(var(--r-section-gap) / 2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.r-accueil-v2__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: calc(var(--r-section-gap) * 3);
  gap: calc(var(--r-section-gap) / 2);
  padding: calc(var(--r-section-gap) / 2) var(--r-section-gap);
  border-radius: var(--r-radius-pill);
  background: var(--r-bg);
  box-shadow: var(--r-neu-btn-sm);
  color: var(--r-text-body);
  font-family: var(--r-font-heading);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  transition: box-shadow var(--r-transition), color var(--r-transition);
}

.r-accueil-v2__step:hover,
.r-accueil-v2__step:focus-visible,
.r-accueil-v2__step--active,
.r-accueil-v2__step[aria-selected="true"] {
  box-shadow: var(--r-neu-inner);
  color: var(--r-orange-dark);
}

.r-accueil-v2__step-number {
  color: var(--r-teal-dark);
  font-size: 0.78rem;
}

.r-accueil-v2__step-label {
  overflow-wrap: anywhere;
}

.r-accueil-v2__sections {
  display: flex;
  flex-direction: column;
  gap: var(--r-gutter-md);
}

.r-accueil-v2__section {
  scroll-margin-top: calc(var(--r-accueil-v2-sticky-top) + (var(--r-section-gap) * 5));
}

.r-accueil-v2__section:focus {
  outline: none;
}

.r-accueil-v2__section:focus-visible {
  border-radius: var(--r-radius-card);
  box-shadow: var(--r-neu-inner);
}

.r-accueil-v2__section-header {
  display: grid;
  gap: calc(var(--r-section-gap) / 2);
  margin-bottom: var(--r-section-gap);
}

.r-accueil-v2__section-kicker,
.r-accueil-v2__card-eyebrow {
  margin: 0;
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.r-accueil-v2__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--r-section-gap);
}

.r-accueil-v2__card {
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) / 2);
}

.r-accueil-v2__card-title,
.r-accueil-v2__card-accent {
  margin: 0;
}

.r-accueil-v2__card-accent {
  color: var(--r-orange-dark);
  font-family: var(--r-font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.r-accueil-v2__tags {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--r-section-gap) / 2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.r-accueil-v2__tag {
  padding: calc(var(--r-section-gap) / 4) calc(var(--r-section-gap) / 2);
  border-radius: var(--r-radius-pill);
  background: var(--r-teal-a20);
  color: var(--r-teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.r-accueil-v2__card-cta {
  width: fit-content;
  margin-top: auto;
}

.r-accueil-v2__social-proof {
  min-height: calc(var(--r-section-gap) * 3);
  border-top: 1px solid var(--r-separator);
}

@media (width >= 768px) {
  .r-accueil-v2__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .r-accueil-v2__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width >= 1024px) {
  .r-accueil-v2__layout {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: var(--r-gutter-lg);
  }

  .r-accueil-v2__hero {
    position: sticky;
    top: var(--r-accueil-v2-sticky-top);
    min-height: calc(100dvh - var(--r-accueil-v2-sticky-top) - var(--r-gutter-lg));
    align-self: start;
  }

  .r-accueil-v2__stepper {
    position: sticky;
    top: var(--r-accueil-v2-sticky-top);
  }

  .r-accueil-v2__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .r-accueil-v2__step {
    transition: none;
  }
}

/* Global V2 chrome behaviour. */
.et-boc > header.et-l--header {
  position: sticky;
  /*
   * WordPress already offsets logged-in views through body.admin-bar
   * padding. Applying --r-admin-bar-h here doubles that offset and lets
   * the page shell start behind the visible header.
   */
  top: 0;
  z-index: var(--r-z-nav);
}

.et-boc > .et-l--footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--r-z-nav);
  background: var(--r-bg);
}

.et-boc > #et-main-area {
  padding-bottom: var(--r-footer-h);
}

body.r-v2--landing-page .et-boc > header.et-l--header,
body.r-v2--landing-page .r-header,
body.r-v2--landing-page .r-footer__launch,
body.r-v2--landing-page .r-v2__mini-player {
  display: none;
}

body.r-v2--no-global-chrome .et-boc > header.et-l--header,
body.r-v2--no-global-chrome .et-boc > .et-l--footer,
body.r-v2--no-global-chrome .r-header,
body.r-v2--no-global-chrome .r-footer,
body.r-v2--no-global-chrome .r-footer__launch,
body.r-v2--no-global-chrome .r-v2__mini-player,
body.r-page--linktree .et-boc > header.et-l--header,
body.r-page--linktree .et-boc > .et-l--footer,
body.r-page--linktree .r-header,
body.r-page--linktree .r-footer,
body.r-page--linktree .r-footer__launch,
body.r-page--linktree .r-v2__mini-player {
  display: none;
}

body.r-no-launch-banner .r-footer__launch,
body.r-no-mini-player .r-v2__mini-player {
  display: none;
}

body.r-v2--no-global-chrome .et-boc > #et-main-area,
body.r-page--linktree .et-boc > #et-main-area {
  padding-bottom: 0;
}

.r-header {
  min-height: var(--r-header-h);
}

.r-header__burger,
.r-header__cta,
.r-footer__launch-link,
.r-footer__launch-close,
.r-footer__dropdown-trigger,
.r-footer__dropdown-link,
.r-footer__quick-link,
.r-v2__mini-player button,
.r-v2__mini-player a {
  touch-action: manipulation;
}

.r-header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: calc(var(--r-section-gap) * 3);
  height: calc(var(--r-section-gap) * 3);
  padding: 0;
  border: 0;
  border-radius: var(--r-radius-btn);
  background: var(--r-bg);
  box-shadow: var(--r-neu-btn-sm);
  color: var(--r-teal);
  cursor: pointer;
  gap: calc(var(--r-section-gap) / 4);
}

.r-header__burger span {
  display: block;
  width: var(--r-section-gap);
  height: 1px;
  border-radius: var(--r-radius-dot);
  background: currentcolor;
}

.r-header__ctas {
  display: flex;
  align-items: center;
  gap: calc(var(--r-section-gap) / 2);
}

.r-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(var(--r-section-gap) * 3);
  padding-inline: var(--r-section-gap);
  border-radius: var(--r-radius-btn);
  background: var(--r-bg);
  box-shadow: var(--r-neu-btn-sm);
  color: var(--r-teal-dark);
  font-family: var(--r-font-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.r-header__cta:hover,
.r-header__cta:focus-visible {
  box-shadow: var(--r-neu-btn-hover);
  color: var(--r-teal);
}

.r-header__cta--exchange {
  color: var(--r-orange);
  box-shadow: var(--r-neu-btn);
}

.r-header__cta--exchange:hover,
.r-header__cta--exchange:focus-visible {
  color: var(--r-orange);
}

.r-header__cta--order {
  color: var(--r-orange);
  box-shadow: var(--r-neu-btn);
}

.r-header__cta--order:hover,
.r-header__cta--order:focus-visible {
  color: var(--r-orange);
}

.r-footer--v2 {
  position: relative;
  text-align: left;
  z-index: var(--r-z-nav);
  /* isolation removed (#1016/wave6): isolate would clamp the dropdown
     panel inside the footer's local stacking context, so the mini-player
     and other overlay-tier siblings could paint over the open panel even
     when the panel had z-index var(--r-z-skip). */
}

.r-footer.r-footer--v2[data-r-v2-dropdown-open="true"] {
  z-index: var(--r-z-skip);
}

/*
 * Hide the floating podcast mini-player while any footer dropdown panel
 * is open. The mini-player and the panel share screen real estate at the
 * bottom-left of the viewport, and even with the panel raised to
 * var(--r-z-skip) and the player pushed to z-index 0 the browser keeps
 * painting the player above the panel (the player owns its own fixed
 * stacking context, which leaks through the footer's). Hiding it cleanly
 * is the simplest fix and matches the burger-menu approach.
 */
body:has(.r-footer__dropdown[data-r-v2-dropdown-open="true"]) .r-v2__mini-player,
body:has(.r-header--menu-open) .r-v2__mini-player {
  display: none;
}

.r-footer__launch {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: calc(var(--r-section-gap) / 2);
  padding: calc(var(--r-section-gap) / 4) var(--r-gutter-lg);
  border-top: 1px solid var(--r-separator);
  background: color-mix(in srgb, var(--r-bg) 72%, var(--r-teal-light));
  z-index: var(--r-z-nav);
}

.r-footer__launch[hidden] {
  display: none;
}

.r-footer__launch-tag,
.r-footer__launch-copy,
.r-footer__launch-link {
  font-family: var(--r-font-heading);
  line-height: 1.25;
}

.r-footer__launch-tag {
  color: var(--r-orange);
  font-size: 11px;
  font-weight: 700;
}

.r-footer__launch-copy {
  min-width: 0;
  color: var(--r-text-dark);
  font-size: 12px;
  font-weight: 700;
}

.r-footer__launch-link {
  color: var(--r-teal-dark);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.r-footer__launch-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--r-section-gap) * 2);
  height: calc(var(--r-section-gap) * 2);
  padding: 0;
  border: 0;
  border-radius: var(--r-radius-dot);
  background: transparent;
  box-shadow: none;
  color: var(--r-text-muted);
  cursor: pointer;
}

.r-footer__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--r-section-gap);
  padding: calc(var(--r-section-gap) / 2) var(--r-gutter-lg);
  background: var(--r-bg);
}

.r-footer__bar-left,
.r-footer__bar-right {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: calc(var(--r-section-gap) * 0.85);
}

.r-footer__bar-left {
  justify-self: start;
}

.r-footer__bar-right {
  justify-self: end;
}

.r-footer__copyright {
  justify-self: start;
  margin: 0;
  color: var(--r-text-body);
  font-family: var(--r-font-heading);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.r-footer__menus,
.r-footer__quick-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: calc(var(--r-section-gap) * 0.85);
}

.r-footer__menus--left {
  justify-self: start;
}

.r-footer__menus--language {
  justify-self: end;
}

.r-footer__quick-actions {
  justify-self: end;
}

.r-footer__dropdown {
  position: relative;
}

.r-footer__dropdown--space {
  display: none;
}

.r-footer__dropdown-label {
  white-space: nowrap;
}

.r-footer__dropdown[data-r-v2-dropdown-open="true"] {
  z-index: var(--r-z-skip);
}

.r-footer__dropdown-trigger,
.r-footer__quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--r-section-gap) * 0.375);
  min-height: calc(var(--r-section-gap) * 2.5);
  padding-inline: calc(var(--r-section-gap) * 0.75);
  border: 0;
  border-radius: var(--r-radius-input);
  background: transparent;
  box-shadow: none;
  color: var(--r-text-body);
  cursor: pointer;
  font-family: var(--r-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
}

.r-footer__dropdown-caret {
  display: inline-block;
  width: calc(var(--r-section-gap) / 3);
  height: calc(var(--r-section-gap) / 3);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-15%) rotate(45deg);
}

.r-footer__dropdown-trigger:hover,
.r-footer__dropdown-trigger:focus-visible,
.r-footer__quick-link:hover,
.r-footer__quick-link:focus-visible {
  color: var(--r-teal-dark);
}

.r-footer__dropdown-panel {
  position: absolute;
  right: 50%;
  bottom: calc(100% + var(--r-section-gap));
  display: grid;
  min-width: 11rem;
  max-width: 16rem;
  width: max-content;
  gap: calc(var(--r-section-gap) / 3);
  padding: var(--r-section-gap);
  border: 1px solid var(--r-separator);
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: none;
  transform: translateX(50%);
  z-index: var(--r-z-skip);
}

.r-footer__dropdown[data-r-v2-dropdown-open="true"] .r-footer__dropdown-panel {
  z-index: calc(var(--r-z-skip) + 1);
}

.r-footer__dropdown-panel[hidden] {
  display: none;
}

.r-footer__dropdown-link,
.r-footer__dropdown-link--disabled {
  display: block;
  padding: calc(var(--r-section-gap) / 2) var(--r-section-gap);
  border-radius: var(--r-radius-pill);
  color: var(--r-text-body);
  font-family: var(--r-font-heading);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.r-footer__dropdown-link:hover,
.r-footer__dropdown-link:focus-visible,
.r-footer__dropdown-link[aria-current="true"] {
  color: var(--r-teal-dark);
  background: color-mix(in srgb, var(--r-bg) 75%, var(--r-teal-light));
  box-shadow: none;
}

.r-footer__dropdown-link--disabled {
  color: var(--r-text-muted);
}

.r-footer__dropdown-link--disabled:hover,
.r-footer__dropdown-link--disabled:focus-visible {
  color: var(--r-text-muted);
  box-shadow: none;
}

.r-v2__mini-player {
  position: fixed;
  right: auto;
  bottom: calc(var(--r-footer-h) + var(--r-section-gap));
  left: var(--r-gutter-sm);
  z-index: var(--r-z-overlay);
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  width: max-content;
  max-width: calc(100vw - (var(--r-gutter-sm) * 2));
  gap: calc(var(--r-section-gap) / 2);
  padding: calc(var(--r-section-gap) / 2);
  border: 1px solid var(--r-separator);
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: var(--r-neu-card);
  color: var(--r-text-body);
}

.r-v2__mini-player[hidden] {
  display: none;
}

.r-v2__mini-player-toggle,
.r-v2__mini-player-open,
.r-v2__mini-player-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--r-section-gap) * 3);
  height: calc(var(--r-section-gap) * 3);
  padding: 0;
  border: 0;
  border-radius: var(--r-radius-btn);
  background: var(--r-bg);
  box-shadow: var(--r-neu-btn-sm);
  color: var(--r-teal-dark);
  cursor: pointer;
  text-decoration: none;
}

.r-v2__mini-player-toggle:hover,
.r-v2__mini-player-toggle:focus-visible,
.r-v2__mini-player-open:hover,
.r-v2__mini-player-open:focus-visible,
.r-v2__mini-player-close:hover,
.r-v2__mini-player-close:focus-visible {
  color: var(--r-teal);
  box-shadow: var(--r-neu-btn-hover);
}

.r-v2__mini-player-icon {
  width: 0;
  height: 0;
  border-block: calc(var(--r-section-gap) / 2) solid transparent;
  border-left: calc(var(--r-section-gap) * 0.85) solid currentcolor;
  margin-left: calc(var(--r-section-gap) / 4);
}

.r-v2__mini-player--playing .r-v2__mini-player-icon {
  width: var(--r-section-gap);
  height: var(--r-section-gap);
  border: 0;
  border-inline: calc(var(--r-section-gap) / 4) solid currentcolor;
  margin-left: 0;
}

/* Header mobile full-viewport menu contract (#1131). */
@media (width < 768px) {
  .r-header {
    padding-inline: calc(var(--r-gutter-sm) * 0.75);
    padding-block: calc(var(--r-section-gap) * 0.375);
  }

  .r-header__logo svg,
  .r-header__logo-img {
    height: 20px;
  }

  .r-header__actions {
    gap: calc(var(--r-section-gap) / 3);
  }

  .r-header__burger {
    display: inline-flex;
    position: relative;
    z-index: var(--r-z-skip);
  }

  .r-header__actions {
    position: static;
  }

  .r-header__nav,
  .r-header__ctas {
    display: none;
  }

  .r-header--menu-open .r-header__nav,
  [data-r-v2-header-portaled="true"].r-header__nav {
    position: fixed;
    /* Header mobile menu height limit contract (#1156). */
    top: calc(var(--r-header-h) + (var(--r-section-gap) / 2) + env(safe-area-inset-top));
    inset-inline: var(--r-gutter-sm);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: calc(var(--r-section-gap) / 3);
    box-sizing: border-box;
    width: auto;
    height: auto;
    min-height: 0;
    max-height: calc(100dvh - var(--r-header-h) - var(--r-footer-h) - (var(--r-section-gap) * 2) - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    padding: calc(var(--r-section-gap) / 2);
    border: 0;
    border-radius: var(--r-radius-card);
    background: var(--r-bg);
    box-shadow: var(--r-neu-card);
    overflow-y: visible;
    overscroll-behavior: contain;
    z-index: var(--r-z-skip);
  }

  .r-header--menu-open .r-header__ctas,
  [data-r-v2-header-portaled="true"].r-header__ctas {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: calc(var(--r-section-gap) / 3);
    box-sizing: border-box;
    width: 100%;
    max-height: none;
    padding: 0;
    border-block-start: 0;
    background: transparent;
    box-shadow: none;
    overflow-y: visible;
    overscroll-behavior: contain;
    z-index: auto;
  }

  /* Inside burger panel: drop floating label positioning and render
     each item as a horizontal icon+label row (list-style). */
  .r-header--menu-open .r-header__nav .r-nav-btn__label,
  .r-header--menu-open .r-header__ctas .r-nav-btn__label,
  [data-r-v2-header-portaled="true"] .r-nav-btn.r-nav-btn--svg .r-nav-btn__label,
  [data-r-v2-header-portaled="true"] .r-nav-btn .r-nav-btn__label {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    margin-inline-start: calc(var(--r-section-gap) / 2);
    font-size: 14px;
    white-space: nowrap;
    color: var(--r-text-dark);
    font-family: var(--r-font-body);
    font-weight: 500;
    line-height: 1.2;
    pointer-events: none;
  }

  .r-header--menu-open .r-header__nav .r-nav-btn--svg,
  .r-header--menu-open .r-header__ctas .r-nav-btn--svg,
  [data-r-v2-header-portaled="true"] .r-nav-btn.r-nav-btn--svg,
  [data-r-v2-header-portaled="true"] .r-header__cta {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 36px;
    border-radius: var(--r-radius-input);
    padding: calc(var(--r-section-gap) / 4) calc(var(--r-section-gap) / 1.5);
    background: var(--r-bg);
    box-shadow: var(--r-neu-btn-sm);
    color: var(--r-text-dark);
  }

  [data-r-v2-header-portaled="true"] .r-nav-btn--action,
  [data-r-v2-header-portaled="true"] .r-nav-btn--action svg {
    color: var(--r-orange);
    stroke: var(--r-orange);
  }

  .r-header--menu-open .r-header__nav .r-nav-btn--svg:hover,
  .r-header--menu-open .r-header__nav .r-nav-btn--svg:focus-visible,
  .r-header--menu-open .r-header__ctas .r-nav-btn--svg:hover,
  .r-header--menu-open .r-header__ctas .r-nav-btn--svg:focus-visible,
  [data-r-v2-header-portaled="true"] .r-nav-btn.r-nav-btn--svg:hover,
  [data-r-v2-header-portaled="true"] .r-nav-btn.r-nav-btn--svg:focus-visible,
  [data-r-v2-header-portaled="true"] .r-header__cta:hover,
  [data-r-v2-header-portaled="true"] .r-header__cta:focus-visible {
    color: var(--r-orange);
    box-shadow: var(--r-neu-btn-hover);
  }

  [data-r-v2-header-portaled="true"] .r-nav-btn.r-nav-btn--svg svg,
  [data-r-v2-header-portaled="true"] .r-header__cta svg {
    color: currentcolor;
  }

  .r-header__cta {
    min-height: calc(var(--r-section-gap) * 2.75);
    padding-inline: calc(var(--r-section-gap) / 1.5);
    font-size: 13px;
  }

  /* Lock body scroll while menu is open so the panel stays in view */
  .r-header--menu-open ~ * .r-v2-shell,
  body:has(.r-header--menu-open) {
    overflow: hidden;
  }

  .r-footer__launch {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: var(--r-gutter-sm);
  }

  .r-footer__launch-tag,
  .r-footer__launch-copy,
  .r-footer__launch-link {
    grid-column: 1;
  }

  .r-footer__launch-close {
    grid-column: 2;
    grid-row: 1;
  }

  .r-footer__bar {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    padding-inline: var(--r-gutter-sm);
  }

  .r-footer__bar-left,
  .r-footer__bar-right {
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .r-footer__copyright,
  .r-footer__menus,
  .r-footer__quick-actions {
    justify-self: center;
  }

  .r-footer__menus,
  .r-footer__quick-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .r-footer__quick-actions {
    display: none;
  }

  .r-footer__dropdown--space {
    display: block;
  }

  .r-footer__dropdown-panel {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .r-v2__mini-player {
    right: var(--r-gutter-sm);
    width: auto;
  }
}

/* Footer responsive single-line contract (#1024). */
@media (max-width: 1023.98px) {
  .r-footer__bar {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    justify-content: center;
    justify-items: initial;
    flex-wrap: nowrap;
    gap: calc(var(--r-section-gap) / 5);
    padding-block: calc(var(--r-section-gap) / 4);
    padding-inline: calc(var(--r-gutter-sm) / 2);
  }

  .r-footer__bar-left,
  .r-footer__bar-right {
    flex: 0 1 auto;
    justify-self: initial;
    flex-wrap: nowrap;
    justify-content: center;
    min-width: 0;
    gap: calc(var(--r-section-gap) / 5);
  }

  .r-footer__menus {
    min-width: 0;
    flex: 0 1 auto;
    flex-wrap: nowrap;
    justify-content: center;
    gap: calc(var(--r-section-gap) / 5);
  }

  .r-footer__dropdown-label {
    white-space: nowrap;
  }

  .r-footer__copyright,
  .r-footer__quick-actions {
    display: none;
  }

  .r-footer__dropdown--space {
    display: block;
  }

  .r-footer__dropdown-trigger {
    min-height: calc(var(--r-section-gap) * 1.75);
    padding-inline: calc(var(--r-section-gap) / 4);
    font-size: 11px;
    letter-spacing: 0;
  }
}

/* Footer mobile ultra-compact contract (#1024). */
@media (max-width: 767.98px) {
  .r-footer__bar {
    display: flex;
    flex-wrap: nowrap;
    gap: calc(var(--r-section-gap) / 6);
    padding-block: calc(var(--r-section-gap) / 4);
    padding-inline: calc(var(--r-gutter-sm) / 2);
  }

  .r-footer__bar-left,
  .r-footer__bar-right {
    flex-wrap: nowrap;
    gap: calc(var(--r-section-gap) / 6);
  }

  .r-footer__menus {
    flex-wrap: nowrap;
    gap: calc(var(--r-section-gap) / 6);
  }

  .r-footer__copyright,
  .r-footer__quick-actions {
    display: none;
  }

  .r-footer__dropdown-trigger {
    min-height: calc(var(--r-section-gap) * 1.5);
    padding-inline: calc(var(--r-section-gap) / 5);
    font-size: 11px;
    letter-spacing: 0;
  }

  /* Footer mobile dropdown viewport contract (#1132). */
  .r-footer__dropdown-panel {
    left: 0;
    right: auto;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    height: auto;
    max-height: none;
    overflow-y: visible;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .r-header__logo svg,
  .r-header__logo-img,
  .r-header__cta,
  .r-footer a,
  .r-footer__dropdown-trigger,
  .r-v2__mini-player,
  .r-v2__mini-player button,
  .r-v2__mini-player a {
    transition: none;
  }
}

/**
 * Compas V2 module (#597)
 */

.r-compasv2__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--r-gutter-lg);
  align-items: start;
}

.r-compasv2__intro,
.r-compasv2__content,
.r-compasv2__questions {
  min-width: 0;
}

.r-compasv2__title,
.r-compasv2__results-title,
.r-compasv2__question-title {
  color: var(--r-text-dark);
  overflow-wrap: anywhere;
}

.r-compasv2__title em {
  display: block;
  color: var(--r-teal);
  font-style: normal;
}

.r-compasv2__lead p {
  margin-block: 0;
  text-align: justify;
}

.r-compasv2__actions,
.r-compasv2__toolbar,
.r-compasv2__results-head {
  display: flex;
  align-items: center;
  gap: var(--r-section-gap);
}

.r-compasv2__actions {
  flex-wrap: wrap;
}

.r-compasv2__toolbar {
  flex-wrap: wrap;
  margin-bottom: var(--r-section-gap);
}

.r-compasv2__search-field {
  flex: 1 1 260px;
  min-width: min(100%, 260px);
}

.r-compasv2__search {
  width: 100%;
  min-height: calc(var(--r-section-gap) * 4);
  padding-inline: var(--r-section-gap);
  border: 0;
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
  color: var(--r-text-dark);
  font-family: var(--r-font-body);
}

.r-compasv2__search:focus-visible {
  outline: 2px solid var(--r-teal);
  outline-offset: 2px;
}

.r-compasv2__theme {
  position: relative;
  flex: 0 1 auto;
}

.r-compasv2__theme-trigger,
.r-compasv2__theme-option,
.r-compasv2__results-close,
.r-compasv2__category-card {
  cursor: pointer;
}

.r-compasv2__theme-trigger,
.r-compasv2__results-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(var(--r-section-gap) * 4);
  border: 0;
  border-radius: var(--r-radius-btn);
  background: var(--r-bg);
  box-shadow: var(--r-neu-btn-sm);
  color: var(--r-teal-dark);
  font-family: var(--r-font-heading);
  font-weight: 700;
}

.r-compasv2__theme-trigger {
  gap: calc(var(--r-section-gap) / 2);
  padding-inline: var(--r-section-gap);
}

.r-compasv2__theme-label {
  color: var(--r-text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.r-compasv2__theme-panel {
  position: absolute;
  right: 0;
  top: calc(100% + (var(--r-section-gap) / 2));
  z-index: calc(var(--r-z-overlay) + 1);
  display: grid;
  width: max-content;
  max-width: min(320px, calc(100vw - (var(--r-gutter-sm) * 2)));
  gap: calc(var(--r-section-gap) / 3);
  padding: var(--r-section-gap);
  border: 1px solid var(--r-separator);
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: var(--r-neu-card);
}

.r-compasv2__theme-panel[hidden] {
  display: none;
}

.r-compasv2__theme-option {
  width: 100%;
  padding: calc(var(--r-section-gap) / 2) var(--r-section-gap);
  border: 0;
  border-radius: var(--r-radius-pill);
  background: var(--r-bg);
  color: var(--r-text-body);
  font-family: var(--r-font-heading);
  font-weight: 700;
  text-align: left;
}

.r-compasv2__theme-option:hover,
.r-compasv2__theme-option:focus-visible,
.r-compasv2__theme-option--active {
  color: var(--r-teal-dark);
  box-shadow: var(--r-neu-inner);
}

.r-compasv2__status {
  min-height: 1.4em;
  color: var(--r-text-muted);
  font-family: var(--r-font-heading);
  font-size: 0.9rem;
}

.r-compasv2__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--r-section-gap);
}

.r-compasv2__category-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(var(--r-section-gap) / 2);
  border: 0;
  text-align: left;
}

.r-compasv2__category-card:hover,
.r-compasv2__category-card:focus-visible,
.r-compasv2__category-card--active {
  box-shadow: var(--r-neu-card-hover);
}

.r-compasv2__category-title {
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.r-compasv2__category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(var(--r-section-gap) * 2);
  min-height: calc(var(--r-section-gap) * 2);
  padding-inline: calc(var(--r-section-gap) / 2);
  border-radius: var(--r-radius-badge);
  box-shadow: var(--r-neu-inner);
  color: var(--r-teal-dark);
  font-family: var(--r-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
}

.r-compasv2__results {
  margin-top: var(--r-section-gap);
}

.r-compasv2__results[hidden],
.r-compasv2__category-grid[hidden],
.r-compasv2__question[hidden],
.r-compasv2__empty[hidden] {
  display: none;
}

.r-compasv2__results-head {
  justify-content: space-between;
}

.r-compasv2__results-title {
  margin: 0;
}

.r-compasv2__results-close {
  width: calc(var(--r-section-gap) * 3);
  padding: 0;
}

.r-compasv2__questions {
  display: grid;
  gap: var(--r-section-gap);
}

.r-compasv2__question {
  transition: box-shadow var(--r-transition), color var(--r-transition);
}

.r-compasv2__question:hover,
.r-compasv2__question:focus-within,
.r-compasv2__question[open] {
  box-shadow: var(--r-neu-card-hover);
}

.r-compasv2__question-summary {
  display: grid;
  gap: calc(var(--r-section-gap) / 2);
  cursor: pointer;
}

.r-compasv2__question-theme {
  width: fit-content;
  padding: calc(var(--r-section-gap) / 3) calc(var(--r-section-gap) / 1.5);
  border-radius: var(--r-radius-badge);
  background: var(--r-compasv2-card-accent-soft, var(--r-teal-a20));
  color: var(--r-compasv2-card-accent, var(--r-teal-dark));
  font-family: var(--r-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.r-compasv2__question-title {
  font-family: var(--r-font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.r-compasv2__answer {
  margin-top: var(--r-section-gap);
  color: var(--r-text-body);
  line-height: 1.55;
  text-align: justify;
}

.r-compasv2__answer p {
  margin-block: 0 var(--r-section-gap);
}

.r-compasv2__answer p:last-child {
  margin-bottom: 0;
}

.r-compasv2__highlight {
  border-radius: var(--r-radius-pill);
  background: var(--r-orange-a20);
  color: var(--r-text-dark);
}

.r-compasv2__empty {
  margin-top: var(--r-section-gap);
}

.r-compasv2__empty-title {
  margin: 0 0 calc(var(--r-section-gap) / 2);
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-weight: 700;
}

.r-compasv2__empty-body {
  margin: 0;
  color: var(--r-text-body);
}

@media (width >= 1024px) {
  .r-compasv2__inner {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  }

  .r-compasv2__intro {
    position: sticky;
    top: calc(var(--r-admin-bar-h) + var(--r-header-h) + var(--r-gutter-lg));
  }
}

@media (width < 768px) {
  .r-compasv2__toolbar,
  .r-compasv2__actions,
  .r-compasv2__results-head {
    align-items: stretch;
    flex-direction: column;
  }

  .r-compasv2__theme,
  .r-compasv2__theme-trigger,
  .r-compasv2__results-close {
    width: 100%;
  }

  .r-compasv2__theme-panel {
    right: auto;
    left: 0;
    width: 100%;
  }
}

/**
 * Realisons Refonte V2
 *
 * Final CSS surface for the Divi 5.1 V2 implementation and the generated
 * technical prototype. This file is additive: it carries the V2 shell geometry
 * and rail behavior while preserving the existing Réalisons component/design
 * CSS. Do not use it to replace or rename legacy visual classes.
 */



.r-v2,
.r-v2-template,
.r-v2-shell,
.r-v2-template__shell,
.r-v2-template__left,
.r-v2-template__right,
.r-v2-template__right-slot,
.r-v2-left-template,
.r-v2-left-template__body,
.r-v2-left-template__copy,
.r-v2-left-template__actions {
  box-sizing: border-box;
  min-width: 0;
}

.r-v2-template,
.r-v2-shell {
  background: var(--r-bg);
  color: var(--r-text-body);
  font-family: var(--r-font-body);
}

.r-v2-shell {
  height: var(--r-v2-viewport-h);
  min-height: 0;
  overflow: hidden;
}

.r-v2-template__shell {
  display: grid;
  grid-template-columns: minmax(0, var(--r-v2-left-col)) minmax(0, var(--r-v2-right-col));
  gap: 0;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.r-v2-template__left {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.r-v2-template__right {
  align-self: stretch;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: var(--r-v2-scroll-gutter);
  scrollbar-gutter: stable;
}

.r-v2-template__right-slot {
  display: block;
  min-height: calc(100% + var(--r-section-gap));
}

.r-v2-home-journey-right,
.r-v2-home-journey-right *,
.r-v2-home-journey-right *::before,
.r-v2-home-journey-right *::after {
  box-sizing: border-box;
}

.r-v2-home-journey-right {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: var(--r-gutter-md);
  padding: clamp(1rem, 2vw, 2rem);
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  isolation: isolate;
  --r-v2-home-watermark-size: clamp(56rem, 64vw, 106rem);
  --r-v2-home-surface-alpha: 66%;
  --r-v2-home-stepper-h: clamp(2.55rem, 4.2svh, 3.1rem);
  --r-v2-home-stepper-offset: 3px;
  --r-v2-home-panel-h: calc(100svh - var(--r-v2-home-stepper-h) - (var(--r-gutter-md) * 2));
  --r-v2-home-panel-min: max(32rem, var(--r-v2-home-panel-h));
}

.r-v2-template__right:has(.r-v2-home-journey-right) {
  scroll-behavior: smooth;
  scroll-padding-block-start: calc(var(--r-v2-home-stepper-h) + var(--r-v2-home-stepper-offset) + var(--r-gutter-md));
  scroll-snap-type: y mandatory;
}

/* Étape 0 "filigrane" — viewport-anchored monogram behind the right rail
   (#1115). It must not be centered in the full scroll height, otherwise it
   disappears below the first viewport when the rail grows to several screens. */
.r-v2-home-journey-right__filigrane {
  position: fixed;
  inset-block-start: calc(var(--r-header-h) + var(--r-v2-home-stepper-offset));
  inset-inline-end: clamp(-15rem, -8vw, -2rem);
  width: var(--r-v2-home-watermark-size);
  height: var(--r-v2-home-watermark-size);
  display: block;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.r-v2-home-journey-right__filigrane-mark {
  display: block;
  width: 100%;
  height: 100%;
  max-height: min(96svh, var(--r-v2-home-watermark-size));
  opacity: 0.11;
  mix-blend-mode: multiply;
  object-fit: contain;
  object-position: top right;
  transform: translateY(-14%);
  transform-origin: top right;
}

@media (prefers-reduced-motion: no-preference) {
  .r-v2-home-journey-right__filigrane-mark {
    transition: opacity var(--r-transition);
  }
}

/* Make sure stepper + content stay above the filigrane. */
.r-v2-home-journey-right > .r-v2-home-journey-right__stepper,
.r-v2-home-journey-right > .r-v2-home-journey-right__intro,
.r-v2-home-journey-right > .r-v2-home-journey-right__sections {
  position: relative;
  z-index: 1;
}

.r-v2-home-journey-right > .r-v2-home-journey-right__stepper {
  z-index: calc(var(--r-z-nav) + 4);
}

.r-v2-home-journey-right__intro,
.r-v2-home-journey-right__final,
.r-v2-home-journey-right__relay-card,
.r-step-inset {
  border-radius: var(--r-radius-card);
  background: color-mix(in srgb, var(--r-bg) var(--r-v2-home-surface-alpha), transparent);
  backdrop-filter: blur(0.5px);
}

.r-v2-home-journey-right__final,
.r-v2-home-journey-right__intro,
.r-v2-home-journey-right__relay-card {
  box-shadow: var(--r-neu-card);
}

.r-step-inset {
  box-shadow: var(--r-neu-card);
}

.r-v2-home-journey-right__intro {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 3rem);
  min-height: var(--r-v2-home-panel-min);
  block-size: var(--r-v2-home-panel-min);
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: left;
  scroll-margin-block-start: calc(var(--r-v2-home-stepper-h) + var(--r-v2-home-stepper-offset) + var(--r-gutter-md));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Étape 0: centered monogram, independent from the fixed rail filigrane. */
.r-v2-home-journey-right__intro--card {
  background: transparent;
  box-shadow: none;
  border-radius: var(--r-radius-card);
}

.r-v2-home-journey-right__intro-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.6svh, 2rem);
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  min-height: 0;
  min-width: 0;
}

.r-v2-home-journey-right__intro-monogram {
  --r-v2-home-intro-monogram-form-ratio: 0.722;

  display: block;
  width: clamp(13rem, 65svh, 48rem);
  height: clamp(13rem, 65svh, 48rem);
  max-width: min(82%, 48rem);
  aspect-ratio: 1;
  object-fit: contain;
  object-position: 50% 50%;
  transform: scale(calc(1 / var(--r-v2-home-intro-monogram-form-ratio)));
  transform-origin: 50% 50%;
}

@media (width <= 760px) {
  .r-v2-home-journey-right__intro {
    padding: clamp(1rem, 5vw, 2rem);
    text-align: center;
  }
  .r-v2-home-journey-right__intro-content {
    align-items: center;
  }
  .r-v2-home-journey-right__intro-monogram {
    width: clamp(11rem, 65svh, 30rem);
    height: clamp(11rem, 65svh, 30rem);
    max-width: min(88%, 30rem);
  }
}

.r-v2-home-journey-right__stepper-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--r-bg);
  box-shadow: var(--r-neu-btn);
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-weight: 700;
  line-height: 1;
}

.r-v2-home-journey-right__monogram {
  display: block;
  flex: 0 0 auto;
  width: clamp(7.5rem, 14vw, 11.25rem);
  height: clamp(7.5rem, 14vw, 11.25rem);
  object-fit: contain;
}

.r-v2-home-journey-right__intro-title,
.r-v2-home-journey-right__section-title,
.r-v2-home-journey-right__relay-title,
.r-v2-home-journey-right__final-title,
.r-v2-home-journey-right__social-title,
.r-step-inset__title {
  margin: 0;
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.r-v2-home-journey-right__intro-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.r-v2-home-journey-right__intro-list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-evenly;
  gap: clamp(0.85rem, 2svh, 1.35rem);
  width: min(100%, 42rem);
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.r-v2-home-journey-right__intro-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: calc(var(--r-section-gap) / 1.5);
  color: var(--r-text-body);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.35;
}

.r-v2-home-journey-right__intro-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  box-shadow: var(--r-neu-inner);
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-weight: 700;
}

.r-v2-home-journey-right__stepper {
  position: sticky;
  top: var(--r-v2-home-stepper-offset);
  z-index: calc(var(--r-z-nav) + 4);
  display: flex;
  align-items: center;
  gap: var(--r-section-gap);
  align-self: stretch;
  width: 100%;
  min-height: var(--r-v2-home-stepper-h);
  padding-block: 4px;
  padding-inline: calc(var(--r-section-gap) / 2);
  border-radius: var(--r-radius-card);
  background: color-mix(in srgb, var(--r-bg) 24%, transparent);
  backdrop-filter: blur(0.5px);
  box-shadow: var(--r-neu-inner);
  transform: none;
}

body .r-v2-home-journey-right > .r-v2-home-journey-right__stepper {
  position: sticky;
  top: var(--r-v2-home-stepper-offset);
}

.r-v2-home-journey-right__stepper-home {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--r-teal-a20);
  box-shadow: var(--r-neu-inner);
  cursor: pointer;
}

.r-v2-home-journey-right__stepper-home.r-v2-home-journey-right__step--active,
.r-v2-home-journey-right__stepper-home[aria-selected="true"],
.r-v2-home-journey-right__stepper-home[aria-current="step"] {
  border-color: var(--r-orange);
  box-shadow: var(--r-neu-btn-active);
}

.r-v2-home-journey-right__stepper-home-mark {
  display: block;
  width: 1.08rem;
  height: 1.08rem;
  object-fit: contain;
}

/* Increase specificity to beat Divi defaults (#left-area ol = 1,0,1).
   Use body parent for (1,1,1) which wins; replicate base reset rules. */
body .r-v2-home-journey-right__stepper ol,
body .et-l--body .r-v2-home-journey-right__stepper ol,
body .et-l--header .r-v2-home-journey-right__stepper ol,
body #left-area .r-v2-home-journey-right__stepper ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  flex: 1 1 auto;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.r-v2-home-journey-right__stepper ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  flex: 1 1 auto;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.r-v2-home-journey-right__stepper li {
  position: relative;
  display: grid;
  min-width: 0;
  padding-inline-start: calc(var(--r-section-gap) / 2);
  list-style: none;
}

.r-v2-home-journey-right__stepper li:first-child {
  padding-inline-start: 0;
}

.r-v2-home-journey-right__stepper li::marker {
  content: "";
}

.r-v2-home-journey-right__stepper li + li::before {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  width: calc(var(--r-section-gap) / 2);
  height: 1px;
  background: var(--r-separator);
  transform: translateY(-50%);
}

.r-v2-home-journey-right__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  height: 2.2rem;
  min-height: 2.2rem;
  gap: calc(var(--r-section-gap) / 2);
  padding-block: 0;
  padding-inline: calc(var(--r-section-gap) / 1.25);
  border: 1px solid transparent;
  border-radius: var(--r-radius-btn);
  background: transparent;
  box-shadow: none;
  color: var(--r-text-body);
  cursor: pointer;
  font-family: var(--r-font-heading);
  font-weight: 700;
  line-height: 1.1;
  transition: box-shadow var(--r-transition), color var(--r-transition), border-color var(--r-transition);
}

.r-v2-home-journey-right__step:hover,
.r-v2-home-journey-right__step:focus-visible {
  border-color: var(--r-orange);
  box-shadow: var(--r-neu-inner);
  background: var(--r-bg);
  color: var(--r-orange-dark);
}

/* Active step: solid orange fill so it stays visible on responsive (where
   buttons collapse to ~40px wide and subtle border can disappear). */
.r-v2-home-journey-right__step--active,
.r-v2-home-journey-right__step[aria-selected="true"] {
  border-color: var(--r-orange-dark);
  box-shadow: var(--r-neu-inner);
  background: var(--r-orange);
  color: var(--r-white);
}

.r-v2-home-journey-right__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--r-teal);
  color: var(--r-white);
  font-size: 0.78rem;
}

.r-v2-home-journey-right__step-label {
  color: var(--r-text-body);
}

.r-v2-home-journey-right__step--active .r-v2-home-journey-right__step-label,
.r-v2-home-journey-right__step[aria-selected="true"] .r-v2-home-journey-right__step-label {
  color: var(--r-white);
}

.r-v2-home-journey-right__step--active .r-v2-home-journey-right__step-num,
.r-v2-home-journey-right__step[aria-selected="true"] .r-v2-home-journey-right__step-num {
  background: var(--r-white);
  color: var(--r-orange-dark);
  box-shadow: var(--r-neu-inner);
}

.r-v2-home-journey-right__sections {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--r-gutter-md);
  min-height: 0;
  overflow: visible;
}

.r-v2-home-journey-right__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1rem, 2.2svh, 1.75rem);
  min-height: var(--r-v2-home-panel-min);
  block-size: var(--r-v2-home-panel-min);
  padding-block: clamp(1rem, 2svh, 1.5rem);
  scroll-margin-block-start: calc(var(--r-v2-home-stepper-h) + var(--r-v2-home-stepper-offset) + var(--r-gutter-md));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.r-v2-home-journey-right__section:focus {
  outline: none;
}

.r-v2-home-journey-right__section:focus-visible {
  border-radius: var(--r-radius-card);
  outline: 2px solid var(--r-teal-a40);
  outline-offset: 0.25rem;
  box-shadow: none;
}

.r-v2-home-journey-right__section-head {
  display: grid;
  gap: calc(var(--r-section-gap) / 2);
}

.r-v2-home-journey-right__section-step,
.r-v2-home-journey-right__relay-eyebrow {
  margin: 0;
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.r-v2-home-journey-right__section-title,
.r-v2-home-journey-right__final-title,
.r-v2-home-journey-right__social-title {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.r-v2-home-journey-right__section-lead,
.r-v2-home-journey-right__relay-body,
.r-v2-home-journey-right__final-body {
  margin: 0;
  color: var(--r-text-body);
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  line-height: 1.5;
}

.r-step-inset {
  padding: clamp(1.15rem, min(2.2vw, 2.8svh), 2rem);
}

.r-step-inset__list {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: clamp(0.85rem, min(1.8vw, 2svh), 1.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.r-step-inset__list > li {
  display: flex;
  align-items: flex-start;
  gap: var(--r-section-gap);
}

.r-step-inset__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
  color: var(--r-teal-dark);
}

.r-step-inset__icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.r-step-inset__content {
  flex: 1 1 auto;
  min-width: 0;
}

.r-step-inset__title {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.22;
}

.r-step-inset__title-accent {
  color: var(--r-teal);
  font-weight: 700;
}

.r-v2-home-journey-right__relay-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--r-section-gap);
}

.r-v2-home-journey-right__relay-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: calc(var(--r-section-gap) / 1.5);
  padding: var(--r-card-padding);
}

.r-v2-home-journey-right__relay-title {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.15;
}

.r-v2-home-journey-right__relay-cta {
  width: fit-content;
  margin-top: auto;
}

.r-v2-home-journey-right__final {
  display: grid;
  justify-items: center;
  gap: var(--r-section-gap);
  padding: clamp(1.75rem, 3vw, 2.6rem);
  text-align: center;
}

.r-v2-home-journey-right__final-body {
  max-width: 48rem;
}

.r-v2-home-journey-right__final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--r-section-gap);
}

.r-v2-home-journey-right__final-secondary {
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-weight: 700;
  text-decoration: none;
}

.r-v2-home-journey-right__final-secondary:hover,
.r-v2-home-journey-right__final-secondary:focus-visible {
  color: var(--r-teal-dark);
}

@media (prefers-reduced-motion: no-preference) {
  .r-v2-home-journey-right--js .r-step-inset,
  .r-v2-home-journey-right--js .r-v2-home-journey-right__relay-card,
  .r-v2-home-journey-right--js .r-v2-home-journey-right__final {
    opacity: 0;
    transform: translateY(0.75rem);
    transition: opacity var(--r-transition), transform var(--r-transition);
  }

  .r-v2-home-journey-right--js .r-step-inset.is-revealed,
  .r-v2-home-journey-right--js .r-v2-home-journey-right__relay-card.is-revealed,
  .r-v2-home-journey-right--js .r-v2-home-journey-right__final.is-revealed {
    opacity: 1;
    transform: none;
  }
}

.r-v2-home-journey-right__social-proof {
  display: grid;
  gap: var(--r-section-gap);
  padding-block: var(--r-gutter-sm);
}

@media (width >= 880px) {
  .r-v2-home-journey-right__relay-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width <= 760px) {
  .r-v2-home-journey-right {
    padding-inline: clamp(0.75rem, 4vw, 1.2rem);
    gap: var(--r-gutter-sm);
    --r-v2-home-panel-min: auto;
    --r-v2-home-stepper-offset: 3px;
  }

  .r-v2-home-journey-right__filigrane {
    position: fixed;
    inset-block-start: calc(var(--r-header-h) + var(--r-v2-home-stepper-offset));
    inset-inline-end: clamp(-14rem, -42vw, -4rem);
    z-index: 0;
  }

  .r-v2-home-journey-right__filigrane-mark {
    opacity: 0.09;
  }

  .r-v2-template__right:has(.r-v2-home-journey-right) {
    scroll-behavior: auto;
    scroll-padding-block-start: 0;
    scroll-snap-type: none;
  }

  .r-v2-home-journey-right__intro,
  .r-v2-home-journey-right__section {
    min-height: auto;
    block-size: auto;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .r-v2-home-journey-right__stepper {
    align-items: flex-start;
    gap: calc(var(--r-section-gap) / 2);
    top: var(--r-v2-home-stepper-offset);
    transform: none;
  }

  .r-v2-home-journey-right__stepper ol {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  /* Responsive: hide step labels (Situer/Analyser/Structurer/Réaliser),
     only the numbered badge stays visible. The step button collapses to
     a centered circle anchored on the step-num. */
  .r-v2-home-journey-right__step-label {
    display: none;
  }

  .r-v2-home-journey-right__step {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-inline: calc(var(--r-section-gap) / 4);
  }

  .r-v2-home-journey-right__step--active,
  .r-v2-home-journey-right__step[aria-selected="true"],
  .r-v2-home-journey-right__stepper-home.r-v2-home-journey-right__step--active,
  .r-v2-home-journey-right__stepper-home[aria-current="step"] {
    border-color: var(--r-orange-dark);
    background: var(--r-orange);
    color: var(--r-white);
    box-shadow: var(--r-neu-btn-active);
  }

  .r-v2-home-journey-right__step--active .r-v2-home-journey-right__step-num,
  .r-v2-home-journey-right__step[aria-selected="true"] .r-v2-home-journey-right__step-num {
    background: var(--r-white);
    color: var(--r-orange-dark);
    box-shadow: var(--r-neu-inner);
  }

  .r-v2-home-journey-right__stepper-home.r-v2-home-journey-right__step--active .r-v2-home-journey-right__stepper-home-mark,
  .r-v2-home-journey-right__stepper-home[aria-current="step"] .r-v2-home-journey-right__stepper-home-mark {
    filter: saturate(1.15) contrast(1.08);
  }

}

@media (min-width: 1024px) {
  html:has(.r-v2-template),
  body:has(.r-v2-template),
  html:has(.r-viewportv2),
  body:has(.r-viewportv2) {
    height: 100dvh;
    overflow: hidden;
  }

  html:has(.r-v2-template),
  html:has(.r-viewportv2) {
    margin-top: 0 !important;
  }

  body.admin-bar:has(.r-v2-template),
  body.admin-bar:has(.r-viewportv2) {
    box-sizing: border-box;
    padding-top: var(--r-admin-bar-h) !important;
  }
}

.r-v2-left-template {
  position: relative;
  container-type: inline-size;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.r-v2-left-template__body {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.r-v2-left-template__copy {
  position: absolute;
  inset-block-start: var(--r-v2-left-copy-top);
  inset-inline-start: var(--r-v2-left-anchor-x);
  display: flex;
  flex-direction: column;
  gap: calc(var(--r-section-gap) / 2);
  width: var(--r-v2-left-copy-width);
  max-width: none;
}

.r-v2-left-template__eyebrow,
.r-v2-left-template__title,
.r-v2-left-template__tagline,
.r-v2-left-template__lead,
.r-v2-left-template__lead > *,
.r-v2-shell__right-title,
.r-v2-shell__right-body,
.r-v2-shell__right-body > *,
.r-v2-right-rail-content__title,
.r-v2-right-rail-content__body,
.r-v2-right-rail-content__body > * {
  margin-block: 0;
}

.r-v2-left-template__eyebrow {
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.r-v2-left-template__title {
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: var(--r-v2-left-title-size);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.r-v2-left-template__title-line {
  display: block;
}

.r-v2-left-template__title-accent,
.r-v2-shell__title-accent {
  color: var(--r-teal);
}

.r-v2-left-template__tagline,
.r-v2-left-template__lead {
  color: var(--r-text-body);
  font-size: 1.05rem;
  line-height: 1.5;
}

.r-v2-shell__lead-line {
  display: block;
}

.r-v2-shell__lead-line--check {
  align-items: flex-start;
  display: flex;
  gap: var(--r-section-gap);
  font-weight: 700;
}

.r-v2-shell__lead-check {
  align-items: center;
  background: var(--r-teal-a20);
  border-radius: var(--r-radius-dot);
  box-shadow: none;
  color: var(--r-teal-dark);
  display: inline-flex;
  flex: 0 0 auto;
  height: 1.25rem;
  justify-content: center;
  margin-top: calc(var(--r-section-gap) / 6);
  min-width: 1.25rem;
  width: 1.25rem;
}

.r-v2-shell__lead-check svg {
  display: block;
  fill: none;
  height: 0.72rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  width: 0.72rem;
}

.r-v2-shell__lead-line--prompt,
.r-v2-shell__lead-line--close {
  margin-block-start: calc(var(--r-section-gap) / 2);
}

.r-v2-shell__tagline {
  color: var(--r-teal-dark);
  font-style: italic;
}

.r-v2-left-template--service .r-v2-left-template__title {
  font-size: 52px;
  line-height: 1.1;
}

.r-v2-left-template--service .r-v2-left-template__tagline {
  color: var(--r-teal-dark);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}

.r-v2-left-template--service .r-v2-left-template__lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
}

.r-v2-left-template--compact .r-v2-left-template__title {
  font-size: clamp(2.4rem, min(10cqw, 5.7dvh), 3.8rem);
}

.r-v2-left-template--compact .r-v2-left-template__tagline,
.r-v2-left-template--compact .r-v2-left-template__lead {
  font-size: 0.98rem;
  line-height: 1.44;
}

.r-v2-left-template--dense .r-v2-left-template__title {
  font-size: clamp(2rem, min(9cqw, 5.2dvh), 3rem);
  line-height: 1.02;
}

.r-v2-left-template--dense .r-v2-left-template__tagline,
.r-v2-left-template--dense .r-v2-left-template__lead {
  font-size: 0.92rem;
  line-height: 1.36;
}

.r-v2-left-template--critical .r-v2-left-template__title {
  font-size: clamp(1.8rem, min(8cqw, 4.8dvh), 2.5rem);
  line-height: 1;
}

.r-v2-left-template--critical .r-v2-left-template__tagline,
.r-v2-left-template--critical .r-v2-left-template__lead {
  font-size: 0.86rem;
  line-height: 1.3;
}

.r-v2-left-template--emergency .r-v2-left-template__copy {
  gap: 0;
}

.r-v2-left-template--emergency .r-v2-left-template__title {
  font-size: clamp(1.2rem, min(5.8cqw, 3.4dvh), 1.72rem);
  line-height: 0.95;
}

.r-v2-left-template--emergency .r-v2-left-template__tagline,
.r-v2-left-template--emergency .r-v2-left-template__lead {
  font-size: 0.68rem;
  line-height: 1.12;
}

.r-v2-left-template__actions {
  position: absolute;
  inset-block-end: var(--r-v2-left-actions-bottom);
  inset-inline-start: 50%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: var(--r-section-gap);
  width: var(--r-v2-left-actions-w);
  transform: translateX(-50%);
}

/* Home CTA position: use the same `--r-v2-left-actions-bottom` baseline as
   every other V2 left rail page (Catalogue, Compas, Prix, …) so CTAs align
   vertically across the site instead of sitting higher on home only. */

/* Home primary CTA: force orange brand color (was rendering as the inherited
   teal because no rule explicitly set color above .r-v2-left-template__cta).
   Match the orange used on catalogue card primary actions. */
body.r-v2--home-page .r-v2-left-template__actions .r-v2-left-template__cta--primary,
body.r-v2--home-page .r-v2-left-template__actions .r-v2-shell__cta--primary,
body.r-v2--home-page .r-v2-left-template__actions .r-btn.r-btn--primary {
  color: var(--r-orange);
  border-color: var(--r-orange);
}

body.r-v2--home-page .r-v2-left-template__actions .r-v2-left-template__cta--primary:hover,
body.r-v2--home-page .r-v2-left-template__actions .r-v2-shell__cta--primary:hover,
body.r-v2--home-page .r-v2-left-template__actions .r-btn.r-btn--primary:hover,
body.r-v2--home-page .r-v2-left-template__actions .r-v2-left-template__cta--primary:focus-visible,
body.r-v2--home-page .r-v2-left-template__actions .r-v2-shell__cta--primary:focus-visible,
body.r-v2--home-page .r-v2-left-template__actions .r-btn.r-btn--primary:focus-visible {
  color: var(--r-orange-dark);
  border-color: var(--r-orange-dark);
}

/* Home left lead: tighten gap between the last list item and the closing
   line so the copy block ends closer to the actions (fewer visual gap). */
body.r-v2--home-page .r-v2-shell__lead-line--close {
  margin-block-start: calc(var(--r-section-gap) / 4);
}

body.r-v2--home-page .r-v2-left-template__eyebrow {
  font-size: clamp(12px, min(0.9vw, 1.6vh), 14px);
  line-height: 1.2;
}

body.r-v2--home-page .r-v2-left-template__title {
  font-size: clamp(2.4rem, min(10cqw, 5.7dvh), 3.8rem);
  line-height: 1.05;
}

body.r-v2--home-page .r-v2-left-template__tagline {
  font-size: clamp(15px, min(1.1vw, 2vh), 18px);
  line-height: 1.55;
}

body.r-v2--home-page .r-v2-left-template__lead {
  font-size: clamp(15px, min(1.1vw, 2vh), 18px);
  line-height: 1.55;
}

body.r-v2--home-page .r-v2-left-template__lead > * {
  font-size: inherit;
  line-height: inherit;
}

.r-v2-left-template__cta,
.r-v2-left-template__link {
  width: 100%;
  text-align: center;
}

.r-v2-left-template__cta--secondary {
  color: var(--r-teal);
  border-color: var(--r-teal-a20);
}

.r-v2-shell__cta--secondary {
  color: var(--r-teal);
  border-color: var(--r-teal-a20);
}

.r-v2-left-template__cta--secondary:hover,
.r-v2-left-template__cta--secondary:focus-visible,
.r-v2-shell__cta--secondary:hover,
.r-v2-shell__cta--secondary:focus-visible {
  color: var(--r-teal-dark);
  border-color: var(--r-teal-a40);
}

.r-v2-left-template__link {
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-weight: 700;
  text-decoration: none;
}

.r-v2-left-template__link.r-v2-shell__cta--secondary,
.r-v2-shell__cta--secondary.r-hero-link {
  color: var(--r-teal);
}

.r-v2-left-template__cta:focus-visible,
.r-v2-left-template__link:focus-visible {
  outline: 2px solid var(--r-teal);
  outline-offset: 4px;
}

.r-v2-right-rail-content {
  display: flex;
  flex-direction: column;
  gap: var(--r-section-gap);
  min-width: 0;
}

.r-v2-shell__right-title,
.r-v2-right-rail-content__title {
  color: var(--r-text-dark);
}

.r-v2-shell__right-body,
.r-v2-right-rail-content__body {
  color: var(--r-text-body);
  line-height: 1.55;
}

.r-v2-catalogue-explorer-right.r-section-catalogue {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: var(--r-section-gap);
  padding: clamp(1rem, 2vw, 2rem);
  color: var(--r-text-body);
  font-family: var(--r-font-body);
}

.r-v2-catalogue-explorer-right,
.r-v2-catalogue-explorer-right *,
.r-v2-catalogue-explorer-right *::before,
.r-v2-catalogue-explorer-right *::after {
  box-sizing: border-box;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar {
  position: sticky;
  top: 0;
  z-index: var(--r-z-nav);
  margin-bottom: 0;
  padding: var(--r-section-gap);
  background: var(--r-bg);
  box-shadow: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--r-section-gap);
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__search-shell {
  flex: 1 1 auto;
  min-width: min(100%, 18rem);
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter {
  position: relative;
  z-index: calc(var(--r-z-nav) + 1);
  flex: 0 0 min(100%, 16rem);
  min-width: min(100%, 16rem);
  overflow: visible;
}

.r-v2-catalogue-explorer-right .r-search,
.r-v2-catalogue-explorer-right .r-section-catalogue__search-shell {
  display: flex;
  align-items: center;
  min-height: calc(var(--r-card-padding) * 2.1);
  gap: calc(var(--r-section-gap) * 0.75);
  padding: calc(var(--r-section-gap) * 0.8) var(--r-section-gap);
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
  color: var(--r-text-body);
}

.r-v2-catalogue-explorer-right .r-search__icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.2rem;
  color: var(--r-teal-dark);
  place-items: center;
}

.r-v2-catalogue-explorer-right .r-search__icon svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}

.r-v2-catalogue-explorer-right .r-search__input {
  min-width: 0;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--r-text-dark);
  font: inherit;
  outline: none;
}

.r-v2-catalogue-explorer-right .r-search__input:focus-visible {
  outline: none;
}

.r-v2-catalogue-explorer-right .r-search:focus-within {
  outline: 2px solid var(--r-teal);
  outline-offset: 2px;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__count {
  margin: 0;
  color: var(--r-text-muted);
  font-family: var(--r-font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__search,
.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter,
.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-select,
.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-trigger {
  width: 100%;
  min-width: 0;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-select,
.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-trigger {
  min-height: calc(var(--r-card-padding) * 2.1);
  padding: calc(var(--r-section-gap) * 0.8) var(--r-section-gap);
  color: var(--r-teal);
  border: 1px solid var(--r-teal-a20);
  border-radius: var(--r-radius-input);
  box-shadow: var(--r-neu-inner);
  font: inherit;
  background: var(--r-bg);
  background-image: none;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  appearance: none;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--r-section-gap) * 0.75);
  cursor: pointer;
  text-align: left;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-trigger:focus-visible {
  outline: 2px solid var(--r-teal);
  outline-offset: 2px;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-current {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-chevron {
  flex: 0 0 auto;
  color: var(--r-teal-dark);
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-chevron::before {
  content: "\25be";
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-panel {
  position: absolute;
  inset-block-start: calc(100% + (var(--r-section-gap) / 2));
  inset-inline: 0;
  z-index: calc(var(--r-z-nav) + 2);
  display: grid;
  gap: calc(var(--r-section-gap) / 2);
  width: 100%;
  max-height: min(calc(var(--r-section-gap) * 20), calc(100dvh - (var(--r-section-gap) * 8)));
  padding: calc(var(--r-section-gap) / 2);
  border: 1px solid var(--r-teal-a20);
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: var(--r-neu-card-hover);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-panel[hidden] {
  display: none;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-panel .r-section-catalogue__filter-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(var(--r-section-gap) * 2.5);
  padding: calc(var(--r-section-gap) * 0.65) calc(var(--r-section-gap) * 0.8);
  border: 0;
  border-radius: var(--r-radius-btn);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-panel .r-section-catalogue__filter-option:hover,
.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-panel .r-section-catalogue__filter-option:focus-visible,
.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-panel .r-section-catalogue__filter-option--active {
  background: var(--r-teal-a20);
  color: var(--r-teal-dark);
  outline: none;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-select option {
  color: var(--r-text-dark);
  background: var(--r-bg);
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-option--all {
  color: var(--r-catalogue-analyse);
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-option--analyse {
  color: var(--r-catalogue-analyse);
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-option--identite {
  color: var(--r-catalogue-identite);
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-option--marketing {
  color: var(--r-catalogue-marketing);
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-option--commercial {
  color: var(--r-catalogue-commercial);
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-option--gestion {
  color: var(--r-catalogue-gestion);
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-option--legal {
  color: var(--r-catalogue-legal);
}

.r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-option--equipe {
  color: var(--r-catalogue-equipe);
}

.r-section-catalogue .r-v2-catalogue-explorer-right__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--r-gutter-md);
  padding: 0;
  overflow: visible;
}

.r-section-catalogue .r-v2-catalogue-explorer-right__card {
  min-height: clamp(14rem, 24dvh, 19rem);
  padding: clamp(var(--r-card-padding), 2vw, calc(var(--r-card-padding) * 1.35));
}

.r-v2-catalogue-explorer-right .r-section-catalogue__card-link {
  --r-section-catalogue-link-color: var(--r-teal);
  color: var(--r-teal);
}

body:has(.r-v2-catalogue-explorer-right) .r-v2-left-template__actions {
  gap: var(--r-section-gap);
}

body:has(.r-v2-catalogue-explorer-right) .r-v2-left-template__actions .r-v2-shell__cta--primary {
  display: none;
}

body:has(.r-v2-catalogue-explorer-right) .r-v2-left-template__actions .r-v2-shell__cta--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(var(--r-card-padding) * 2.1);
  padding: calc(var(--r-section-gap) * 0.85) var(--r-section-gap);
  border: 1px solid var(--r-teal-a20);
  border-color: var(--r-teal-a20);
  border-radius: var(--r-radius-btn);
  background: var(--r-bg);
  box-shadow: var(--r-neu-btn);
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

body:has(.r-v2-catalogue-explorer-right) .r-v2-left-template__actions .r-v2-shell__cta--secondary:hover,
body:has(.r-v2-catalogue-explorer-right) .r-v2-left-template__actions .r-v2-shell__cta--secondary:focus-visible {
  box-shadow: var(--r-neu-btn-hover);
  color: var(--r-teal-dark);
  border-color: var(--r-teal-a20);
}

body:has(.r-v2-catalogue-explorer-right) .r-v2-left-template__actions .r-v2-shell__cta--tertiary {
  display: inline-flex;
  justify-content: center;
  color: var(--r-teal);
}

body:has(.r-v2-catalogue-explorer-right) .r-v2-left-template__actions .r-v2-shell__cta--tertiary:hover,
body:has(.r-v2-catalogue-explorer-right) .r-v2-left-template__actions .r-v2-shell__cta--tertiary:focus-visible {
  color: var(--r-teal-dark);
}

@media (width <= 760px) {
  .r-v2-catalogue-explorer-right.r-section-catalogue {
    padding-inline: clamp(0.75rem, 4vw, 1.2rem);
  }

  .r-section-catalogue .r-v2-catalogue-explorer-right__toolbar {
    position: static;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__search-shell {
    flex: 0 1 auto;
    width: 100%;
    min-width: 0;
  }

  .r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter {
    flex: 0 1 auto;
    min-width: min(100%, 16rem);
    max-width: 100%;
  }

  .r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-panel {
    inset-inline: 0 auto;
    max-width: calc(100vw - (var(--r-gutter-sm) * 2));
  }

  .r-section-catalogue .r-v2-catalogue-explorer-right__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .r-section-catalogue .r-v2-catalogue-explorer-right__count,
  .r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter,
  .r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__filter-select,
  .r-section-catalogue .r-v2-catalogue-explorer-right__toolbar .r-section-catalogue__search {
    width: 100%;
  }
}

.r-v2-compas-explorer-right {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: var(--r-section-gap);
  padding: clamp(1rem, 2vw, 2rem);
  color: var(--r-text-body);
  font-family: var(--r-font-body);
}

.r-v2-compas-explorer-right,
.r-v2-compas-explorer-right *,
.r-v2-compas-explorer-right *::before,
.r-v2-compas-explorer-right *::after {
  box-sizing: border-box;
}

.r-v2-compas-explorer-right__header {
  display: grid;
  gap: calc(var(--r-section-gap) / 2);
}

.r-v2-compas-explorer-right__title {
  margin: 0;
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.r-v2-compas-explorer-right .r-compasv2__toolbar {
  position: sticky;
  top: 0;
  z-index: var(--r-z-nav);
  flex-wrap: nowrap;
  margin-bottom: 0;
  padding: var(--r-section-gap);
  background: var(--r-bg);
  box-shadow: none;
}

.r-v2-compas-explorer-right .r-compasv2__search-field {
  flex: 1 1 auto;
  min-width: min(100%, 18rem);
}

.r-v2-compas-explorer-right .r-search,
.r-v2-compas-explorer-right .r-compasv2__search-field {
  display: flex;
  align-items: center;
  min-height: calc(var(--r-card-padding) * 2.1);
  gap: calc(var(--r-section-gap) * 0.75);
  padding: calc(var(--r-section-gap) * 0.8) var(--r-section-gap);
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
  color: var(--r-text-body);
}

.r-v2-compas-explorer-right .r-search__icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.2rem;
  color: var(--r-teal-dark);
  place-items: center;
}

.r-v2-compas-explorer-right .r-search__icon svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}

.r-v2-compas-explorer-right .r-search__input {
  min-width: 0;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--r-text-dark);
  font: inherit;
  outline: none;
}

.r-v2-compas-explorer-right .r-search__input:focus-visible {
  outline: none;
}

.r-v2-compas-explorer-right .r-search:focus-within {
  outline: 2px solid var(--r-teal);
  outline-offset: 2px;
}

.r-v2-compas-explorer-right .r-compasv2__theme {
  flex: 0 0 auto;
}

.r-v2-compas-explorer-right .r-compasv2__theme-trigger {
  justify-content: space-between;
  min-height: calc(var(--r-card-padding) * 2.1);
  min-width: calc(var(--r-section-gap) * 9);
  padding: calc(var(--r-section-gap) * 0.8) var(--r-section-gap);
  border: 1px solid var(--r-teal-a20);
  border-radius: var(--r-radius-input);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
  color: var(--r-teal);
  font: inherit;
}

.r-v2-compas-explorer-right .r-compasv2__theme-panel {
  gap: calc(var(--r-section-gap) / 2);
  min-width: min(22rem, calc(100vw - (var(--r-gutter-sm) * 2)));
}

.r-v2-compas-explorer-right .r-compasv2__theme-option {
  --r-compasv2-card-accent: var(--r-teal-dark);

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: calc(var(--r-section-gap) * 0.75);
  border-radius: var(--r-radius-input);
}

.r-v2-compas-explorer-right .r-compasv2__theme-dot {
  display: inline-block;
  width: calc(var(--r-section-gap) * 0.75);
  height: calc(var(--r-section-gap) * 0.75);
  border-radius: var(--r-radius-dot);
  background: var(--r-compasv2-card-accent);
  box-shadow: var(--r-neu-inner);
}

.r-v2-compas-explorer-right .r-compasv2__theme-option-label {
  min-width: 0;
  overflow: hidden;
  color: var(--r-text-dark);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.r-v2-compas-explorer-right .r-compasv2__theme-option-count {
  color: var(--r-text-muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.r-v2-compas-explorer-right .r-compasv2__category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(var(--r-section-gap) * 1.5);
  align-items: stretch;
}

.r-v2-compas-explorer-right .r-compasv2__category-card,
.r-v2-compas-explorer-right .r-compasv2__question,
.r-v2-compas-explorer-right .r-compasv2__empty {
  background: var(--r-bg);
}

.r-v2-compas-explorer-right .r-compasv2__category-card {
  --r-compasv2-card-accent: var(--r-teal);

  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: clamp(14rem, 24dvh, 19rem);
  align-content: stretch;
  gap: calc(var(--r-section-gap) * 1.25);
  padding: clamp(var(--r-card-padding), 2vw, calc(var(--r-card-padding) * 1.35));
  border: 0;
  cursor: pointer;
  text-align: left;
}

.r-v2-compas-explorer-right .r-cat {
  --r-compasv2-card-accent-soft: color-mix(in srgb, var(--r-compasv2-card-accent) 18%, transparent);
}

.r-v2-compas-explorer-right .r-cat.r-cat--c-blue {
  --r-compasv2-card-accent: var(--r-teal-dark);
}

.r-v2-compas-explorer-right .r-cat.r-cat--c-teal-dark {
  --r-compasv2-card-accent: var(--r-teal);
}

.r-v2-compas-explorer-right .r-cat.r-cat--c-purple {
  --r-compasv2-card-accent: var(--r-purple);
}

.r-v2-compas-explorer-right .r-cat.r-cat--c-fuchsia {
  --r-compasv2-card-accent: color-mix(in srgb, var(--r-purple) 72%, var(--r-orange));
}

.r-v2-compas-explorer-right .r-cat.r-cat--c-indigo {
  --r-compasv2-card-accent: color-mix(in srgb, var(--r-purple) 72%, var(--r-teal-dark));
}

.r-v2-compas-explorer-right .r-cat.r-cat--c-navy {
  --r-compasv2-card-accent: color-mix(in srgb, var(--r-teal-dark) 55%, var(--r-text-dark));
}

.r-v2-compas-explorer-right .r-cat.r-cat--c-pink {
  --r-compasv2-card-accent: color-mix(in srgb, var(--r-purple) 55%, var(--r-orange));
}

.r-v2-compas-explorer-right .r-cat.r-cat--c-green {
  --r-compasv2-card-accent: var(--r-green);
}

.r-v2-compas-explorer-right .r-cat.r-cat--c-emerald {
  --r-compasv2-card-accent: color-mix(in srgb, var(--r-green) 70%, var(--r-teal-dark));
}

.r-v2-compas-explorer-right .r-cat.r-cat--c-coral {
  --r-compasv2-card-accent: var(--r-orange);
}

.r-v2-compas-explorer-right .r-cat.r-cat--c-orange-dark {
  --r-compasv2-card-accent: var(--r-orange-dark);
}

.r-v2-compas-explorer-right .r-cat.r-cat--c-amber {
  --r-compasv2-card-accent: color-mix(in srgb, var(--r-orange) 72%, var(--r-green));
}

.r-v2-compas-explorer-right .r-compasv2__category-card--expanded {
  grid-column: 1 / -1;
  min-height: 0;
  box-shadow: var(--r-neu-card-hover);
}

.r-v2-compas-explorer-right .r-compasv2__category-card--hidden {
  display: none;
}

.r-v2-compas-explorer-right .r-compasv2__category-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--r-section-gap);
  min-width: 0;
}

.r-v2-compas-explorer-right .r-compasv2__category-badge,
.r-v2-compas-explorer-right .r-compasv2__category-count,
.r-v2-compas-explorer-right .r-compasv2__category-cta {
  font-family: var(--r-font-heading);
  font-weight: 700;
}

.r-v2-compas-explorer-right .r-compasv2__category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 0;
  padding: calc(var(--r-section-gap) / 3) calc(var(--r-section-gap) * 0.75);
  border-radius: var(--r-radius-badge);
  background: var(--r-compasv2-card-accent);
  color: var(--r-white);
  font-size: 0.78rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.r-v2-compas-explorer-right .r-compasv2__category-count {
  flex: 0 0 auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--r-text-muted);
  font-size: 0.82rem;
  line-height: 1.32;
  margin-inline-start: auto;
  white-space: nowrap;
}

.r-v2-compas-explorer-right .r-compasv2__category-body {
  display: grid;
  align-content: start;
  gap: calc(var(--r-section-gap) * 0.85);
  min-width: 0;
}

.r-v2-compas-explorer-right .r-compasv2__category-title {
  margin: 0;
  color: var(--r-text-dark);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.32;
}

.r-v2-compas-explorer-right .r-compasv2__category-teasers {
  display: grid;
  gap: calc(var(--r-section-gap) * 0.65);
  margin: 0;
  padding-inline-start: calc(var(--r-section-gap) * 1.25);
  color: var(--r-text-body);
  font-size: 0.94rem;
  line-height: 1.5;
}

.r-v2-compas-explorer-right .r-compasv2__category-teaser::marker {
  color: var(--r-compasv2-card-accent);
}

.r-v2-compas-explorer-right .r-compasv2__category-cta {
  align-self: end;
  font-size: 0.9rem;
}

.r-v2-compas-explorer-right .r-compasv2__category-cta--accent {
  display: inline;
  justify-self: start;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--r-compasv2-card-accent);
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: calc(var(--r-section-gap) / 3);
}

.r-v2-compas-explorer-right .r-compasv2__category-close {
  position: absolute;
  top: var(--r-section-gap);
  right: var(--r-section-gap);
  display: none;
  width: calc(var(--r-section-gap) * 3);
  height: calc(var(--r-section-gap) * 3);
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--r-radius-btn);
  background: var(--r-bg);
  box-shadow: var(--r-neu-btn-sm);
  color: var(--r-text-muted);
  cursor: pointer;
  font-family: var(--r-font-heading);
  font-weight: 700;
}

.r-v2-compas-explorer-right .r-compasv2__category-close:hover,
.r-v2-compas-explorer-right .r-compasv2__category-close:focus-visible {
  color: var(--r-compasv2-card-accent);
  box-shadow: var(--r-neu-btn-hover);
}

.r-v2-compas-explorer-right .r-compasv2__category-expanded {
  display: none;
  gap: var(--r-section-gap);
  margin-top: calc(var(--r-section-gap) / 2);
}

.r-v2-compas-explorer-right .r-compasv2__category-card--expanded .r-compasv2__category-close,
.r-v2-compas-explorer-right .r-compasv2__category-card--expanded .r-compasv2__category-expanded {
  display: grid;
}

.r-v2-compas-explorer-right .r-compasv2__category-card--expanded .r-compasv2__category-teasers,
.r-v2-compas-explorer-right .r-compasv2__category-card--expanded .r-compasv2__category-cta {
  display: none;
}

.r-v2-compas-explorer-right .r-compasv2__category-question {
  padding: var(--r-section-gap);
  background: var(--r-bg);
  box-shadow: var(--r-neu-inner);
}

.r-v2-compas-explorer-right .r-compasv2__category-question-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--r-section-gap);
  list-style: none;
  cursor: pointer;
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-weight: 700;
}

.r-v2-compas-explorer-right .r-compasv2__category-question-summary::-webkit-details-marker {
  display: none;
}

.r-v2-compas-explorer-right .r-compasv2__category-question-summary::marker {
  content: "";
}

.r-v2-compas-explorer-right .r-compasv2__category-question-title {
  min-width: 0;
}

.r-v2-compas-explorer-right .r-compasv2__category-question-icon {
  display: inline-grid;
  width: calc(var(--r-section-gap) * 1.5);
  height: calc(var(--r-section-gap) * 1.5);
  align-items: center;
  justify-content: center;
  border-radius: var(--r-radius-dot);
  color: var(--r-compasv2-card-accent);
  font-size: 1rem;
  line-height: 1;
}

.r-v2-compas-explorer-right .r-compasv2__category-question-icon::before {
  content: "+";
}

.r-v2-compas-explorer-right .r-compasv2__category-question[open] > .r-compasv2__category-question-summary .r-compasv2__category-question-icon::before {
  content: "\00d7";
}

.r-v2-compas-explorer-right .r-compasv2__category-answer {
  padding-top: calc(var(--r-section-gap) / 2);
  color: var(--r-text-body);
}

@media (max-width: 767.98px) {
  .r-v2-compas-explorer-right .r-compasv2__category-question:not([open]) > .r-compasv2__category-answer {
    display: none;
  }

  .r-v2-compas-explorer-right .r-compasv2__category-question[open] > .r-compasv2__category-answer {
    display: block;
  }
}

.r-v2-compas-explorer-right .r-compasv2__question {
  padding: var(--r-card-padding);
}

.r-v2-compas-explorer-right .r-compasv2__results {
  margin-top: 0;
}

.r-v2-compas-explorer-right .r-compasv2__results-head {
  position: sticky;
  top: calc((var(--r-section-gap) * 4) + var(--r-section-gap));
  z-index: calc(var(--r-z-nav) - 1);
  padding-block: calc(var(--r-section-gap) / 2);
  background: var(--r-bg);
}

.r-v2-compas-explorer-right .r-compasv2__empty {
  margin-top: 0;
  padding: var(--r-card-padding);
}

@media (width <= 760px) {
  .r-v2-compas-explorer-right {
    padding-inline: clamp(0.75rem, 4vw, 1.2rem);
  }

  .r-v2-compas-explorer-right .r-compasv2__toolbar {
    position: static;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .r-v2-compas-explorer-right .r-compasv2__search-field,
  .r-v2-compas-explorer-right .r-compasv2__theme,
  .r-v2-compas-explorer-right .r-compasv2__theme-trigger,
  .r-v2-compas-explorer-right .r-compasv2__results-close {
    width: 100%;
  }

  .r-v2-compas-explorer-right .r-compasv2__category-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .r-v2-compas-explorer-right .r-compasv2__results-head {
    position: static;
  }
}

.r-v2stack {
  display: grid;
  gap: var(--r-card-padding);
}

.r-v2grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--r-card-padding);
}

.r-v2card {
  background: var(--r-bg);
  border-radius: var(--r-radius-card);
  box-shadow: var(--r-neu-card);
  color: var(--r-text-body);
  padding: var(--r-card-padding);
}

.r-v2card:focus-within {
  outline: 2px solid var(--r-teal);
  outline-offset: 2px;
}

.r-v2eyebrow {
  color: var(--r-teal);
  font-family: var(--r-font-heading);
  font-size: var(--r-section-gap);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.r-v2title {
  color: var(--r-text-dark);
  font-family: var(--r-font-heading);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.r-v2body {
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  line-height: 1.55;
  margin: 0;
}

/* Compatibility layer for early prototype shells. */
.r-viewportv2 {
  height: var(--r-v2-viewport-h);
  min-height: 0;
  background: var(--r-bg);
  color: var(--r-text-body);
  font-family: var(--r-font-body);
  overflow: hidden;
}

.r-viewportv2__inner {
  display: grid;
  grid-template-columns: minmax(0, var(--r-v2-left-col)) minmax(0, var(--r-v2-right-col));
  gap: 0;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin-inline: 0;
  padding: 0;
}

.r-viewportv2__hero {
  display: flex;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.r-viewportv2__heroinner {
  width: 100%;
}

.r-viewportv2__content {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: var(--r-v2-scroll-gutter);
  scrollbar-gutter: stable;
}

@media (width <= 1023.98px) {
  .r-v2-shell,
  .r-viewportv2 {
    height: auto;
    min-height: var(--r-v2-viewport-h);
    overflow: visible;
  }

  .r-v2-template__shell,
  .r-viewportv2__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .r-v2-template__left,
  .r-v2-template__right,
  .r-viewportv2__hero,
  .r-viewportv2__content {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .r-v2-template__right,
  .r-viewportv2__content {
    padding-right: 0;
  }

  .r-v2-left-template {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: var(--r-gutter-md) var(--r-gutter-sm);
  }

  .r-v2-left-template__body {
    display: flex;
    flex-direction: column;
    gap: var(--r-section-gap);
    height: auto;
  }

  .r-v2-left-template__copy,
  .r-v2-left-template__actions {
    position: static;
    inset: auto;
    width: 100%;
    max-width: var(--r-v2-left-body-max);
    margin-inline: auto;
    transform: none;
  }

  .r-v2-left-template__actions {
    margin-block-start: var(--r-gutter-sm);
  }

  .r-v2-left-template__title {
    font-size: 2.7rem;
  }

  .r-v2-left-template--service .r-v2-left-template__title {
    font-size: 44px;
  }

  .r-v2-left-template--service .r-v2-left-template__tagline {
    font-size: 16px;
  }

  .r-v2-service-detail-right__point {
    padding-inline-start: 12px;
  }

  .r-v2grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (width < 768px) {
  .r-v2-left-template--service .r-v2-left-template__title {
    font-size: 34px;
  }
}

@media (min-width: 1024px) and (max-height: 980px) {
  :root {
    --r-v2-left-copy-top: clamp(6rem, 24dvh, 13rem);
    --r-v2-left-actions-bottom: clamp(0.75rem, 3dvh, 1.5rem);
    --r-v2-left-title-size: clamp(2.4rem, min(10cqw, 5.7dvh), 3.8rem);
  }
}

@media (min-width: 1024px) and (max-height: 700px) {
  :root {
    --r-v2-left-copy-top: clamp(4.75rem, 16dvh, 7rem);
    --r-v2-left-actions-bottom: clamp(0.5rem, 2dvh, 1rem);
    --r-v2-left-title-size: clamp(2rem, min(9cqw, 5.2dvh), 3rem);
  }

  .r-v2-left-template__tagline,
  .r-v2-left-template__lead {
    font-size: 0.95rem;
    line-height: 1.42;
  }
}

@media (min-width: 1024px) and (max-width: 1320px) and (max-height: 760px) {
  :root {
    --r-v2-left-copy-top: clamp(4.75rem, 16dvh, 7rem);
    --r-v2-left-actions-bottom: clamp(0.5rem, 2dvh, 1rem);
    --r-v2-left-title-size: clamp(1.8rem, min(8cqw, 4.8dvh), 2.5rem);
  }

  .r-v2-left-template__tagline,
  .r-v2-left-template__lead {
    font-size: 0.86rem;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .r-v2-template__right,
  .r-viewportv2__content {
    scroll-behavior: auto;
  }

  .r-v2-template__right:has(.r-v2-home-journey-right) {
    scroll-behavior: auto;
  }
}
/* Refonte V2 validated shell integration overrides.
   These rules keep the official ViewportShellV2 template full-surface even when
   earlier integrated V2 module helpers define generic .r-v2-shell card styles. */
.r-v2-template.r-v2-shell {
  width: 100%;
  padding: 0;
}

.r-v2-template__left {
  gap: 0;
  justify-content: stretch;
  padding: 0;
}

.r-v2-template__right-slot {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  max-height: none;
  overflow: visible;
  overscroll-behavior: auto;
  padding: 0;
}
