/* ============================================
   RETOUR GAGNANT — MAIN CSS (Mobile-First)
   ============================================ */

/* ── Variables ── */
:root {
  --bordeaux: #4A1512;
  --or: #E0B32E;
  --creme: #FBF3E4;
  --blanc: #FFFFFF;
  --or-pale: #FDF6E3;
  --or-light: rgba(224,179,46,0.12);
  --bordeaux-dark: #3a100e;
  --bordeaux-mid: #5e1a16;
  --border: rgba(74,21,18,0.1);
  --border-or: rgba(224,179,46,0.25);
  --font-title: 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}
.or{
    color:var(--or);
}
/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--blanc);
  color: var(--bordeaux);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: var(--font-title);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

/* effet image */

.wp-duotone-rgb742118-rgb22417946-2.wp-block-image img, .wp-duotone-rgb742118-rgb22417946-2.wp-block-image .components-placeholder{filter:url(#wp-duotone-rgb742118-rgb22417946-2);}
/*# sourceURL=core-block-supports-duotone-inline-css */

/* ── Layout ── */
.rg-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.page .rg-container:not(.page-hero){
    padding: 0;
}

.page .rg-container:not(.page-hero) .rg-page-body .padding{
    padding: 15px 10px;
}
.page .rg-container:not(.page-hero) .rg-page-body .smallpadding{
    padding: 16px 18px;
}
.page .rg-container:not(.page-hero) .rg-page-body .margin{
    margin: 2em 0;
}
.page .rg-container:not(.page-hero) .rg-page-body .paddingTB{
    padding: 15px 0;
}

.rg-container-narrow {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER */

.rg-header{
    top: 0;
    position:sticky;
    z-index: 1000;
}
.logged-in .rg-header{
    top:32px;
}

/* ── Navigation ── */
.rg-nav {
  background: var(--bordeaux);
  border-bottom: 2px solid var(--or);
  padding: 0.75rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.rg-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.rg-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rg-logo svg {
  width: 36px;
  height: 36px;
}
.rg-nav .rg-logo img{
    max-height: 36px;
    width:auto;
}
.rg-logo-text {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--blanc);
  letter-spacing: 0.07em;
  line-height: 1;
}

.rg-logo-sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  color: var(--or);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* hero pages */

.page-hero.rg-container{
    background-color: var(--bordeaux);
    padding: 44px 52px 36px;
    border-bottom: 3px solid var(--or);
}

.page-hero h1{
    color:var(--blanc);
    font-size: 4rem;
}

.page-hero h1:after{
	content:attr(data-text);
	color:var(--or);
	transform:translateX(-100%);
	position:absolute;
}

.page-hero .soustitre{
    font-size: .8rem;
    font-weight: 300;
    color: rgba(251, 243, 228, .6);
    margin-top: 12px;
    line-height: 1.75;
}

/* bases pour pages */

.tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--or);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--or);
}

.page h2 {
    font-size: 28px;
    color: var(--bordeaux);
    letter-spacing: .02em;
    line-height: .92;
    margin-bottom: 22px;
}

.page .invert h2{
    color: var(--blanc);
}

.page h2 em {
    color: var(--or);
    font-style: normal;
}

label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--bordeaux);
    opacity: .65;
    display: block;
    margin-bottom: 5px;
}

input, select, textarea {
    border: 1px solid var(--border);
    background: var(--creme);
    padding: 11px 13px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: var(--bordeaux);
    width: 100%;
    margin-bottom: 14px;
}

input[type=submit] {
    background: var(--bordeaux);
    color: var(--creme);
    font-family: var(--font-title);
    font-size: 15px;
    letter-spacing: .1em;
    padding: 13px 26px;
    border: none;
    cursor: pointer;
}

