.tirage-master .media {
  padding-top: 100% !important;
}

/* Option abonnement */
.option-abo {
  width: 100%;
  background: #ffe500;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-bottom: 1rem;
}
.option-abo__badge {
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.option-abo__title {
  font-weight: 700;
  white-space: nowrap;
}
.option-abo__details {
  white-space: nowrap;
  font-size: 14px;
}
.option-abo__strike {
  text-decoration: line-through;
}
.option-abo__link {
  text-decoration: underline;
  font-weight: 600;
  margin-left: 4px;
}
.option-abo__choice {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  white-space: nowrap;
  margin-left: auto;
  cursor: pointer;
}
.option-abo__choice input {
  cursor: pointer;
}

/* Responsive */
@media (max-width: 749px) {
  .option-abo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .option-abo__title, .option-abo__details {
    white-space: normal;
    display: block;
  }
  .option-abo__choice {
    white-space: normal;
    display: flex;
    justify-content: center;
    margin-left: 0;
    margin-top: 12px;
  }
}