/* Container */
.residence-single {
  margin-bottom: 30px;
}

/* Card de base (commune aux layouts) */
.residence-single .residence-card {
  background: #fff;
  border-radius: 8px;
  border:none;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
}

/* Layout Vertical */
.residence-single-vertical .residence-card {
  flex-direction: column;
}

/* Layouts Horizontaux */
.residence-single-horizontal .residence-card {
  flex-direction: row;
  align-items: stretch;
}

.residence-single-horizontal-reverse .residence-card {
  flex-direction: row-reverse;
  align-items: stretch;
}

/* Image */
.residence-single .residence-image {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

/* Image en mode vertical */
.residence-single-vertical .residence-image {
  height: 400px;
  width: 100%;
}

/* Image en mode horizontal */
.residence-single-horizontal .residence-image,
.residence-single-horizontal-reverse .residence-image {
  flex: 0 0 40%; /* Défaut, modifié par le PHP */
  min-height: 400px;
}

.residence-single .residence-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.residence-single .residence-card:hover .residence-image img {
  transform: scale(1.05);
}

/* Statut sur l'image */
.residence-single .residence-statut {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Couleurs des statuts */
.residence-single .residence-statut.statut-appel {
  background: #FFFCD9;
  color: #D5BC36;
}

.residence-single .residence-statut.statut-selection {
  background: #f0f7ff;
  color: #2ea3f2;
}

.residence-single .residence-statut.statut-laureats {
  background: #F0FFF2;
  color: #36AC36;
}

.residence-single .residence-statut.statut-en-cours {
  background: #FFF0F0;
  color: #F22E5B;
}

.residence-single .residence-statut.statut-archivee {
  background: #F4F4F4;
  color: #939393;
}

.residence-single .residence-statut.statut-default {
  background: #f0f7ff;
  color: #2ea3f2;
}

/* Content */
.residence-single .residence-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}


/* Meta - lieu et dates */
.residence-single .residence-meta {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.residence-single .residence-meta .separator {
  font-style: normal;
}

/* Extrait et contenu complet */
.residence-single .residence-excerpt,
.residence-single .residence-content-full {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: auto;
  padding-bottom: 25px;
}

.residence-single .residence-excerpt p,
.residence-single .residence-content-full p {
  margin: 0 0 15px 0;
}

.residence-single .residence-excerpt p:last-child,
.residence-single .residence-content-full p:last-child {
  margin-bottom: 0;
}

.residence-single .residence-content-full h2,
.residence-single .residence-content-full h3,
.residence-single .residence-content-full h4 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.residence-single .residence-content-full ul,
.residence-single .residence-content-full ol {
  margin: 15px 0;
  padding-left: 25px;
}

/* Bouton */
.residence-single .residence-link {
  display: inline-block;
  padding: 12px 24px;
  background: #2ea3f2;
  color: white !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  align-self: flex-start;
  border: none;
  margin: auto;
  font-size: 16px;
}

.residence-single .statut-appel.residence-link{
  background: #D5BC36;
}

.residence-single .statut-selection.residence-link{
  background: #2ea3f2;
}

.residence-single .statut-laureats.residence-link{
  background: #36AC36;
}

.residence-single .statut-en-cours.residence-link{
  background: #F22E5B;
}

.residence-single .statut-archivee.residence-link{
  background: #939393;
}

.residence-single .residence-link:hover {
  /* background: #1e88d4; */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 163, 242, 0.3);
  color: white !important;
}

/* Card cliquable */
.residence-single .residence-card-clickable {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.residence-single .residence-card-clickable:hover {
  text-decoration: none;
  color: inherit;
}

.residence-single .residence-card-clickable .residence-link {
  display: none;
}

/* Responsive */
@media (max-width: 980px) {
  .residence-single-horizontal .residence-card,
  .residence-single-horizontal-reverse .residence-card {
    flex-direction: column;
  }
  
  .residence-single-horizontal .residence-image,
  .residence-single-horizontal-reverse .residence-image {
    height: 350px;
    width: 100%;
    flex: none;
  }
  
  .residence-single .residence-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .residence-single-vertical .residence-image {
    height: 300px;
  }
  
  .residence-single .residence-content {
    padding: 20px;
  }
  
  .residence-single .residence-title {
    font-size: 22px;
  }
  
  .residence-single .residence-excerpt,
  .residence-single .residence-content-full {
    font-size: 15px;
  }
}