

/* ---- header ---- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero {
    position: relative;
    width: 100%;
    height: 720px;
    background: #0F274D;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    right: 10%;
    bottom: 0;

    width: 62%;
    height: 100%;

    object-fit: cover;
    object-position: center;
right:8%;
    width:65%;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

background: linear-gradient(
    to right,
    #071732 28.99%,
     rgba(7, 23, 50, 0.96) 31.93%,
      rgba(7, 23, 50, 0.55) 36.97%, 
      rgba(7, 23, 50, 0) 54.2%, 
      rgba(7, 23, 50, 0) 68.07%, 
      rgba(7, 23, 50, 0.55) 77.31%, 
      rgba(7, 23, 50, 0.96) 85.29%, 
      #071732 90.34%);    
    
    }

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 40px 0;
}

.hero-left {
    width: 42%;
    color: white;    
}

.hero-left h1 {
    font-size: 70px;
    color: #ffffff;
}

.subtitle {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 18px;
    margin-top: 35px;
}

.description {
    font-size: 18px;
    line-height: 1.7;
    margin: 30px 0 0px 0;
    color: #ffffff;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.press-contact{
    margin-top:35px;

    display:flex;
    flex-direction:column;
    gap:5px;

    max-width:340px;
}

.press-contact__label{

    color:#D7BA63;

    font-size:.75rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.press-contact h3{

    margin:0;

    color:#fff;

    font-size:1.55rem;
    font-weight:700;
}

.press-contact__role{

    margin:0 0 10px;

    color:rgba(255,255,255,.78);

    line-height:1.5;
}

.press-contact a{

    display:flex;
    align-items:center;
    gap:10px;

    color:#fff;

    text-decoration:none;
    font-size:1rem;

    transition:.25s;
}

.press-contact a:hover{

    color:#D7BA63;
}
.buttons button {
    background: transparent;
    color: white;
    font-size: 16px;
    font-weight: 800;
    border: 2px solid #D7BA63;
    padding: 14px 26px;
    border-radius: 8px;
    cursor: pointer;
}

.buttons button:hover {
    background: #D7BA63;
    color: #0F274D;

}

/*--- gold line ---*/

.gold-line {
    
    width:250px;
    height:3px;
    background:#c8b46e;
    margin-bottom: 30px;
    
    
}

.gold-line2 {
    
    width:250px;
    height:3px;
    background:#c8b46e;
    margin:0 auto 40px;
    
    
}






.presse{

    max-width:1200px;
    margin:100px auto;

}

.section-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;

}

.section-header h2{

    font-size:32px;
    font-weight:800;
    text-transform:uppercase;
    position:relative;

}

.section-header h2::after{

    content:"";
    width:70px;
    height:4px;
    background:#c7a253;
    position:absolute;
    bottom:-12px;
    left:0;

}

.section-header a{

    color:#c7a253;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;

}

.presse-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.presse-card{

    background:#fff;
    border:1px solid #ececec;
    transition:.3s;
    overflow:hidden;

}

.presse-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.card-image{

    height:220px;
    overflow:hidden;

}

.card-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;

}

.presse-card:hover img{

    transform:scale(1.05);

}

.card-content{

    padding:25px;

}

.card-meta{

    display:flex;
    justify-content:space-between;
    font-size:13px;
    color:#777;
    margin-bottom:18px;

}

.card-content h3{

    font-size:24px;
    margin-bottom:15px;

}

.card-content p{

    color:#666;
    line-height:1.7;
    margin-bottom:25px;

}

.card-content a{

    color:#c7a253;
    font-weight:700;
    text-decoration:none;

}


#articles-list,
#interviews-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(199, 162, 83, 0.25);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.press-card:hover {
  transform: translateY(-6px);
  border-color: #c7a253;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.press-card__image-wrapper {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1a1a;
}

.press-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.press-card:hover .press-card__image {
  transform: scale(1.04);
}

.press-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
}

.press-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.press-card__date {
  margin: 0 0 0.75rem;
  color: #c7a253;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-card__title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.25;
}

.press-card__description {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.press-card__link {
  align-self: flex-start;
  margin-top: auto;
  color: #c7a253;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.press-card__link:hover {
  text-decoration: underline;
}

.press-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.press-message--error {
  color: #ffb4b4;
}

  #articles-list,
  #interviews-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .btn-secondary{
    position:relative;
    z-index:3;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 30px;

    background:#0e2748;
    color:white;

    border-radius:8px;
    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.btn-secondary:hover{
    background:#183c68;
    transform: translateY(-2px);

}

/* ==================================
   DOSSIER SPONSORING + MÉDIAS
================================== */

.press-bottom-section {
  width: 100%;
  background: #ffffff;
}

.press-bottom-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  min-height: 190px;
}

/* Blocs gauche et droite */