.icon {
    width: 38px;
    height: 38px;
    background: rgba(224, 179, 46, .14);
    border: 1px solid rgba(224, 179, 46, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.ci-lbl {
    font-size: 10px;
    font-weight: 600;
    color: var(--or);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 3px;
}


.ci-val {
    font-size: 13px;
    font-weight: 400;
    color: var(--bordeaux);
}

.ci-desc{
    font-size: 10px;
    font-weight: 300;
    color: var(--bordeaux);
    opacity: .5;
    margin-top: 2px;
}

.coach-grid{
    border: 1px solid var(--border);
}

.page figure.geo-media{
    margin:0;
}

.page .geo-media.geo-image img{
  border-radius: 0;
  display: block;
}

.page figure.geo-media figcaption{
    background: var(--bordeaux);
    padding: 10px 16px;
    text-align: center;
    color: var(--or);
    font-weight: bold;
    font-style: normal;
    margin-top: 0;
}

.geo-credits{
    display: none;
}

.wp-block-geo-blocks-blockquote-geo blockquote, .wp-block-ticoet-blockquotegeo blockquote{
    border-color: var(--or);
}

.parcours td:first-child {
    font-family: var(--font-title);
    font-size: 32px;
    color: rgba(224, 179, 46, .3);
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
}

.parcours td:last-child{
    margin-left: auto;
    background: rgba(224, 179, 46, .12);
    color: #7a5500;
    border: 1px solid rgba(224, 179, 46, .3);
    font-size: 9px;
    font-weight: 600;
    padding: 3px 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
    flex-shrink: 0;
    align-self: flex-start;
}

.parcours td:not(:last-child):not(:first-child){
    color: var(--bordeaux);
    font-size:11px;
}

.parcours td:not(:last-child):not(:first-child) strong{
    font-family: var(--font-title);
    font-size: 18px;
    letter-spacing: .03em;
}

.tableborder table tr,.tableborder.plus table td{
    border: solid 1px var(--border);
    background-color: #FFFFFF;
}
.tableborder table td{
    border:none;
}

.tableborder.plus td{
    font-size:10px;
    font-weight:300;
    color:var(--bordeaux);
    padding: 20px 18px;
}

.tableborder.plus td strong{
    font-family:var(--font-title);
    font-size:16px;
    color:var(--bordeaux);
    margin-bottom:3px;
    font-weight:600;
}

.certification{
    background: rgba(255, 255, 255, .05);
    border-left: 3px solid var(--or);
    padding: 16px 18px;
    font-size:12px;
    font-weight:300;
    color:rgba(251,243,228,.65);
    line-height:1.6;
}

.certification h3{
   font-family: var(--font-title);
   font-size:14px;
   color:var(--or);
   margin-bottom:5px;
   font-weight:600;
}

.page.legal .rg-container{
   padding: 64px 52px; 
}
.page.legal .rg-container.cadre{
    line-height: inherit;
}
.page.legal .rg-container.cadre .wp-block-separator{
    border: none;
    border-top: 1.5px solid var(--or);
    margin: 24px 0;
}
.page.legal .rg-container.cadre h3{
    font-family: var(--font-title);
    font-size:22px;
    color:var(--bordeaux);
    letter-spacing:.03em;
    margin: 28px 0 8px;
    border-left: 3px solid var(--or);
    padding-left:12px;
}

.coaching{
    display: inline-block;
    align-items: center;
    background: rgba(224, 179, 46, .14);
    border: 1px solid rgba(224, 179, 46, .3);
    padding:5px 14px;
    margin-bottom:20px;
    color:var(--or);
    font-size:10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.coaching:before{
    content:"• ";
}

.wp-block-buttons .border .wp-block-button__link{
    border:1px solid rgba(255, 255, 255, .25);
}

.page .publics table td{
    /*background: var(--blanc);*/
    border:1px solid var(--border);
    font-size:11px;
    font-weight: 300;
    color:var(--bordeaux);
    padding: 22px 18px;
}

.page .publics.fond2 table td{
    background: var(--creme);
}

.page .publics table td em{
    font-family: var(--font-title);
    font-size:36px;
    color:rgba(224,179,46,.3);
    margin-bottom: 4px;
    font-weight: 400;
    font-style: normal;
}
.page .publics table td strong{
    font-family: var(--font-title);
    font-size:17px;
    color:var(--bordeaux);
    margin-bottom: 6px;
    font-weight: 400;
}

.cadreImg .geo-image{
    border: 2px solid var(--or);
}

.cadreImg .geo-image figcaption{
    /*border-top: 2px solid var(--or);*/
}

section.invert .cadreImg .geo-image figcaption{
    background-color: var(--creme);
    color:var(--bordeaux);
}

.barresV{
    border-left:1px solid rgba(255, 255, 255, .1);
    border-right:1px solid rgba(255, 255, 255, .1);
}

.Case1 table tr:first-child td:first-child{
    border-top-color: var(--or);
    background-color: var(--creme);
}

.organisation{
    
}

.organisation .wp-block-column.padding{
    border: 1px solid var(--border);
    padding: 24px 22px !important;
}

.organisation .wp-block-column ul, .puceJaune{
    /*padding-left: 18px;*/
    margin-top: 16px;
}
.organisation .wp-block-column ul li,.puceJaune li{
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
}
.organisation .wp-block-column ul li:before,.puceJaune li:before{
    content: '';
    width: 5px;
    height: 5px;
    background: var(--or);
    flex-shrink: 0; 
}

.organisation .wp-block-column{
    position: relative;
}

.organisation .wp-block-column.jaune:before,.organisation .wp-block-column.gris:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.organisation .wp-block-column.jaune:before{
    background: var(--or);
}

.organisation .wp-block-column.gris:before{
    background: var(--bordeaux);
    opacity: .4;
}

.organisation .wp-block-column .coaching:before{
    display: none;
}

.organisation .wp-block-column.jaune .coaching{
    background: rgba(224, 179, 46, .14);
    color: #7a5500;
    border: 1px solid rgba(224, 179, 46, .35);
}

.organisation .wp-block-column.gris .coaching{
    background: rgba(74, 21, 18, .08);
    color: var(--bordeaux);
    border: 1px solid var(--border);
}

.chiffrage {
    font-family: var(--font-title);
    font-size: 48px;
    color: var(--or);
    opacity: .22;
    line-height: 1;
    margin-bottom: 6px;
}

/* bases pour article single.php */

.single section.hero{
    background: var(--bordeaux);
    color:var(--blanc);
    padding: 22px 26px 18px;
    border-bottom: 3px solid var(--or);
}

.single section.hero .rg-article-thumb{
    position: relative;
    height:300px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid var(--or);
  }

.single section.hero .rg-article-thumb img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
  }

.single section.hero .rg-article-header{
    margin-bottom: 16px;
}

.single main .rg-container{
   padding: 64px 52px; 
}
.single main .rg-container.cadre{
    line-height: inherit;
}
.single main .rg-container.cadre .wp-block-separator{
    border: none;
    border-top: 1.5px solid var(--or);
    margin: 24px 0;
}
.single main .rg-container.cadre h3{
    font-family: var(--font-title);
    font-size:22px;
    color:var(--bordeaux);
    letter-spacing:.03em;
    margin: 28px 0 8px;
    border-left: 3px solid var(--or);
    padding-left:12px;
}

.single .geo-proscons.inverse .geo-proscons-columns .geo-proscons-pros{
    order: 2;
}
.single .geo-proscons.inverse .geo-proscons-columns .geo-proscons-cons{
    order: 1;
}
.portrait .geo-video iframe, .geo-video video{
    aspect-ratio: 9 / 16;
}

.single .single-sidebar{
    outline: 1.5px dashed rgba(224, 179, 46, .45);
    padding: 10px;
    background: var(--creme);
}
.single .single-sidebar .widget_block{
    margin-bottom: 32px;
}
.single .single-sidebar .wp-block-search__label{
    font-family: var(--font-title);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.02em;
    font-size: 1.5em;
    color: var(--bordeaux);
    opacity: 1;
}
.single .single-sidebar button{
    background: var(--bordeaux);
    margin-bottom: 14px;
}

.single .single-sidebar input,.single .single-sidebar select,.single .single-sidebar textarea{
    background: var(--blanc);
}

.single .single-sidebar .wp-block-latest-posts li{
    border-left:3px solid var(--or);
    padding-left:10px; 
}
.single .single-sidebar .wp-block-latest-posts li:not(:last-child):not(:only-child){
    margin-bottom: 16px;
}
.single .single-sidebar .wp-block-latest-posts__featured-image{
    height: 90px;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.single .single-sidebar .wp-block-latest-posts li img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
}

.single main .rg-article-footer{
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--creme);
}

.single main .rg-article-footer h2{
    margin-bottom: 16px;
}

.single main .nav-links{
    display: flex;
    justify-content: space-between;
}

.single main .nav-links > div{
    background: var(--bordeaux);
    color:var(--blanc);
    padding: 5px 10px;
}

.single main .nav-links > div.nav-previous{
    border-left: 3px solid var(--or);
}

.single main .nav-links > div.nav-next{
    border-right: 3px solid var(--or);
}

.single main .nav-links > div.nav-next:only-child{
    margin-left: auto;
}

/* fil ariane */

.hero-breadcrumbs {
    margin-bottom: 15px;
}

.hero-breadcrumbs .breadcrumbs-list {
    display: flex;
    flex-wrap:wrap;
    align-items: center;
    gap:2px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-breadcrumbs li {
    display: flex;
    align-items: center;
    color: var(--or);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-breadcrumbs li:last-child{
    display: none;
}

.hero-breadcrumbs a {
    color: rgba(251,243,228,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs-list li:not(:first-child):before {
    content: ">";
    margin-right:2px;
}

/* Mobile menu toggle */
.rg-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.rg-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanc);
  transition: all 0.3s ease;
}

.rg-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.rg-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.rg-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav links */
.rg-nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bordeaux);
  flex-direction: column;
  padding: 1rem 1.25rem;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.rg-nav-links.active {
  display: flex;
}
#menu-main,#menu-menu-principal,#menu-principal,#menu-footer{
    list-style: none;
}
#menu-footer{
    display: flex;
    gap: 1em;
}
.rg-nav-link,
#menu-main a,#menu-menu-principal a,#menu-principal a,#menu-footer a{
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(251,243,228,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  padding: 0.5rem 0;
}

