/* TARIFS - Grille responsive 2 par ligne */
.tarif_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 100%;
  margin: 32px 0;
  color: #fff;
}

.item_tarif {
  background: #14213d;
  border: 1px solid #23395d;
  border-radius: 0;
  box-sizing: border-box;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 20px 16px;
  transition: box-shadow 0.2s;
  flex: 1 1 48%;
  min-width: 220px;
  max-width: 350px;
  color: rgba(255,255,255,0.75);
}

.item_tarif_prix {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.item_tarif_formule {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
}

.item_tarif_supplement {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin-bottom: 20px;
}

.item_tarif_inclus {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-align: center;
}

.tarif_bouton_wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 50px;
}
  
/*------------------------------------------------------------------*/ 
/* PAGE DETAIL SHOOT - ITEM DETAIL SHOOT (portrait-cinematographique)
/*------------------------------------------------------------------*/

.detail_shoot_grid_wrapper {
  justify-content: center;
  display: flex;
  width: 100%;
}

.detail_shoot_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 32px 0;
}

.item_detail_shoot {
  background: #14213d;
  border: 1px solid #23395d;
  border-radius: 0;
  box-sizing: border-box;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 20px 16px;
  transition: box-shadow 0.2s;
  flex: 1 1 33%; /* 32 : max 3 par ligne / 23 : max 4 par ligne */
  min-width: 180px;
  max-width: 250px;
}

.item_detail_shoot a{
  color: #eeffff;
  box-shadow: 0 4px 8px rgba(255,255,255,0.1);
}

.item_detail_shoot_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  font-size: 2.2em;
}

.item_detail_shoot_title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.item_detail_shoot_content {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin-bottom: 6px;
  font-weight: 400;
}

.faq_question {
  cursor: pointer;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.faq_reponse {
  display: none;
  font-size: 15px;
}

.faq_bloc {
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .detail_shoot_grid {
    gap: 16px;
  }
  .item_detail_shoot {
    flex: 1 1 45%;
    min-width: 180px;
    max-width: 320px;
  }
}

@media (max-width: 900px) {
  .item_detail_shoot {
    min-width: 160px;
  }
  
  .item_tarif {
    flex: 1 1 100%;
    min-width: 160px;
    max-width: 100%;
  }
}

@media (max-width: 699px) {
  .item_detail_shoot {
    min-width: 140px;
  }
}

@media (max-width: 399px) {
  .item_detail_shoot {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
