/* Styles pour les cartes Nos Offres */

.nos-offres-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Centrer les cartes */
    padding: 20px; /* Ajouter un peu de padding */
    width: 100%;
}

.nos-offres-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px; /* Coins arrondis */
    padding: 20px;
    width: calc(25% - 40px); /* Trois cartes par ligne */
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Ombre portée */
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nos-offres-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nos-offres-card-title {
    font-size: 1.25em;
    margin-bottom: 10px;
    color: #0e0d0d;
    font-weight: 600;
    font-family: epilogue;
  }

.nos-offres-card-details {
    flex-grow: 1;
}

.nos-offres-card-details p {
    font-size: 0.95em;
    margin-bottom: 8px;
    color: #555;
}

.nos-offres-card-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #FF611D;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}



.nos-offres-card-button:hover {
    background-color: #FF611D;
}

.nos-offres-cards-container a {
    text-decoration: none;
}

/* Ajustements responsives */
@media screen and (max-width: 1024px) {
    .nos-offres-card {
        width: calc(50% - 40px); /* Deux cartes par ligne */
    }
}

@media screen and (max-width: 768px) {
    .nos-offres-card {
        width: 100%; /* Une carte par ligne */
    }
}


/* Conteneur principal des cartes */
.nos-offres-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Espace entre les cartes */
    margin: 20px 0;
    padding: 0px;
}

/* Carte individuelle */
.nos-offres-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    width: calc(33.333% - 20px); /* Trois cartes par ligne */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.nos-offres-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image en haut de la carte */
.nos-offres-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    max-height: 234px;
    min-height: 234px;
  }

/* Contenu de la carte */
.nos-offres-card-content {
    display: block;
    align-items: center;
    padding: 15px;
}

/* Détails de l'offre */
.nos-offres-card-details {
    flex: 1;
}

.nos-offres-card-title {
    font-size: 18px;
    margin: 0 0 10px;
}

.nos-offres-card-details p {
    margin: 0;
    color: #555;
}

/* Style du bouton flèche */

.nos-offres-card-button {
    background-color: #8E2B01;
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    float: right;
    margin-top: -20px;
  }

.nos-offres-card-button i {
    font-size: 20px;
}

/* Icônes dans les détails */
.nos-offres-card-details i {
    margin-right: 5px;
    color: #FF611D; /* Même violet que le bouton */
}



/* Responsive design */
@media screen and (max-width: 991px) {
    .nos-offres-card {
        width: calc(50% - 20px); /* Deux cartes par ligne sur écrans moyens */
    }
}

@media screen and (max-width: 600px) {
    .nos-offres-card {
        width: 100%; /* Une carte par ligne sur petits écrans */
        padding: 0px;
    }

    .nos-offres-card-location {
        font-size: 16px;
    }
}


.nos-offres-card-category {
    font-size: 14px;
    color: #757575;
    margin-bottom: 5px;
}

.nos-offres-card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    height: 43px;
  }

.nos-offres-card-location {
    font-size: 14px;
    color: #757575;
    margin-top: 5px;
    position: absolute;
}


.nos-offres-list-item {
    display: flex;
    margin-bottom: 20px;
    border: solid 1px;
    border-radius: 50px;
    border-color: #1A1A1A;
}

.nos-offres-list-image {
    flex: 0 0 20%;
    /* Styles pour l'image */
}

.nos-offres-list-image img {
    width: 100%;
    height: 100%;
    border-radius: 50px 20px 20px 50px;
      border-top-left-radius: 50px;
      border-top-right-radius: 20px;
      border-bottom-right-radius: 20px;
      border-bottom-left-radius: 50px;
  }



.nos-offres-list-content {
    flex: 1;
    padding-left: 20px;
    /* Styles pour le contenu */
}

.nos-offres-list-title {
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: Montserrat;
  }


  .nos-offres-list-details span {
    background: #F1A37E;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
  }

  .nos-offres-list-date {
    position: relative;
    margin-bottom: -50px;
    margin-top: 50px;
    font-size: 13px;
    font-weight: 300;
  }


  .nos-offres-list-button {
    margin-top: 10px;
    padding: 10px 30px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    float: right;
    border: solid 1px;
    margin-right: 20px;
    margin-bottom: 15px;
    z-index: 9 !important;
    position: relative;
    background: #8e2b01;
  }

.nos-offres-list-button:hover {
    background-color: #ff611d;
    color: white;
}

.nos-offres-list-category {
    font-size: 0.8vw;
    font-style: italic;
    margin-bottom: -5px;
    margin-top: 10px;
  }

  a.nos-offres-list-item-link
    {
        position: absolute;
        height: 200px;
        width: 100%;
      }
  