.rg-nav-link:hover,
.rg-nav-link.active,
#menu-main .current-menu-item a,#menu-menu-principal .current-menu-item a,#menu-principal .current-menu-item a,
#menu-main a:hover,#menu-menu-principal a:hover,#menu-principal a:hover,
#menu-footer .current-menu-item a,
#menu-footer a:hover{
  color: var(--blanc);
}

.rg-nav-cta {
  background: var(--or);
  color: var(--bordeaux);
  font-family: var(--font-title);
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  padding: 0.625rem 1.625rem;
  margin-top: 0.5rem;
}

/* bandeau image */

.barreOr{
    border-bottom: 2px solid var(--or);
}
.barresOr{
    border-bottom: 2px solid var(--or);
    border-top: 2px solid var(--or);
}
.barreOrTop{
    border-top: 2px solid var(--or);
}
.filtre img{
        filter: url(#wp-duotone-rgb742118-rgb22417946-2);
}

/* autres options */

.tarif1 strong{
    color:#e0b32e;
    font-size:2em;
}

.tarif2 strong{
    color:#4a1512;
    font-size:2em;
}

.bordureOr{
    border-top: 3px solid #e0b32e;
}
.bordureBx{
    border-top: 3px solid #4a1512;
}
.titreMg h3{
    margin: 1.2rem 0;
}
.colonneMg > *:not(.tarif1):not(.tarifs2){
    margin: 1.2rem 1.2rem 0;
}

/* ── Hero ── */
.rg-hero {
  background: var(--blanc);
  min-height: auto;
}

/* Hero Dark mode */
.rg-hero-btn--primary {
  background: var(--bordeaux);
  color: var(--creme);
  font-family: var(--font-title);
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  padding: 0.9375rem 2.125rem;
  display: inline-block;
  text-decoration: none;
}

.rg-hero-btn--secondary {
  background: transparent;
  color: var(--bordeaux);
  font-family: var(--font-title);
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  padding: 0.875rem 2.125rem;
  border: 1.5px solid var(--border);
  display: inline-block;
  text-decoration: none;
}

.rg-hero--dark {
  background: #4A1512;
  color: #FBF3E4;
}
.rg-hero--dark .rg-hero-right {
  background: #4A1512;
}
.rg-hero--dark h1 {
  color: #FBF3E4;
}
.rg-hero.rg-hero--dark h1 .small {
  color: rgba(251,243,228,0.35);
}
.rg-hero--dark .rg-hero-sub {
  color: rgba(251,243,228,0.7);
}
.rg-hero--dark .rg-hero-tag {
  background: rgba(224,179,46,0.2);
  border-color: rgba(224,179,46,0.3);
}
.rg-hero--dark .rg-hero-tag-txt {
  color: #ECC840;
}
.rg-hero--dark .rg-hero-stats {
  border-color: rgba(251,243,228,0.15);
}
.rg-hero--dark .rg-stat-val {
  color: #FBF3E4;
}
.rg-hero--dark .rg-stat-lbl {
  color: rgba(251,243,228,0.6);
}
.rg-hero--dark .rg-stat {
  border-color: rgba(251,243,228,0.15);
}
.rg-hero--dark .rg-hero-btn--primary {
  background: #E0B32E;
  color: #4A1512;
}
.rg-hero--dark .rg-hero-btn--secondary {
  color: #FBF3E4;
  border-color: rgba(251,243,228,0.25);
}
.rg-hero--dark .rg-coach-card {
  background: rgba(74,21,18,0.5);
  /*border-color: rgba(251,243,228,0.2);*/
  border:none;
  margin-bottom: 20px;
}
.rg-hero--dark .rg-card-name {
  color: #FBF3E4;
}
.rg-hero--dark .badge-sm-or {
  background: rgba(224,179,46,0.2);
  color: #ECC840;
  border-color: rgba(224,179,46,0.3);
}
.rg-hero--dark .badge-sm-b {
  background: rgba(251,243,228,0.15);
  color: #FBF3E4;
  border-color: rgba(251,243,228,0.2);
}

.rg-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rg-hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 1.25rem;
}

