body.page-recette-v13 {
    background: var(--v3-bg, #fbfaf9);
    color: var(--v3-text, #262c2c);
}

.rv13-recipe-page {
    --rv13-font-text: var(--v3-font-text, 'Lora', Georgia, serif);
    --rv13-font-ui: var(--v3-font-ui, 'Montserrat', Arial, sans-serif);

    --rv13-brand: #ff6233;
    --rv13-brand-soft: rgba(255, 98, 51, 0.10);
    --rv13-brand-soft-strong: rgba(255, 98, 51, 0.16);
    --rv13-brand-line: rgba(255, 98, 51, 0.22);

    --rv13-bg: var(--v3-bg, #fbfaf9);
    --rv13-surface: var(--v3-surface, #ffffff);
    --rv13-surface-soft: #f7f4f1;
    --rv13-surface-soft-2: #f2ece7;

    --rv13-text: var(--v3-text, #262c2c);
    --rv13-muted: var(--v3-text-mut, #69727c);
    --rv13-border: var(--v3-border, #ece4dd);

    --rv13-hero-fallback: linear-gradient(180deg, #f2ebe5 0%, #efe8e1 100%);
    --rv13-hero-overlay: linear-gradient(
        180deg,
        rgba(14, 13, 13, 0.10) 0%,
                                         rgba(14, 13, 13, 0.36) 42%,
                                         rgba(14, 13, 13, 0.78) 100%
    );

    --rv13-shadow: 0 14px 34px rgba(25, 30, 38, 0.06);
    --rv13-shadow-soft: 0 8px 22px rgba(25, 30, 38, 0.04);

    font-family: var(--rv13-font-ui);
    line-height: 1.65;
}

.rv13-recipe-page *,
.rv13-recipe-page *::before,
.rv13-recipe-page *::after {
    box-sizing: border-box;
}

.rv13-recipe-page img {
    display: block;
    max-width: 100%;
}

.rv13-recipe-page a {
    color: inherit;
}

.rv13-recipe-page button,
.rv13-recipe-page input,
.rv13-recipe-page textarea {
    font: inherit;
}

.rv13-shell {
    width: min(960px, calc(100% - 2rem));
    margin: 0 auto;
}

.rv13-shell--wide {
    width: min(1180px, calc(100% - 2rem));
}

/* HERO */

.rv13-hero {
    position: relative;
    min-height: clamp(420px, 56vw, 620px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    background: var(--rv13-hero-fallback);
}

.rv13-hero.has-image .rv13-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.rv13-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--rv13-hero-overlay);
}

.rv13-hero__inner {
    position: relative;
    z-index: 2;
    padding: 7rem 0 5rem;
}

.rv13-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, .86);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
}

.rv13-breadcrumb a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.rv13-breadcrumb a:hover {
    color: #fff;
}

.rv13-breadcrumb span {
    color: rgba(255, 255, 255, .94);
}

.rv13-breadcrumb__sep {
    opacity: .55;
}

.rv13-hero__kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: .28rem .7rem;
    border-radius: 999px;
    background: var(--rv13-brand);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.rv13-hero__title {
    max-width: 780px;
    margin: 1rem 0 .7rem;
    color: #fff;
    font-family: var(--rv13-font-text);
    font-size: clamp(2.35rem, 4.5vw, 4.2rem);
    line-height: .97;
    letter-spacing: -.035em;
}

.rv13-hero__title::after {
    content: '';
    display: block;
    width: 72px;
    height: 4px;
    margin-top: .9rem;
    border-radius: 999px;
    background: var(--rv13-brand);
}

.rv13-hero__subtitle {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 1rem;
    line-height: 1.65;
}

.rv13-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.2rem;
}

.rv13-hero__stat {
    display: inline-flex;
    flex-direction: column;
    gap: .12rem;
    min-width: 124px;
    min-height: 64px;
    padding: .78rem .95rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    backdrop-filter: blur(8px);
}

.rv13-hero__stat-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .82;
}

/* BLOCS COMMUNS */

.rv13-toolbox,
.rv13-intro-card,
.rv13-sidebar-card,
.rv13-ingredients-card,
.rv13-step-card,
.rv13-video-card,
.rv13-side-card,
.rv13-free-note,
.rv13-author,
.rv13-vote,
.rv13-comments,
.rv13-comment,
.rv13-comment-form,
.rv13-inline-media,
.rv13-inline-ad,
.rv13-tools-card {
    background: var(--rv13-surface);
    border: 1px solid var(--rv13-border);
    border-radius: 18px;
    box-shadow: var(--rv13-shadow-soft);
}

.rv13-toolbox,
.rv13-intro-card,
.rv13-sidebar-card,
.rv13-vote,
.rv13-comments,
.rv13-comment-form,
.rv13-author,
.rv13-side-card,
.rv13-video-card,
.rv13-free-note {
    padding: 1.35rem;
}

.rv13-flow {
    display: grid;
    gap: 1.35rem;
    padding: 2rem 0 4.5rem;
}

.rv13-section {
    display: grid;
    gap: 1rem;
}

.rv13-section-heading {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
}

.rv13-section-heading--center {
    justify-content: center;
    text-align: center;
}

.rv13-section-heading__mark {
    width: 4px;
    min-height: 56px;
    border-radius: 999px;
    background: var(--rv13-brand);
    flex: 0 0 auto;
}

.rv13-toolbox__eyebrow,
.rv13-section-heading__eyebrow,
.rv13-free-note__eyebrow {
    margin: 0 0 .2rem;
    color: var(--rv13-muted);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
}

.rv13-toolbox__title,
.rv13-section-heading__title {
    margin: 0;
    color: var(--rv13-text);
    font-size: clamp(1.12rem, 2vw, 1.56rem);
    line-height: 1.12;
    font-weight: 800;
}

.rv13-toolbox__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .8rem;
    margin-bottom: .9rem;
}

/* TOOLBOX */

.rv13-utility-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 1rem;
    margin-top: -34px;
    position: relative;
    z-index: 6;
}

.rv13-print-panel {
    display: grid;
    gap: .8rem;
}

.rv13-chipset {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.rv13-chip,
.rv13-share-btn,
.rv13-btn,
.rv13-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 40px;
    padding: .58rem .82rem;
    border-radius: 12px;
    border: 1px solid var(--rv13-border);
    background: var(--rv13-surface);
    color: var(--rv13-text);
    cursor: pointer;
    text-decoration: none;
    font-size: .92rem;
    line-height: 1.2;
    transition:
    transform .18s ease,
    border-color .18s ease,
    background-color .18s ease,
    color .18s ease,
    box-shadow .18s ease;
}

.rv13-chip:hover,
.rv13-share-btn:hover,
.rv13-btn:hover,
.rv13-link-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 98, 51, .34);
    box-shadow: 0 6px 18px rgba(255, 98, 51, .08);
}

