.image-slider {
    height: clamp(340px, 48vw, 680px);
    position: relative;
    overflow: hidden;
    background: #052d28
}

.image-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s
}

.image-slider .slide.active {
    opacity: 1;
    visibility: visible
}

.image-slider img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
}
@media (max-width: 767px) {
    .image-slider {
        position: relative;
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        overflow: hidden;
        line-height: 0;
    }

    .image-slider .slide {
        display: none !important;
        position: relative !important;
        inset: auto !important;
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
    }

    .image-slider .slide.active {
        display: block !important;
    }

    .image-slider .slide img {
 
        width: 100%;
        height: auto !important;
        max-height: none !important;
        object-fit: contain;
        vertical-align: bottom;
    }

    .image-slider .slider-prev,
    .image-slider .slider-next {
        top: 50%;
        transform: translateY(-50%);
    }

    .image-slider .slider-dots {
        bottom: 10px;
    }
}
.fallback-slide {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #052d28, #11705e)
}

.fallback-slide span {
    font-size: 110px;
    color: #c9a558
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 58px;
    border: 1px solid #fff7;
    background: #052d2899;
    color: #fff;
    font-size: 35px;
    cursor: pointer
}

.slider-prev {
    left: 24px
}

.slider-next {
    right: 24px
}

.slider-dots {
    position: absolute;
    z-index: 4;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px
}

.slider-dots button {
    width: 9px;
    height: 9px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 0;
    background: transparent
}

.slider-dots button.active {
    width: 28px;
    border-radius: 10px;
    background: #c9a558;
    border-color: #c9a558
}

.section-copy h1 {
    font: 700 clamp(35px, 4vw, 52px)/1.2 Cinzel;
    color: #052d28;
    margin: 16px 0
}

.testimonial {
    background: linear-gradient(135deg, #073d35, #032923);
    padding: 95px 0
}

.testimonial-card {
    display: grid;
    grid-template-columns: 100px 1fr 180px;
    align-items: center;
    gap: 38px;
    background: #fffdf8;
    color: #182521;
    padding: 50px 60px;
    border-radius: 2px;
    box-shadow: 18px 18px 0 #c9a558
}

.quote-icon {
    font: 140px/1 Georgia;
    color: #c9a558;
    height: 95px
}

.testimonial-card blockquote {
    color: #073d35;
    text-align: left;
    margin: 12px 0;
    font-size: clamp(21px, 2.4vw, 31px)
}

.testimonial-card p {
    color: #987738;
    font-weight: 700
}

.crescent-stamp {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    border: 1px solid #c9a558;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #c9a558;
    font-size: 54px
}

.crescent-stamp small {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px
}

.equal-posts {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.equal-posts .featured-post {
    grid-column: auto
}

.equal-posts article img,
.equal-posts .featured-post img {
    height: 220px
}

.equal-posts article h3,
.equal-posts .featured-post h3 {
    font-size: 23px
}

@media(max-width:850px) {
    .testimonial-card {
        grid-template-columns: 70px 1fr;
        padding: 38px
    }

    .crescent-stamp {
        display: none
    }

    .equal-posts {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .image-slider {
        height: 300px
    }

    .slider-prev,
    .slider-next {
        width: 38px;
        height: 45px
    }

    .slider-prev {
        left: 10px
    }

    .slider-next {
        right: 10px
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        padding: 27px;
        box-shadow: 10px 10px 0 #c9a558
    }

    .quote-icon {
        height: 50px;
        font-size: 90px
    }

    .equal-posts {
        grid-template-columns: 1fr
    }
}