.rg-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--or-light);
  border: 1px solid var(--border-or);
  padding: 0.5rem 1rem;
  width: fit-content;
  margin-bottom: 32px;
}

.rg-hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--or);
  flex-shrink: 0;
}

.rg-hero-tag-txt {
  font-size: 0.625rem;
  font-weight: 600;
  color: #8a5a00;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rg-hero h1 {
  font-size: 3.5rem;
  color: var(--bordeaux);
  line-height: 0.86;
  letter-spacing: 0.01em;
}

.rg-hero.rg-hero--dark h1{
    color: #FBF3E4;
}

.rg-hero h1 em {
  color: var(--or);
  font-style: normal;
}

.rg-hero h1 .small {
  font-size: 2.25rem;
  color: rgba(74,21,18,0.22);
}

.rg-hero-sub {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(74,21,18,0.6);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 36px;
}

.rg-hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.btn-bordeaux {
  background: var(--bordeaux);
  color: var(--creme);
  font-family: var(--font-title);
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  padding: 0.9375rem 2.125rem;
}

.btn-or-outline {
  background: transparent;
  color: var(--bordeaux);
  font-family: var(--font-title);
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  padding: 0.875rem 2.125rem;
  border: 1.5px solid var(--border);
}

.rg-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.rg-stat {
  padding-right: 1.5rem;
  border-right: 1px solid var(--border);
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.rg-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.rg-stat-val {
  font-family: var(--font-title);
  font-size: 1.75rem;
  color: var(--bordeaux);
  letter-spacing: 0.03em;
  line-height: 1;
}

.rg-stat-lbl {
  font-size: 0.625rem;
  font-weight: 400;
  color: rgba(74,21,18,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* Hero right */
.rg-hero-right {
  background: var(--creme);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:space-around;
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.5rem;
  gap: 1.5rem;
}

.rg-hero-right:before{
    content:"";
    display: block;
    position:absolute;
    width: 100%;
    height: 100%;
    background:url('http://retourgagnantcoach.fr/wp-content/uploads/2026/06/terrain-tennis-clair.webp') no-repeat;
    background-size: contain;
    background-position: 50%;
}

.rg-hero--dark .rg-hero-right:before{
    content:'';
    display: block;
    position: absolute;
    width:100%;
    height:100%;
    background:url('http://retourgagnantcoach.fr/wp-content/uploads/2026/06/terrain-tennis-clair-petit-30-2.webp') no-repeat;
    background-size: contain;
    background-position: 50% 50%;
}

.rg-hero-right svg.logo-large {
  width: 160px;
  height: 160px;
  position: relative;
  z-index: 2;
}

.rg-coach-card {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-left: 4px solid var(--or);
  padding: 1.25rem 1.375rem;
  width: 100%;
  max-width: 340px;
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.rg-avatar {
  width: 48px;
  height: 48px;
  background: var(--bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rg-avatar-txt {
  font-family: var(--font-title);
  font-size: 1.125rem;
  color: var(--blanc);
}

.rg-avatar img{
    transition: all 1s ease;
}

.rg-avatar img:hover{
    transform:scale(1.6);
    /*border:3px solid var(--or);*/
}

.rg-card-name {
  font-family: var(--font-title);
  font-size: 1.125rem;
  color: var(--bordeaux);
  letter-spacing: 0.04em;
  line-height: 1;
}

.rg-card-role {
  font-size: 0.625rem;
  font-weight: 400;
  color: rgba(74,21,18,0.55);
  margin-top: 0.25rem;
}

.rg-hero--dark .rg-card-role{
    color: #FBF3E4;
}

.rg-card-badges {
  display: flex;
  gap: 0.375rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.badge-sm {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
}

.badge-sm-or {
  background: var(--or-light);
  color: #7a5500;
  border: 1px solid var(--border-or);
}

.badge-sm-b {
  background: rgba(74,21,18,0.07);
  color: var(--bordeaux);
  border: 1px solid var(--border);
}

/* ── Trust Bar ── */
.rg-trust-bar {
  background: var(--or);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.rg-trust-item {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-right: 1px solid rgba(74,21,18,0.15);
  border-bottom: 1px solid rgba(74,21,18,0.15);
}

.rg-trust-item:nth-child(2n) {
  border-right: none;
}

.rg-trust-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.rg-trust-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.rg-trust-txt {
  font-family: var(--font-title);
  font-size: 0.75rem;
  color: var(--bordeaux);
  letter-spacing: 0.05em;
}

/* ── Section generic ── */
.rg-section {
  padding: 3rem 1.25rem;
}

.rg-section-creme {
  background: var(--creme);
}

.rg-tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}

.rg-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--or);
}

.rg-h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--bordeaux);
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin-bottom: 0.375rem;
}

.rg-h2 em {
  color: var(--or);
  font-style: normal;
}

/* ── Coach ── */
.rg-coach-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
}

.rg-coach-visual {
  background: var(--creme);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.rg-coach-monogram {
  font-family: var(--font-title);
  font-size: 6rem;
  color: rgba(74,21,18,0.08);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}

.rg-coach-info {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--blanc);
}

.rg-coach-name {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--bordeaux);
  letter-spacing: 0.03em;
  line-height: 0.9;
}

.rg-coach-role-lbl {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--or);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.375rem;
  margin-bottom: 1.25rem;
}

