/* Base */
:root{
  --bg:#f5f5f5;
  --bg-light:#f5f5f5;
  --surface:#ffffff;
  --surface-soft:#f9fafb;
  --text:#111827;
  --text-soft:#374151;
  --muted:#6b7280;
  --border:#e5e7eb;
  --border-soft:#f1f5f9;
  --primary:#4a0202;
  --primary-dark:#260000;
  --accent:#b91c1c;
  --accent-soft:rgba(185,28,28,0.06);
  --gold:#f4c542;
  --radius:12px;
  --radius-lg:14px;
  --shadow-sm:0 6px 18px rgba(15,23,42,.08);
  --shadow-md:0 10px 24px rgba(15,23,42,.12);
  --shadow-lg:0 10px 26px rgba(0,0,0,.12);
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--primary-dark);
  padding-bottom:0;
}

img{
  max-width:100%;
}

a{
  color:var(--accent);
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

button,
input,
textarea{
  font:inherit;
}

.container{
  width:min(1200px, 90%);
  margin:0 auto;
}

.site-main{
  padding-bottom:2.5rem;
  background:var(--bg-light);
}

.page-section,
.ftco-section{
  padding:1.5rem 0 2.5rem;
}

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

.surface-card{
  background:var(--surface);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
}

.stack-card{
  display:flex;
  flex-direction:column;
}

.stack-card-lg{
  padding:1.5rem;
}

.grid-top{
  margin-top:1rem;
}

.mt-md{
  margin-top:1rem;
}

.mt-lg{
  margin-top:1.5rem;
}

.mb-0{
  margin-bottom:0 !important;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  margin-bottom:1.5rem;
  padding:.5rem 0;
  color:#fff;
  background:linear-gradient(90deg,var(--primary-dark),var(--primary),var(--primary-dark));
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.logo{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.logo-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:180px;
  height:48px;
  padding:.2rem .5rem;
  border:2px solid #ffffff;
  border-radius:12px;
  background:rgba(255,255,255,.03);
  box-shadow:0 4px 14px rgba(0,0,0,.18);
  overflow:hidden;
}

.logo-img{
  display:block;
  width:auto;
  max-width:100%;
  height:28px;
  margin:0 auto;
  object-fit:contain;
  object-position:center;
}

.tagline{
  margin-top:.3rem;
  text-align:center;
  font-size:.8rem;
  line-height:1.2;
  opacity:.9;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:1rem;
}

.main-nav a{
  position:relative;
  padding-bottom:.15rem;
  color:#fee2e2;
  font-size:.95rem;
  font-weight:500;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-.2rem;
  width:0;
  height:2px;
  background:#fff;
  transition:width .2s ease-out;
}

.main-nav a:hover{
  color:#fff;
}

.main-nav a:hover::after,
.main-nav a.active::after{
  width:100%;
}

.main-nav a.active{
  font-weight:700;
}

.nav-toggle{
  display:none;
  padding:.25rem;
  border:none;
  background:transparent;
  cursor:pointer;
}

.nav-toggle-bar{
  display:block;
  width:20px;
  height:2px;
  margin:3px 0;
  background:#fee2e2;
}

/* Shared section content */
.section-header{
  margin-bottom:2rem;
  text-align:center;
}

.section-header h2{
  margin:0 0 .4rem;
  color:var(--text);
  font-size:1.4rem;
}

.section-header p{
  margin:0;
  color:#4b5563;
  font-size:.95rem;
}

.latest-grid{
  display:grid;
  gap:1.8rem;
}

@media (min-width:992px){
  .latest-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

.latest-column{
  min-width:0;
}

.latest-card{
  display:flex;
  gap:.75rem;
  padding:.9rem 1rem;
  background:var(--surface);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
}

.card-title{
  margin:0 0 .7rem;
  color:var(--text);
  font-size:1.1rem;
}

.card-title-lg{
  margin-bottom:1rem;
}

.card-text{
  margin:0 0 .7rem;
  color:var(--text-soft);
  line-height:1.8;
}

.card-text:last-child{
  margin-bottom:0;
}

.card-text-muted{
  color:#4b5563;
}

.card-emphasis{
  color:var(--text);
  font-weight:700;
}

.card-list{
  margin:0;
  padding-left:1.2rem;
  color:var(--text-soft);
  line-height:1.8;
}

.card-list li + li{
  margin-top:.35rem;
}

/* Buttons */
.radio-cta{
  text-align:center;
  margin:2rem auto 3rem;
  padding:8px 0;
}

.radio-cta-spaced{
  margin-top:1.5rem;
  margin-bottom:0;
}

.btn-live-radio{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.75rem 1.8rem;
  border:none;
  border-radius:999px;
  background:var(--primary);
  color:#fff;
  font-size:.95rem;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,.3);
  cursor:pointer;
  transition:background .15s, transform .15s, box-shadow .15s;
}

.btn-live-radio:hover{
  background:var(--primary-dark);
  color:#fff;
  text-decoration:none;
  transform:translateY(-1px);
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}

/* Top marquee */
.top-marquee{
  width:100%;
  overflow:hidden;
  white-space:nowrap;
  color:#fff;
  background:#050c2b;
}

.top-marquee-inner{
  display:inline-block;
  padding:.55rem 0;
  padding-left:100%;
  will-change:transform;
  animation:marquee-left 18s linear infinite;
}

.top-marquee:hover .top-marquee-inner{
  animation-play-state:paused;
}

@keyframes marquee-left{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-100%); }
}