.rv13-chip.is-active,
.rv13-chip[aria-pressed="true"],
.rv13-share-btn.is-copied {
    background: var(--rv13-brand-soft);
    border-color: rgba(255, 98, 51, .30);
    color: var(--rv13-brand);
}

.rv13-share-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
}

.rv13-btn--primary {
    width: auto;
    justify-self: start;
    padding-inline: 1rem 1.15rem;
    background: linear-gradient(180deg, rgba(255, 98, 51, .10) 0%, rgba(255, 98, 51, .15) 100%);
    border-color: rgba(255, 98, 51, .24);
    color: var(--rv13-brand);
    font-weight: 800;
}

.rv13-btn--ghost,
.rv13-link-btn {
    background: var(--rv13-surface);
    color: var(--rv13-text);
}

/* INTRO */

.rv13-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .85fr);
    gap: 1.2rem;
    align-items: start;
}

.rv13-editorial {
    color: var(--rv13-text);
    font-family: var(--rv13-font-text);
    font-size: 1.06rem;
    line-height: 1.8;
}

.rv13-editorial p {
    margin: 0 0 1rem;
}

.rv13-editorial p:last-child {
    margin-bottom: 0;
}

.rv13-editorial a,
.rv13-free-note__content a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 98, 51, .26);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    font-weight: 600;
}