.rg-coach-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.badge {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
}

.badge-or {
  background: var(--or-light);
  color: #7a5500;
  border: 1px solid var(--border-or);
}

.badge-b {
  background: rgba(74,21,18,0.07);
  color: var(--bordeaux);
  border: 1px solid var(--border);
}

.rg-coach-quote {
  font-size: 0.875rem;
  font-weight: 300;
  font-style: italic;
  color: var(--bordeaux);
  line-height: 1.75;
  border-left: 3px solid var(--or);
  padding-left: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.75;
}

.btn-b {
  background: var(--bordeaux);
  color: var(--creme);
  font-family: var(--font-title);
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  padding: 0.8125rem 1.625rem;
  width: fit-content;
}

/* ── Cours ── */
.rg-cours-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.rg-cours-card {
  background: var(--blanc);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}

.rg-cours-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border);
}

.rg-cours-card.featured::before {
  background: var(--or);
}

.rg-cours-num {
  font-family: var(--font-title);
  font-size: 3rem;
  color: rgba(74,21,18,0.06);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.rg-cours-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  color: var(--bordeaux);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.rg-cours-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(74,21,18,0.65);
  line-height: 1.8;
  margin-bottom: 1.125rem;
}

.rg-cours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.rg-cours-list li {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(74,21,18,0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rg-cours-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--or);
  flex-shrink: 0;
}