@media (prefers-reduced-motion:reduce){
  .top-marquee-inner{
    padding-left:0;
    animation:none;
  }
}

/* Home hero */
.hero{
  margin-bottom:2rem;
  padding:1.6rem 0 2rem;
  color:#f9fafb;
  background:var(--primary);
}

.hero .hero-inner{
  display:flex;
  align-items:stretch;
  gap:20px;
}

.hero .hero-column{
  min-width:0;
}

.hero .hero-column-ad{
  display:flex;
  flex:0 0 320px;
}

.ad-card.ad-card-img{
  display:block;
  width:100%;
  height:100%;
  overflow:hidden;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  box-shadow:0 10px 26px rgba(0,0,0,.18);
}

.ad-card.ad-card-img .ad-img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

@media (max-width:1100px){
  .hero .hero-inner{
    flex-wrap:wrap;
  }

  .hero .hero-column-ad{
    flex:1 1 320px;
  }
}

@media (max-width:640px){
  .hero .hero-inner{
    gap:14px;
  }

  .hero .hero-column-ad{
    flex:1 1 100%;
  }

  .ad-card.ad-card-img{
    border-radius:12px;
  }
}

.hero-bottom-visual{
  width:100%;
  padding:1.25rem 0 0;
}

.hero-bottom-visual .container{
  display:flex;
  justify-content:center;
}

.hero-bottom-img{
  display:block;
  width:100%;
  max-width:1200px;
  height:auto;
  margin:0 auto;
  border-radius:12px;
  box-shadow:var(--shadow-lg);
}

/* Home - A la une */
.home-une{
  padding:1.6rem 0 2.2rem;
  background:var(--bg);
}

.une-grid{
  display:grid;
  gap:1.4rem;
}

@media (min-width:992px){
  .une-grid{
    grid-template-columns:2fr 1fr;
    align-items:start;
  }
}

.une-feature,
.une-sidebar,
.une-card{
  overflow:hidden;
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}

.une-feature{
  background:#111;
  box-shadow:var(--shadow-md);
}

.une-feature-link,
.une-card-link{
  display:block;
  color:inherit;
  text-decoration:none;
}

.une-feature-link{
  position:relative;
}

.une-feature-media img{
  display:block;
  width:100%;
  height:360px;
  object-fit:cover;
}

@media (max-width:640px){
  .une-feature-media img{
    height:260px;
  }
}

.une-feature-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:1rem 1rem 1.1rem;
  color:#fff;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.78) 72%, rgba(0,0,0,.85) 100%);
}