.press-download-block,
.press-trust-block {
  padding: 28px 25px 32px;
}

.press-download-block {
  border-right: 1px solid #dddddd;
}

/* Titres */

.press-download-block h2,
.press-trust-block h2 {
  margin: 0;

  color: #111111;

  font-family: "Poppins", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Petit trait doré */

.press-bottom-line {
  width: 70px;
  height: 2px;

  margin: 12px 0 22px;

  background: #c8b46e;
}

/* Bouton téléchargement */

.press-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;

  background: #c8b46e;
  color: #ffffff;

  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;

  border: 2px solid #c8b46e;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.press-download-button:hover {
  background: transparent;
  color: #c8b46e;
  transform: translateY(-2px);
}

/* Logos */

.press-trust-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.press-trust-logos img {
  display: block;

  width: auto;
  max-width: 95px;
  height: 42px;

  object-fit: contain;
}

/* =========================================================
   RESPONSIVE COMPLET - PAGE PRESSE
========================================================= */


/* =========================================================
   PETIT ORDINATEUR / TABLETTE PAYSAGE
   jusqu'à 1100px
========================================================= */

@media screen and (max-width:1100px){

    /* =========================
       HERO
    ========================= */

    .hero{
        height:620px;
    }

    .hero-image{
        right:0;
        width:72%;
        height:100%;
        object-position:60% center;
    }

    .hero-overlay{
        background:linear-gradient(
            to right,
            #071732 0%,
            rgba(7,23,50,.98) 30%,
            rgba(7,23,50,.75) 48%,
            rgba(7,23,50,.15) 73%,
            rgba(7,23,50,.65) 100%
        );
    }

    .hero-content{
        max-width:100%;
        padding:70px 35px 0;
    }

    .hero-left{
        width:52%;
    }

    .hero-left h1{
        font-size:52px;
        line-height:1.05;
    }

    .subtitle,
    .description{
        font-size:15px;
    }

    .subtitle{
        margin-top:28px;
        margin-bottom:22px;
    }

    .description{
        margin-top:22px;
    }

    .press-contact{
        margin-top:28px;
    }

    .press-contact h3{
        font-size:1.3rem;
    }

    .press-contact a{
        font-size:.9rem;
    }


    /* =========================
       ARTICLES / INTERVIEWS
    ========================= */

    .presse{
        width:calc(100% - 50px);
        margin:75px auto;
    }

    .section-header h2{
        font-size:28px;
    }

    #articles-list,
    #interviews-list,
    .presse-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
        gap:25px;
    }

    .press-card__title{
        font-size:1.2rem;
    }

    .press-card__description{
        font-size:.9rem;
    }


    /* =========================
       DOSSIER + MÉDIAS
    ========================= */

    .press-bottom-container{
        width:min(900px, calc(100% - 40px));
    }

}



/* =========================================================
   TABLETTE PORTRAIT / MOBILE
   jusqu'à 768px
========================================================= */