.rg-cours-cta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--or);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Publics ── */
.rg-pub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}

.rg-pub-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rg-pub-item:nth-child(2n) {
  border-right: none;
}

.rg-pub-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.rg-pub-item:hover {
  background: var(--creme);
}

.rg-pub-num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: rgba(224,179,46,0.35);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.rg-pub-label {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--bordeaux);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.rg-pub-desc {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(74,21,18,0.55);
  line-height: 1.65;
}

/* ── PTR ── */
.rg-ptr {
  background: var(--bordeaux);
  padding: 2.5rem 1.25rem;
  display: grid;
  grid-template-columns: min-content;
  /*flex-direction: column;*/
  gap: 1.5rem;
  /*align-items: flex-start;*/
}

.rg-ptr-icon {
  width: 56px;
  height: 56px;
  background: rgba(224,179,46,0.12);
  border: 1px solid rgba(224,179,46,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rg-ptr-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  color: var(--blanc);
  letter-spacing: 0.03em;
  line-height: 1;
}

.rg-ptr-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(251,243,228,0.6);
  line-height: 1.65;
  margin-top: 0.375rem;
}

.btn-or {
  background: var(--or);
  color: var(--bordeaux);
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.875rem 1.75rem;
  white-space: nowrap;
}

/* ── Valeurs ── */
.rg-valeurs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}