.une-badge{
  display:inline-block;
  padding:.3rem .6rem;
  border-radius:6px;
  background:var(--accent);
  color:#fff;
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.une-badge-alt{
  background:#dc2626;
}

.une-feature-title{
  margin:.55rem 0 0;
  font-size:1.55rem;
  line-height:1.2;
  font-weight:900;
}

.une-subgrid{
  display:grid;
  gap:1rem;
  margin-top:1rem;
}

@media (min-width:768px){
  .une-subgrid{
    grid-template-columns:1fr 1fr;
  }
}

.une-card{
  border:1px solid rgba(148,163,184,.22);
}

.une-card-media img{
  display:block;
  width:100%;
  height:150px;
  object-fit:cover;
}

.une-card-body{
  padding:.85rem .9rem 1rem;
}

.une-card-title{
  margin:.55rem 0 0;
  color:var(--text);
  font-size:1rem;
  font-weight:800;
  line-height:1.25;
}

.une-sidebar{
  border:1px solid rgba(148,163,184,.22);
}

.une-sidebar-head{
  padding:1rem 1rem .85rem;
  border-bottom:1px solid var(--border);
}

.une-sidebar-title{
  margin:0;
  color:var(--text);
  font-size:1.35rem;
  font-weight:900;
}

.une-recentes{
  margin:0;
  padding:.4rem 0;
  list-style:none;
}

.une-recente-item{
  border-bottom:1px solid var(--border-soft);
}

.une-recente-item:last-child{
  border-bottom:none;
}

.une-recente-link{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:.8rem;
  align-items:start;
  padding:.85rem 1rem;
  color:inherit;
  text-decoration:none;
}

.une-recente-link:hover{
  background:#f8fafc;
}

.une-time{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:28px;
  border-radius:6px;
  background:var(--accent);
  color:#fff;
  font-size:.8rem;
  font-weight:900;
}

.une-recente-text{
  color:var(--text);
  font-size:.95rem;
  font-weight:600;
  line-height:1.35;
}

/* Global players */
.site-header + .global-radio-player{
  position:relative !important;
  left:auto;
  right:auto;
  bottom:auto;
  z-index:40;
  width:100%;
  margin:-1.5rem 0 1rem;
  background:rgba(10,10,10,0.96);
  border-top:0;
  box-shadow:0 8px 24px rgba(0,0,0,.22);
  backdrop-filter:blur(8px);
}

.footer-radio-player{
  position:fixed !important;
  left:0;
  right:0;
  bottom:0 !important;
  z-index:99999;
  width:100%;
  background:rgba(10,10,10,0.98);
  border-top:1px solid rgba(255,255,255,.12);
  box-shadow:0 -8px 24px rgba(0,0,0,.22);
  backdrop-filter:blur(8px);
}

.global-radio-player-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  max-width:1200px;
  margin:0 auto;
  padding:10px 16px;
}

.global-radio-brand{
  display:flex;
  flex-direction:column;
  min-width:220px;
  line-height:1.2;
}

.global-radio-brand strong{
  color:#fff;
  font-size:15px;
  font-weight:700;
}

.global-radio-brand span{
  margin-top:2px;
  color:var(--gold);
  font-size:13px;
  font-weight:600;
}

.custom-radio-player{
  display:flex;
  flex:1;
  align-items:center;
  justify-content:center;
  gap:16px;
  max-width:700px;
  margin:0 auto;
}

.radio-play-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  min-width:30px;
  border:none;
  border-radius:50%;
  background:#c40000;
  color:#fff;
  font-size:28px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(196,0,0,.35);
  transition:transform .2s ease, background .2s ease;
}

.radio-play-btn:hover{
  background:#e00000;
  transform:scale(1.05);
}

.radio-play-btn:active{
  transform:scale(.98);
}

.radio-player-meta{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:180px;
}

.radio-player-title{
  color:#fff;
  font-size:15px;
  font-weight:700;
}

.radio-player-status{
  margin-top:4px;
  color:var(--gold);
  font-size:13px;
}

.custom-radio-player audio{
  display:none;
}