.rv13-editorial a:hover,
.rv13-free-note__content a:hover {
    color: var(--rv13-brand);
    text-decoration-color: rgba(255, 98, 51, .82);
}

.rv13-caption {
    margin: .85rem 0 0;
    color: var(--rv13-muted);
    font-size: .82rem;
}

.rv13-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.15rem;
}

.rv13-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: .42rem .75rem;
    border-radius: 999px;
    background: var(--rv13-surface-soft);
    border: 1px solid var(--rv13-border);
    color: var(--rv13-muted);
    font-size: .75rem;
    font-weight: 700;
}

.rv13-facts-list {
    list-style: none;
    padding: 0;
    margin: .85rem 0 0;
    display: grid;
    gap: .7rem;
}

.rv13-facts-list li {
    display: flex;
    justify-content: space-between;
    gap: .7rem;
    padding: .8rem .95rem;
    border-radius: 14px;
    background: var(--rv13-surface-soft);
    border: 1px solid rgba(255, 98, 51, .08);
}

.rv13-facts-list span {
    color: var(--rv13-muted);
}

.rv13-facts-list strong {
    color: var(--rv13-text);
}

.rv13-sidebar-card__video-link {
    width: auto;
    margin-top: 1rem;
}

.rv13-muted {
    color: var(--rv13-muted);
    margin: .85rem 0 0;
}

/* =========================================
 * 1. BOUTON DANS LA LISTE (Infos clés)
 * ========================================= */
.rv13-facts-btn {
    display: inline-flex;
    align-items: center;
    position: relative; /* Requis pour le pointeur absolu */
    padding: 0.15rem 1.2rem 0.15rem 0.6rem; /* Padding-right plus grand pour laisser la place au pointeur */
    background: var(--rv13-brand-soft);
    color: var(--rv13-brand);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem; /* Réduction du texte */
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.rv13-facts-btn:hover {
    background: var(--rv13-brand-soft-strong);
    transform: translateY(-1px);
}

.rv13-facts-list li strong {
    font-size: 0.9rem; /* Réduction du texte normal */
}

/* =========================================
 * 2. BOUTON DANS LE HERO
 * ========================================= */
.rv13-hero__stat-btn {
    display: inline-flex;
    align-items: center;
    position: relative; /* Requis pour le pointeur absolu */
    margin-top: 0.15rem;
    padding: 0.2rem 1.2rem 0.2rem 0.6rem; /* Padding-right plus grand pour laisser la place au pointeur */
    background: var(--rv13-brand);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rv13-hero__stat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 98, 51, 0.3);
}

/* =========================================
 * 3. LE POINTEUR PNG (Partagé sur les 2 boutons)
 * ========================================= */
.rv13-facts-btn::after,
.rv13-hero__stat-btn::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url('/assets/media/gets/pointeur-souris.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 22px;   /* Taille du pointeur */
    height: 22px;
    bottom: -8px;  /* Décalage vers le bas */
    right: -8px;   /* Décalage vers la droite */
    z-index: 10;
    transition: transform 0.2s ease;
}

/* Petite animation du pointeur au survol */
.rv13-facts-btn:hover::after,
.rv13-hero__stat-btn:hover::after {
    transform: scale(1.1) translate(1px, 1px);
}

/* INGREDIENTS */

.rv13-ingredients-card {
    padding: 1.35rem;
}

.rv13-ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}

.rv13-ingredients-grid.has-tools {
    grid-template-columns: minmax(0, 1.28fr) minmax(260px, .72fr);
}

.rv13-ingredients-main,
.rv13-ingredients-aside {
    min-width: 0;
}

.rv13-ingredients-aside {
    align-self: start;
}

.rv13-ingredients-main-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.2rem;
}

.rv13-ingredients-main-grid > :only-child {
    grid-column: 1 / -1;
    max-width: 580px;
}