.rg-valeur-item {
  padding: 1.5rem 0.75rem;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rg-valeur-item:nth-child(3n) {
  border-right: none;
}

.rg-valeur-item:nth-last-child(-n+3) {
  border-bottom: none;
}

.rg-valeur-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.rg-valeur-name {
  font-family: var(--font-title);
  font-size: 0.875rem;
  color: var(--bordeaux);
  letter-spacing: 0.04em;
}

.rg-valeur-desc {
  font-size: 0.625rem;
  font-weight: 300;
  color: rgba(74,21,18,0.5);
  margin-top: 0.25rem;
}

/* ── Actus ── */
.rg-actus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.rg-actu-card {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--blanc);
}

.rg-actu-thumb {
  height: 180px;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.rg-actu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.rg-actu-cat {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: var(--or);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-title);
  font-size: 0.75rem;
  color: var(--bordeaux);
  letter-spacing: 0.06em;
  z-index: 2;
}

.rg-actu-body {
  padding: 1.5rem 1.375rem;
}

.rg-actu-date {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--or);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.rg-actu-title {
  font-family: var(--font-title);
  font-size: 1.125rem;
  color: var(--bordeaux);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.rg-actu-title a {
  color: inherit;
  text-decoration: none;
}

.rg-actu-txt {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(74,21,18,0.6);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .rg-actus-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CTA ── */
.rg-cta {
  background: var(--or);
  padding: 4rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rg-cta h2 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--bordeaux);
  letter-spacing: 0.02em;
  line-height: 0.88;
}

.rg-cta-sub {
  font-size: 0.9375rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(74,21,18,0.6);
  margin-top: 0.875rem;
}

.rg-cta-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-cta-main {
  background: var(--bordeaux);
  color: var(--creme);
  font-family: var(--font-title);
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  padding: 1.0625rem 2.625rem;
}

.btn-cta-sec {
  background: transparent;
  color: var(--bordeaux);
  font-family: var(--font-title);
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  padding: 1rem 2.25rem;
  border: 2px solid rgba(74,21,18,0.3);
}

/* ── Footer ── */
.rg-footer {
  background: var(--bordeaux-dark);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.rg-footer-logo {
  font-family: var(--font-title);
  font-size: 1rem;
  color: rgba(251,243,228,0.3);
  letter-spacing: 0.07em;
}

.rg-footer-links {
  display: flex;
  gap: 1.5rem;
}

.rg-footer-link {
  font-size: 0.6875rem;
  color: rgba(251,243,228,0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/**** trust bar ****/
body .is-layout-flex.trust-bar{
    background: var(--or);
}
.trust-item{
    padding: 15px 20px;
    width:25%;
}
.trust-txt{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--bordeaux);
    letter-spacing: 0.05em;
}
.trust-icon{
    font-size: 17px;
}
@media (max-width:767px){
    body .is-layout-flex.trust-bar{
        flex-direction: column;
    }
    .trust-item{
        width:100%;
        flex-direction: row;
        flex-wrap:nowrap !important;
    }
    .trust-item .trust-icon:first-child{
        flex-basis: 4% !important;
    }
}

/* ============================================
   SINGLE POST - AMÉLIORATIONS GÉNÉRALES
   ============================================ */

/* Conteneur de lecture optimisé (Max 850px pour le texte) */
.single .rg-article-content {
    max-width: 850px;
    margin: 0 auto;
    color: var(--bordeaux);
}

/* Typographie Editorial */
.single .rg-article-content p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.05rem;
}

.single .rg-article-content h2.wp-block-heading,.single .rg-article-content h2.faq-geo-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--bordeaux);
    margin: 3rem 0 1.5rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    border-bottom: 2px solid var(--or);
    display: inline-block;
    padding-bottom: 5px;
}

.single .rg-article-content h3.wp-block-heading {
    font-family: var(--font-title);
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: var(--bordeaux);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Listes Gutenberg */
.single .rg-article-content ul.wp-block-list,.page .rg-page-content ul.wp-block-list {
    margin-bottom: 2rem;
    padding-left: 1.2rem;
}

.page .rg-page-content ul.wp-block-list{
    margin-top: 2rem;
}

.single .rg-article-content ul.wp-block-list li,.page .rg-page-content ul.wp-block-list li {
    margin-bottom: 0.8rem;
    position: relative;
    list-style: none;
}

.single .rg-article-content ul.wp-block-list li::before,.page .rg-page-content ul.wp-block-list li::before{
    content: "→";
    color: var(--or);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}
.page .rg-page-content ul.wp-block-list li::before{
    content:"■";
}