@media screen and (max-width:768px){

    /* =========================
       HERO MOBILE
    ========================= */

    .hero{
        height:auto;
        min-height:690px;
        padding-top:68px;
    }

    .hero-image{
        top:0;
        right:0;
        bottom:auto;

        width:100%;
        height:100%;

        object-position:45% center;
    }

    .hero-overlay{
        background:linear-gradient(
            to bottom,
            rgba(7,23,50,.35) 0%,
            rgba(7,23,50,.55) 35%,
            rgba(7,23,50,.92) 72%,
            #071732 100%
        );
    }

    .hero-content{
        min-height:622px;

        padding:45px 22px 38px;

        flex-direction:column;
        justify-content:center;
        align-items:flex-start;
    }

    .hero-left{
        width:100%;
        max-width:500px;
    }

    .hero-left h1{
        font-size:clamp(40px, 12vw, 52px);
        line-height:1.02;
    }

    .subtitle{
        margin:22px 0 15px;

        font-size:14px;
        line-height:1.55;
    }

    .description{
        margin:18px 0 0;

        font-size:13px;
        line-height:1.6;
    }

    .subtitle br,
    .description br{
        display:none;
    }

    .gold-line{
        width:140px;
        margin-bottom:15px;
    }


    /* =========================
       CONTACT PRESSE
    ========================= */

    .press-contact{
        margin-top:28px;
        gap:5px;
    }

    .press-contact__label{
        font-size:.68rem;
    }

    .press-contact h3{
        font-size:1.25rem;
    }

    .press-contact__role{
        font-size:.82rem;
    }

    .press-contact a{
        font-size:.85rem;
        overflow-wrap:anywhere;
    }


    /* =========================
       SECTIONS PRESSE
    ========================= */

    .presse{
        width:calc(100% - 36px);
        margin:55px auto;
    }

    .section-header{
        align-items:flex-start;
        flex-direction:column;
        gap:25px;

        margin-bottom:30px;
    }

    .section-header h2{
        font-size:1.55rem;
        line-height:1.2;
    }

    .section-header h2::after{
        width:55px;
        height:3px;
    }

    .section-header a{
        font-size:.72rem;
        line-height:1.4;
    }


    /* =========================
       CARTES CONTENTFUL
    ========================= */

    #articles-list,
    #interviews-list,
    .presse-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .press-card{
        width:100%;
        max-width:520px;
        margin:0 auto;

        border-radius:14px;
    }

    .press-card:hover{
        transform:none;
    }

    .press-card__image-wrapper{
        aspect-ratio:16 / 9;
    }

    .press-card__content{
        padding:20px;
    }

    .press-card__date{
        margin-bottom:10px;

        font-size:.7rem;
    }

    .press-card__title{
        margin-bottom:12px;

        font-size:1.18rem;
        line-height:1.35;
    }

    .press-card__description{
        margin-bottom:20px;

        font-size:.85rem;
        line-height:1.6;
    }

    .press-card__link{
        font-size:.74rem;
    }


    /* Anciennes cartes éventuelles */

    .presse-card{
        width:100%;
        max-width:520px;
        margin:0 auto;
    }

    .card-image{
        height:220px;
    }

    .card-content{
        padding:20px;
    }

    .card-content h3{
        font-size:1.2rem;
    }

    .card-content p{
        font-size:.86rem;
    }


    /* =========================
       DOSSIER PRESSE / MÉDIAS
    ========================= */

    .press-bottom-container{
        width:100%;

        grid-template-columns:1fr;

        min-height:auto;
    }

    .press-download-block,
    .press-trust-block{
        padding:35px 22px;
    }

    .press-download-block{
        border-right:none;
        border-bottom:1px solid #ddd;
    }

    .press-download-block h2,
    .press-trust-block h2{
        font-size:1.25rem;
    }

    .press-download-button{
        width:100%;
        max-width:330px;

        padding:13px 18px;

        font-size:.78rem;
        text-align:center;
    }

    .press-trust-logos{
        gap:22px;
    }

    .press-trust-logos img{
        max-width:90px;
        height:38px;
    }

}



/* =========================================================
   PETIT MOBILE
   jusqu'à 480px
========================================================= */

@media screen and (max-width:480px){

    /* =========================
       HERO
    ========================= */

    .hero{
        min-height:640px;
    }

    .hero-content{
        min-height:576px;

        padding:35px 18px 30px;
    }

    .hero-left h1{
        font-size:38px;
    }

    .subtitle{
        font-size:13px;
    }

    .description{
        font-size:12.5px;
    }

    .press-contact{
        margin-top:24px;
    }

    .press-contact h3{
        font-size:1.12rem;
    }

    .press-contact__role{
        font-size:.76rem;
    }

    .press-contact a{
        font-size:.8rem;
    }


    /* =========================
       ARTICLES
    ========================= */

    .presse{
        width:calc(100% - 28px);
        margin:45px auto;
    }

    .section-header{
        gap:22px;
    }

    .section-header h2{
        font-size:1.35rem;
    }

    .section-header a{
        font-size:.67rem;
    }


    /* =========================
       CARTES CONTENTFUL MOBILE
    ========================= */

    #articles-list,
    #interviews-list{
        gap:20px;
    }

    .press-card{
        border-radius:12px;
    }

    .press-card__image-wrapper{
        aspect-ratio:4 / 3;
    }

    .press-card__content{
        padding:17px;
    }

    .press-card__date{
        font-size:.66rem;
    }

    .press-card__title{
        font-size:1.05rem;
    }

    .press-card__description{
        font-size:.8rem;
        line-height:1.55;
    }

    .press-card__link{
        font-size:.7rem;
    }


    /* =========================
       BAS DE PAGE PRESSE
    ========================= */

    .press-download-block,
    .press-trust-block{
        padding:30px 18px;
    }

    .press-download-block h2,
    .press-trust-block h2{
        font-size:1.15rem;
    }

    .press-bottom-line{
        margin:10px 0 20px;
    }

    .press-trust-logos{
        justify-content:flex-start;
        gap:18px;
    }

    .press-trust-logos img{
        max-width:80px;
        height:34px;
    }

}



/* =========================================================
   TRÈS PETIT MOBILE
   jusqu'à 360px
========================================================= */

@media screen and (max-width:360px){

    .hero-left h1{
        font-size:34px;
    }

    .hero-content{
        padding-left:15px;
        padding-right:15px;
    }

    .presse{
        width:calc(100% - 24px);
    }

    .press-card__content{
        padding:15px;
    }

    .press-card__title{
        font-size:1rem;
    }

}
.press-card--clickable {
    cursor: pointer;
}