/* About */
.about-card{
  padding:1.25rem;
  background:var(--surface);
  border-radius:12px;
  box-shadow:var(--shadow-sm);
}

.about-card h3{
  margin:0 0 .6rem;
  color:var(--text);
}

.about-card p{
  margin:0 0 1rem;
  color:var(--text-soft);
  line-height:1.85;
}

.about-divider{
  height:1px;
  margin:1.15rem 0;
  border:0;
  background:rgba(17,24,39,.10);
}

.about-list,
.about-ol{
  margin:.25rem 0 1.15rem;
  color:var(--text-soft);
  line-height:1.85;
}

.about-list{
  padding-left:1.1rem;
}

.about-ol{
  padding-left:1.25rem;
}

.about-list li{
  margin:.25rem 0;
}

.about-ol li{
  margin:.35rem 0;
}

.about-quote{
  margin-top:1.1rem !important;
  padding:.9rem 1rem;
  color:var(--text) !important;
  background:var(--accent-soft);
  border-left:4px solid rgba(185,28,28,.85);
  border-radius:10px;
}

/* Contact */
.contact-card{
  max-width:760px;
  margin:0 auto;
  padding:1.2rem;
}

.contact-form{
  display:grid;
  gap:.8rem;
}

.contact-field label{
  display:block;
  margin-bottom:.35rem;
  color:var(--text);
  font-weight:500;
}

.contact-field input,
.contact-field textarea{
  width:100%;
  padding:.7rem;
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
}

.contact-field textarea{
  min-height:8rem;
  resize:vertical;
}

.contact-note{
  margin-top:.4rem;
  color:var(--muted);
  font-size:.9rem;
  opacity:.8;
}

/* Programmes */
.programme-block{
  margin-bottom:1.25rem;
  padding:1rem;
  overflow:auto;
}

.programme-block:last-child{
  margin-bottom:0;
}

.programme-block-title{
  margin:.25rem 0 .35rem;
  color:var(--text);
  font-size:1.1rem;
}

.programme-block-intro{
  margin:0 0 1rem;
  color:#4b5563;
  line-height:1.7;
}

.programme-table{
  width:100%;
  min-width:900px;
  border-collapse:collapse;
}

.programme-table th{
  padding:.75rem;
  border-bottom:1px solid var(--border);
  text-align:left;
  color:var(--text);
  font-weight:700;
}

.programme-table td{
  padding:.75rem;
  border-bottom:1px solid var(--border-soft);
  color:var(--text-soft);
}

.programme-table tbody tr:last-child td{
  border-bottom:none;
}

.programme-table td strong{
  color:var(--text);
}

/* Partenariat */
.partenariat-page .latest-card{
  min-height:100%;
}

.partner-card{
  flex-direction:column;
}

.partner-card-lg{
  padding:1.5rem;
}

.partner-buttons{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:1rem;
}

.btn-partner-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  min-height:48px;
  padding:.85rem 1.25rem;
  border:none;
  border-radius:999px;
  background:var(--text);
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

.partner-hidden{
  display:none;
}

.partner-hidden.is-open{
  display:block;
  animation:partner-fade .35s ease;
}

