/* =====================================================
   airav_bloc_guides — styles front-end
   ===================================================== */

/* ── Bloc global ── */

.airav-bloc-guides {
    padding: 50px 0 60px;
}

/* ── En-tête ── */

.airav-guides-header {
    text-align: left;
    margin-bottom: 40px;
}

.airav-guides-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 38px;
    color: #ca9e46;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 12px;
}

.airav-guides-subtitle {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin: 0 0 16px;
}

.airav-guides-logo {
    display: flex;
    margin-top: 8px;
    left: 25%;
    position: relative;
}

.airav-guides-logo img {
    width: 55px;
    height: auto;
    max-width: 100%;
}

/* ── Carousel wrapper ── */

.airav-guides-carousel {
    position: relative;
}

/* ── Cards ── */

.airav-guide-card {
    border-radius: 20px;
    padding: 28px 24px 24px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.airav-guide-card__body {
    flex: 1;
}

.airav-guide-card__title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0 0 auto;
}

.airav-guide-card__title span {
    font-size: 18px;
}

.airav-guide-card__text {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 100px 0 20px;
    line-height: 1.6;
}

/* ── Bouton ── */

.airav-guide-card__footer {
    display: flex;
    justify-content: center;
}

.airav-guide-card__btn {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: #fff !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    will-change: transform;
}

.airav-guide-card__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    opacity: 0.92;
    color: #fff !important;
    text-decoration: none;
}

.airav-guide-card__btn:active {
    transform: translateY(-1px);
}

/* ── Flèches Swiper ── */

.airav-guides-swiper .swiper-button-prev,
.airav-guides-swiper .swiper-button-next {
    background: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 1);
    top: 50%;
    transform: translateY(-50%);
}

.airav-guides-swiper .swiper-button-prev::after,
.airav-guides-swiper .swiper-button-next::after {
    font-size: 14px;
    color: #333;
    font-weight: 700;
}

.airav-guides-swiper .swiper-button-prev::after {
    content: 'prev';
}

.airav-guides-swiper .swiper-button-next::after {
    content: 'next';
}

/* ── Responsive ── */

@media (max-width: 767px) {
    .airav-guides-title {
        font-size: 26px;
        white-space: normal;
    }

    .airav-guides-subtitle {
        font-size: 14px;
        white-space: normal;
    }

    .airav-guide-card {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .airav-bloc-guides {
        padding: 30px 0 40px;
    }
}
