.auraprefa-offers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

/* --------------------------------
   BLOC OFFER
-------------------------------- */

.auraprefa-offer {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
	font-family: "Poppins";
    background: #ffffff;
    border-right: 1px solid #e5e5e5;
}

.auraprefa-offer:last-child {
    border-right: none;
}

/* --------------------------------
   IMAGE
-------------------------------- */

.auraprefa-offer-image {
    position: relative;
    display: block;
    width: 100%;
    height: 225px;
    overflow: hidden;
}

.auraprefa-offer-img {
    display: block;
    width: 100%;
    height: 225px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Zoom au survol */

.auraprefa-offer-image:hover .auraprefa-offer-img {
    transform: scale(1.08);
}

/* --------------------------------
   CATEGORIE
-------------------------------- */

.auraprefa-offer-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;

    margin: 0;
    padding: 5px 8px;

    font-size: 10px;
    line-height: 1;
    color: #ffffff;
    background-color: #b29773;

    text-transform: uppercase;
}

/* --------------------------------
   CONTENU
-------------------------------- */

.auraprefa-offer-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

/* --------------------------------
   TITRE
-------------------------------- */

.auraprefa-offer-title {
    margin: 0 0 12px;
    padding: 0;

    font-size: 20px;
    line-height: 24px;
    color: #353534;
    text-transform: uppercase;
}

.auraprefa-offer-title a {
    color: #353534;
    text-decoration: none;
	transition: color 1s;
	
	&:hover {color: #b29773;}
}

/* --------------------------------
   TEXTE
-------------------------------- */

.auraprefa-offer-text {
    margin: 0 0 20px;
    padding: 0;

    font-size: 14px;
    line-height: 20px;
    color: #999999;
}

/* --------------------------------
   LIEN
-------------------------------- */

.auraprefa-offer-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;

    font-size: 12px;
    line-height: 16px;
    color: #b29773;

    text-transform: uppercase;
    text-decoration: none;
}

.auraprefa-offer-button:hover {
    color: #353534;
	text-decoration: none;
}

/* Flèche */

.auraprefa-offer-button::after {
    content: "→";

    font-size: 16px;
    line-height: 1;

    transition: transform 0.2s ease;
}

.auraprefa-offer-button:hover::after {
    transform: translateX(4px);
}

/* --------------------------------
   TABLETTE
-------------------------------- */

@media (max-width: 959px) {

    .auraprefa-offers {
        grid-template-columns: repeat(2, 1fr);
    }

    .auraprefa-offer:nth-child(2) {
        border-right: none;
    }

}

/* --------------------------------
   MOBILE
-------------------------------- */

@media (max-width: 767px) {

    .auraprefa-offers {
        grid-template-columns: 1fr;
    }

    .auraprefa-offer {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .auraprefa-offer:last-child {
        border-bottom: none;
    }

}

/* =========================================================
   BETHEME - RESET DU CONTENEUR CODE
========================================================= */

pre.mfn-code {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: none !important;

    white-space: normal !important;
    word-wrap: normal !important;
    overflow: visible !important;

    font-family: inherit !important;
    font-size: inherit !important;
    line-height: normal !important;
}