@keyframes partner-fade{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.partner-highlight{
  padding:1rem 1.1rem;
  color:var(--text-soft);
  line-height:1.8;
  background:var(--surface-soft);
  border-left:4px solid var(--text);
  border-radius:10px;
}

.partner-list{
  margin:0;
  padding-left:1.2rem;
  line-height:1.85;
  color:var(--text-soft);
}

.partner-list li + li{
  margin-top:.45rem;
}

/* Footer */
.site-footer{
  margin-top:2.5rem;
  margin-bottom:0 !important;
  padding:2rem 0 64px !important;
  color:#fbeaea;
  background:var(--primary-dark);
}

.footer-inner{
  display:grid;
  gap:1.4rem;
  width:min(1200px, 90%);
  margin:0 auto 1rem;
}

@media (min-width:768px){
  .footer-inner{
    grid-template-columns:2fr 1fr 1fr;
  }
}

.footer-col h4{
  margin:0 0 .5rem;
}

.footer-inner p{
  color:#fde2e2;
  font-size:.9rem;
}

.footer-links{
  margin:0;
  padding:0;
  list-style:none;
  font-size:.9rem;
}

.footer-links li{
  margin-bottom:.25rem;
}

.footer-inner a{
  color:#fee2e2;
}

.footer-inner a:hover{
  color:#fff;
}

.footer-brand{
  display:flex;
  gap:.9rem;
  align-items:flex-start;
  color:inherit;
  text-decoration:none;
}

.footer-brand:hover{
  text-decoration:none;
}

.footer-logo{
  display:block;
  width:auto;
  height:36px;
}

.footer-brand-text h4,
.footer-brand-text p{
  margin:0;
}

.footer-tip{
  margin-top:1rem;
}

.footer-bottom{
  margin-bottom:0 !important;
  padding-top:.5rem;
  padding-bottom:0 !important;
  border-top:1px solid rgba(255,255,255,.25);
  text-align:center;
  font-size:.8rem;
  opacity:.7;
}

/* Responsive */
@media (max-width:768px){
  .main-nav{
    position:absolute;
    top:100%;
    right:0;
    left:0;
    display:none;
    flex-direction:column;
    padding:.5rem 1rem .8rem;
    background:var(--primary-dark);
  }

  .main-nav.is-open{
    display:flex;
  }

  .main-nav a{
    margin:.15rem 0;
  }

  .nav-toggle{
    display:block;
  }

  .global-radio-player-inner{
    flex-direction:column;
    gap:12px;
    padding:14px 16px;
  }

  .global-radio-brand{
    min-width:auto;
    width:100%;
    text-align:center;
  }

  .custom-radio-player{
    width:min(100%, 420px);
    justify-content:center;
    align-items:center;
    margin:0 auto;
    padding:10px 14px;
    border-radius:18px;
    background:rgba(255,255,255,.05);
  }

  .radio-play-btn{
    width:64px;
    height:64px;
    min-width:64px;
    font-size:28px;
  }

  .radio-player-meta{
    min-width:0;
    flex:1;
    align-items:center;
    text-align:center;
  }

  .radio-player-title{
    font-size:16px;
  }

  .radio-player-status{
    font-size:14px;
  }

  .site-footer{
    padding-bottom:110px !important;
  }

  .logo-link{
    width:150px;
    height:44px;
  }

  .logo-img{
    height:24px;
  }

  .tagline{
    font-size:.74rem;
  }
}

@media (max-width:768px){
  .global-radio-player-inner{
    justify-content:center;
    align-items:center;
  }

  .custom-radio-player{
    display:inline-flex;
    width:auto !important;
    max-width:100%;
    margin:0 auto;
    justify-content:center;
    align-items:center;
    gap:14px;
  }

  .radio-player-meta{
    flex:0 0 auto !important;
    min-width:auto !important;
    width:auto !important;
    align-items:center !important;
    text-align:center !important;
  }

  .radio-player-title,
  .radio-player-status{
    text-align:center;
  }
}

@media (max-width: 768px) {
  .site-header .radio-player-title {
    display: none;
  }
}

.radio-play-btn {
  transform: scale(0.8);
}

@media (max-width: 768px) {
  .radio-play-btn {
    transform: scale(0.4);
  }
}


@media (max-width: 768px) {
  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .logo {
    display: flex;
    align-items: center;
    width: auto;
  }

  .logo-link {
    border: none !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    display: inline-flex;
  }

  .logo-img {
    width: 70px;
    height: auto;
    display: block;
  }

  .tagline {
    display: none !important;
  }

  .global-radio-player {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0;
  }

  .global-radio-player-inner {
    width: auto;
    padding: 0;
  }

  .custom-radio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 20px;
  }

  .radio-play-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 14px;
    transform: scale(0.8);
  }

  .radio-player-title {
    display: none !important;
  }

  .radio-player-status {
    font-size: 16px;
    white-space: nowrap;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
  }

  .nav-toggle-bar {
    width: 28px;
    height: 3px;
    border-radius: 10px;
  }
}