.rv13-ingredients-col {
    padding: .15rem 0;
    min-width: 0;
}

.rv13-ingredients-col__title {
    margin: 0 0 .9rem;
    color: var(--rv13-text);
    font-size: 1rem;
    font-weight: 800;
}

.rv13-ingredients-list,
.rv13-tools-list,
.rv13-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .7rem;
}

.rv13-ingredients-list li,
.rv13-tools-list li,
.rv13-bullet-list li {
    position: relative;
    color: var(--rv13-text);
}

.rv13-ingredients-list li,
.rv13-bullet-list li {
    padding-left: 1.15rem;
}

.rv13-ingredients-list li::before,
.rv13-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rv13-brand);
}

.rv13-tools-card {
    padding: 1rem 1rem 1.05rem;
    background: var(--rv13-surface-soft);
    border-color: rgba(255, 98, 51, .10);
}

.rv13-tools-card__group-title {
    margin: .2rem 0 .7rem;
    color: var(--rv13-muted);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.rv13-tools-card .rv13-tools-list + .rv13-tools-card__group-title {
    margin-top: 1rem;
}

.rv13-tools-list li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    padding-left: 0;
}

.rv13-tools-list i {
    color: var(--rv13-brand);
    margin-top: .18rem;
}

/* MEDIAS / CTA / PUBS */

.rv13-inline-media,
.rv13-free-note,
.rv13-inline-ad {
    width: min(100%, 820px);
    margin: .15rem auto 0;
}

.rv13-inline-media {
    overflow: hidden;
}

.rv13-inline-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.rv13-inline-media figcaption {
    padding: .8rem 1rem 1rem;
    color: var(--rv13-muted);
    font-size: .82rem;
    background: var(--rv13-surface);
}

.rv13-inline-media--center,
.rv13-free-note--center,
.rv13-inline-ad--center {
    margin-inline: auto;
}

.rv13-inline-media--step,
.rv13-free-note--step,
.rv13-inline-ad--step {
    width: 100%;
    max-width: none;
    margin: 0;
    align-self: stretch;
    justify-self: stretch;
}

.rv13-inline-ad {
    overflow: hidden;
    min-height: 250px;
    background: var(--rv13-surface-soft);
}

.rv13-inline-ad iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.rv13-free-note__title {
    margin: 0 0 .55rem;
    color: var(--rv13-text);
    font-size: 1.05rem;
    font-weight: 800;
}

.rv13-free-note__content {
    color: var(--rv13-text);
    line-height: 1.72;
}

.rv13-free-note__content > *:first-child {
    margin-top: 0;
}

.rv13-free-note__content > *:last-child {
    margin-bottom: 0;
}

.rv13-free-note__link {
    margin-top: .95rem;
}

.rv13-free-note--source {
    width: 100%;
}

/* ETAPES */

.rv13-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.rv13-step-card {
    position: relative;
    overflow: hidden;
    background: var(--rv13-surface);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: 100%;
}

.rv13-step-card__no {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: var(--rv13-surface);
    border: 1px solid rgba(255, 98, 51, .18);
    color: var(--rv13-brand);
    font-size: .98rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(25, 30, 38, 0.05);
}

.rv13-step-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--rv13-surface-soft-2);
    flex: 0 0 auto;
}

.rv13-step-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rv13-step-card__body {
    padding: 1.15rem 1.2rem 1.22rem;
    min-height: 210px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.rv13-step-card:not(.no-image) .rv13-step-card__body {
    padding-top: 1.02rem;
}

.rv13-step-card.no-image .rv13-step-card__body {
    padding-top: 4.15rem;
}

.rv13-step-card__title {
    margin: 0 0 .58rem;
    color: var(--rv13-text);
    font-size: 1.05rem;
    line-height: 1.25;
    font-weight: 800;
    padding-right: 4.25rem;
}

.rv13-step-card__text {
    color: var(--rv13-muted);
    line-height: 1.72;
    flex: 1 1 auto;
}

.rv13-conclusion {
    width: min(100%, 860px);
    margin: 0 auto;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 98, 51, .06), rgba(255, 98, 51, .10));
    border: 1px solid rgba(255, 98, 51, .18);
}

