/* ==================================================================================================
   ############ STYLE SPÉCIFIQUE AUX PAGES DE CONTENU AVEC ACTIONS ###################################
   ================================================================================================== */

/* ====================================
       TEXTE PRINCIPAL
   ==================================== */

p.yekim1 {
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 0;
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  line-height: 1.9;
  letter-spacing: 1px;
}

/* ====================================
       BOUTONS / CARTES D’ACTION
   ==================================== */

.actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin-top: auto;
}

.action-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 12px;
  border: 2px solid rgba(156, 207, 255, 0.65);
  border-radius: 8px;
  background: rgba(2, 18, 46, 0.45);
  text-align: center;
}

.action-card a.lien {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.96rem, 1.1vw, 1.06rem);
  font-weight: 700;
  line-height: 1.2;
}

.action-card a.lien:last-child {
  line-height: 0;
}

.action-card img.drapeau {
  display: block;
  width: 44px;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0;
}

/* ====================================
       MOBILE / TABLETTE
   ==================================== */

@media (max-width: 760px), ((min-width: 761px) and (max-width: 900px) and (orientation: portrait)) {
  p.yekim1 {
    font-size: 1rem;
    line-height: 1.65;
  }

  .actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .action-card {
    padding: 9px 10px;
  }

  .action-card a.lien {
    font-size: 0.95rem;
  }

  .action-card img.drapeau {
    width: 38px;
  }
}

@media (max-width: 420px) {
  p.yekim1 {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .action-card {
    padding: 8px 9px;
  }

  .action-card a.lien {
    font-size: 0.9rem;
  }

  .action-card img.drapeau {
    width: 34px;
  }
}