.une-read-more {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  background: #e21b1b;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  letter-spacing: 0.4px;
}

.une-read-more:hover {
  background: #b80000;
  color: #ffffff !important;
  text-decoration: none;
}
/* =========================
   RESPONSIVE - PAGE ACCUEIL
========================= */

.une-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}

.une-main {
  min-width: 0;
}

.une-subgrid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.une-card {
  width: 100%;
  overflow: hidden;
}

.une-card-media img {
  width: 100%;
  height: auto;
  display: block;
}

.une-ad-banner {
  width: 100%;
  box-sizing: border-box;
}

/* Tablette */
@media (max-width: 991px) {
  .une-grid {
    grid-template-columns: 1fr;
  }

  .une-sidebar {
    width: 100%;
  }

  .une-subgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .une-ad-banner {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left;
  }

  .une-ad-banner a {
    white-space: normal !important;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .home-une .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .une-subgrid {
    grid-template-columns: 1fr !important;
  }

  .une-card-title {
    font-size: 17px;
    line-height: 1.35;
  }

  .une-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
  }

  .une-card-body {
    padding: 16px;
  }

  .une-read-more {
    display: inline-block;
    width: auto;
    max-width: 100%;
  }

  .une-ad-banner {
    padding: 18px !important;
    border-radius: 12px !important;
  }

  .une-ad-banner h3 {
    font-size: 18px !important;
    line-height: 1.3;
  }

  .une-ad-banner p {
    font-size: 14px !important;
    line-height: 1.5;
  }

  .une-ad-banner a {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .top-marquee-inner {
    font-size: 13px;
  }
}

/* Très petits écrans */
@media (max-width: 380px) {
  .une-card-title {
    font-size: 16px;
  }

  .une-card-body {
    padding: 14px;
  }

  .une-badge,
  .une-read-more {
    font-size: 12px;
  }
}

/* ==============================
   PAGE CONTACT - 2 CARTES
   ============================== */

.contact-page .contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 35px;
}

.contact-page .surface-card {
  height: 100%;
}

.contact-info-card,
.contact-card {
  padding: 32px;
  border-radius: 22px;
}

.contact-info-card h3,
.contact-card h3 {
  margin-bottom: 14px;
}

.contact-info-card p {
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 16px;
}

.contact-info-list li {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-info-list strong {
  font-size: 0.95rem;
  opacity: 0.85;
}

.contact-info-list a {
  font-weight: 700;
  text-decoration: none;
}

.contact-socials {
  margin-top: 26px;
}

.contact-socials h4 {
  margin-bottom: 14px;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

.contact-social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field label {
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  outline: none;
}

.contact-field textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-note {
  margin-top: 4px;
  font-size: 0.92rem;
  opacity: 0.75;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-page .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-card {
    padding: 24px;
  }
}

.featured-full-article {
    margin: 40px 0;
    padding: 40px 0;
}

.featured-full-article-inner {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.featured-full-article .article-category {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #b40000;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.featured-full-article h1 {
    margin-bottom: 12px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
}

.featured-full-article .article-author {
    margin-bottom: 24px;
    color: #666;
    font-weight: 600;
}

.article-full-image {
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 16px;
}

.article-full-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.article-full-content {
    font-size: 17px;
    line-height: 1.8;
    color: #222;
}

.article-full-content h2,
.article-full-content h3,
.article-full-content h4 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.article-full-content p {
    margin-bottom: 18px;
}

.article-back-link {
    margin-top: 28px;
}

.article-back-link a {
    font-weight: 700;
    color: #b40000;
    text-decoration: none;
}

.article-back-link a:hover {
    text-decoration: underline;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #b40000;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.read-more-btn:hover {
    background: #7f0000;
    color: #ffffff;
}

/* Grille des articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

/* Carte article */
.article-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Le bouton reste toujours en bas de la carte */
.article-card .btn,
.article-card a.btn,
.article-card .read-more {
    margin-top: auto;
    align-self: flex-start;
}

/* Responsive tablette */
@media (max-width: 991px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive mobile */
@media (max-width: 575px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}