.rv13-conclusion strong {
    display: inline-block;
    margin-bottom: .25rem;
    color: var(--rv13-brand);
}

.rv13-conclusion p {
    margin: 0;
    color: var(--rv13-text);
}

/* TAIL */

.rv13-tail-grid {
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.rv13-tail-grid.is-video-only {
    grid-template-columns: minmax(0, 560px);
    width: min(100%, 560px);
}

.rv13-tail-grid--no-video {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rv13-tail-main,
.rv13-tail-side {
    min-width: 0;
    display: grid;
    gap: 1rem;
}

.rv13-video-card {
    overflow: hidden;
}

.rv13-video-card video {
    display: block;
    width: 100%;
    max-height: 78vh;
    border-radius: 14px;
    object-fit: contain;
    background: #000;
}

.rv13-sticky-video {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 50;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--rv13-brand);
    color: #fff;
    border: 1px solid rgba(255, 98, 51, .24);
    box-shadow: 0 14px 34px rgba(255, 98, 51, .24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.rv13-sticky-video i {
    color: #fff;
    font-size: 1.1rem;
}

.rv13-sticky-video.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* AUTEUR */

.rv13-author {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.rv13-author__avatar-wrap {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--rv13-surface-soft);
}

.rv13-author__avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rv13-author__role {
    margin: .4rem 0 0;
    color: var(--rv13-muted);
}

.rv13-author__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    margin-top: 1rem;
}

.rv13-author__socials {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.rv13-author__socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rv13-surface-soft);
    border: 1px solid var(--rv13-border);
    text-decoration: none;
    transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.rv13-author__socials a:hover {
    color: var(--rv13-brand);
    border-color: rgba(255, 98, 51, .34);
    transform: translateY(-1px);
}

/* VOTES */

.rv13-vote,
.rv13-comments {
    padding-top: 1.25rem;
}

.rv13-stars {
    display: flex;
    justify-content: center;
    gap: .48rem;
    font-size: 1.34rem;
    color: #efb84f;
    margin: .2rem 0 .4rem;
}

.rv13-vote__stats,
.rv13-vote__message {
    min-height: 1.2rem;
    text-align: center;
    color: var(--rv13-muted);
    font-size: .92rem;
}

/* COMMENTAIRES */

.rv13-comments__list {
    display: grid;
    gap: .85rem;
    margin: .4rem 0 1rem;
}

.rv13-comment {
    padding: .95rem 1rem;
}

.rv13-comment__meta,
.chronique-comments__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: baseline;
    margin-bottom: .35rem;
}

.chronique-comments__pseudo {
    color: var(--rv13-text);
}

.chronique-comments__date {
    color: var(--rv13-muted);
    font-size: .8rem;
}

.chronique-comments__message,
.rv13-comment__message {
    color: var(--rv13-text);
    line-height: 1.6;
}

.rv13-comment__reply,
.chronique-comments__reply {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .65rem;
    border: 0;
    background: transparent;
    color: var(--rv13-brand);
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}

.rv13-comment__replies,
.chronique-comments__replies {
    margin-top: .8rem;
    display: grid;
    gap: .55rem;
    padding-left: .9rem;
    border-left: 2px solid rgba(255, 98, 51, .18);
}

.rv13-comment__reply-item,
.chronique-comments__reply-item {
    padding: .72rem .8rem;
    border-radius: 14px;
    background: var(--rv13-surface-soft);
}

.rv13-comments__more {
    width: auto;
    margin-bottom: 1rem;
}

.rv13-comment-form {
    margin-top: 0;
}

.rv13-comment-form__reply {
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 .85rem;
    padding: .72rem .8rem;
    border-radius: 14px;
    background: var(--rv13-surface-soft);
}

.rv13-comment-form__grid {
    display: grid;
    gap: .95rem;
}

.rv13-comment-form__full {
    grid-column: 1 / -1;
}

.rv13-label {
    display: inline-block;
    margin-bottom: .45rem;
    color: var(--rv13-text);
    font-weight: 700;
}

.rv13-input {
    width: 100%;
    min-height: 46px;
    padding: .82rem .92rem;
    border-radius: 12px;
    border: 1px solid var(--rv13-border);
    background: var(--rv13-surface);
    color: var(--rv13-text);
}

.rv13-input:focus {
    outline: none;
    border-color: rgba(255, 98, 51, .45);
    box-shadow: 0 0 0 4px rgba(255, 98, 51, .10);
}

.rv13-input--textarea {
    min-height: 150px;
    resize: vertical;
}

.rv13-comment-form__submit {
    margin-top: .9rem;
}

.rv13-comment-form__note {
    margin: .65rem 0 0;
    color: var(--rv13-muted);
    font-size: .82rem;
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .rv13-utility-grid,
    .rv13-intro-layout,
    .rv13-ingredients-grid.has-tools,
    .rv13-tail-grid,
    .rv13-tail-grid--no-video,
    .rv13-author,
    .rv13-ingredients-main-grid {
        grid-template-columns: 1fr;
    }

    .rv13-steps-grid {
        grid-template-columns: 1fr;
    }

    .rv13-tail-grid.is-video-only {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .rv13-inline-media--step,
    .rv13-free-note--step,
    .rv13-inline-ad--step {
        width: 100%;
    }
}

/* =========================================
 * 4. MEDIA QUERY MOBILE (Fusionnée et propre)
 * ========================================= */
@media (max-width: 760px) {
    .rv13-shell,
    .rv13-shell--wide {
        width: min(100%, calc(100% - 1rem));
    }

    .rv13-hero {
        min-height: clamp(380px, 92vw, 540px);
    }

    .rv13-hero__inner {
        padding: 5.5rem 0 4rem;
    }

    .rv13-hero__title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    /* --- GESTION DES CARTES STATS ET BOUTONS SUR MOBILE --- */
    .rv13-hero__stats {
        display: flex;
        flex-wrap: nowrap; /* Force sur la même ligne */
        gap: 0.4rem; /* Espacement réduit */
    }

    .rv13-hero__stat {
        min-width: 0;
        flex: 1 1 50%; /* 50% de largeur chacun */
        padding: 0.5rem 0.6rem;
        overflow: hidden;
    }

    .rv13-hero__stat-label {
        font-size: 0.6rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; /* ... si le label est trop long */
    }

    .rv13-hero__stat-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.75rem;
        padding: 0.3rem 1rem 0.3rem 0.3rem; /* Ajustement du padding pour le pointeur */
    }

    /* On réduit un peu la taille du PNG sur mobile pour ne pas déborder */
    .rv13-facts-btn::after,
    .rv13-hero__stat-btn::after {
        width: 18px;
        height: 18px;
        bottom: -5px;
        right: -3px;
    }
    /* ------------------------------------------------------ */

    .rv13-toolbox,
    .rv13-intro-card,
    .rv13-sidebar-card,
    .rv13-ingredients-card,
    .rv13-video-card,
    .rv13-side-card,
    .rv13-free-note,
    .rv13-author,
    .rv13-vote,
    .rv13-comments,
    .rv13-comment-form {
        padding: 1rem;
    }

    .rv13-chipset,
    .rv13-author__actions {
        gap: .6rem;
    }

    .rv13-share-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rv13-share-btn,
    .rv13-chip,
    .rv13-btn,
    .rv13-link-btn {
        min-height: 40px;
        padding: .55rem .75rem;
        font-size: .89rem;
    }

    .rv13-step-card__no {
        top: .8rem;
        right: .8rem;
        min-width: 46px;
        min-height: 46px;
        font-size: .92rem;
    }

    .rv13-step-card__title {
        padding-right: 3.9rem;
    }

    .rv13-inline-media,
    .rv13-free-note,
    .rv13-inline-ad,
    .rv13-conclusion {
        width: 100%;
    }

    .rv13-sticky-video {
        right: 14px;
        bottom: 18px;
        width: 48px;
        height: 48px;
    }
}

/* DARK */

html[data-theme="dark"] .rv13-recipe-page,
html.theme-dark .rv13-recipe-page,
html[data-pd-theme="dark"] .rv13-recipe-page {
    --rv13-bg: #11161c;
    --rv13-surface: #141b22;
    --rv13-surface-soft: #1a232d;
    --rv13-surface-soft-2: #1c2630;
    --rv13-text: #f2f5f7;
    --rv13-muted: #9aa7b4;
    --rv13-border: #263240;
    --rv13-hero-fallback: linear-gradient(180deg, #1a222b 0%, #11161c 100%);
    --rv13-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
    --rv13-shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] body.page-recette-v13,
html.theme-dark body.page-recette-v13,
html[data-pd-theme="dark"] body.page-recette-v13 {
    background: #0f141a;
    color: #f2f5f7;
}

html[data-theme="dark"] .rv13-chip,
html[data-theme="dark"] .rv13-share-btn,
html[data-theme="dark"] .rv13-btn,
html[data-theme="dark"] .rv13-link-btn,
html[data-theme="dark"] .rv13-input,
html[data-theme="dark"] .rv13-sticky-video,
html.theme-dark .rv13-chip,
html.theme-dark .rv13-share-btn,
html.theme-dark .rv13-btn,
html.theme-dark .rv13-link-btn,
html.theme-dark .rv13-input,
html.theme-dark .rv13-sticky-video,
html[data-pd-theme="dark"] .rv13-chip,
html[data-pd-theme="dark"] .rv13-share-btn,
html[data-pd-theme="dark"] .rv13-btn,
html[data-pd-theme="dark"] .rv13-link-btn,
html[data-pd-theme="dark"] .rv13-input,
html[data-pd-theme="dark"] .rv13-sticky-video {
    color: var(--rv13-text);
    border-color: var(--rv13-border);
}

html[data-theme="dark"] .rv13-chip,
html[data-theme="dark"] .rv13-share-btn,
html[data-theme="dark"] .rv13-btn,
html[data-theme="dark"] .rv13-link-btn,
html[data-theme="dark"] .rv13-input,
html.theme-dark .rv13-chip,
html.theme-dark .rv13-share-btn,
html.theme-dark .rv13-btn,
html.theme-dark .rv13-link-btn,
html.theme-dark .rv13-input,
html[data-pd-theme="dark"] .rv13-chip,
html[data-pd-theme="dark"] .rv13-share-btn,
html[data-pd-theme="dark"] .rv13-btn,
html[data-pd-theme="dark"] .rv13-link-btn,
html[data-pd-theme="dark"] .rv13-input {
    background: var(--rv13-surface);
}

html[data-theme="dark"] .rv13-btn--primary,
html.theme-dark .rv13-btn--primary,
html[data-pd-theme="dark"] .rv13-btn--primary {
    background: linear-gradient(180deg, rgba(255, 98, 51, .16) 0%, rgba(255, 98, 51, .22) 100%);
    color: #ff8a63;
    border-color: rgba(255, 98, 51, .28);
}

html[data-theme="dark"] .rv13-sticky-video,
html.theme-dark .rv13-sticky-video,
html[data-pd-theme="dark"] .rv13-sticky-video {
    background: var(--rv13-brand);
    color: #fff;
    border-color: rgba(255, 98, 51, .28);
}

html[data-theme="dark"] .rv13-sticky-video i,
html.theme-dark .rv13-sticky-video i,
html[data-pd-theme="dark"] .rv13-sticky-video i {
    color: #fff;
}

html[data-theme="dark"] .rv13-breadcrumb a,
html.theme-dark .rv13-breadcrumb a,
html[data-pd-theme="dark"] .rv13-breadcrumb a {
    color: rgba(255, 255, 255, .82);
}

/* PRINT */

@media print {
    .rv13-recipe-page .no-print,
    .rv13-sticky-video {
        display: none !important;
    }
}
