#block-azmartinique-top10martinique .field--name-body {
    overflow: hidden;
}

#block-azmartinique-top10martinique h2 {
    font-size: 1.3rem;
    font-weight: 200;
    text-align: center;
}

#block-azmartinique-top10martinique h3 {
    font-weight: 450;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

#featured-content .image-wrapper {
    display: flex;
    width: 100vw;
    gap: 1rem;
    flex-wrap: wrap;
    overflow: hidden;
}

#featured-content .place-item {
    justify-content: center;
    align-content: center;
    position: relative;
    display: inline-flex;
    overflow: hidden;
}

@media (min-width: 992px) {
    #featured-content .place-item {
        width: 32%;
    }
}

#featured-content .place-item a {
    width: 100%;
    height: 100%;
    z-index: 5;
    position: absolute;
}

#featured-content .place-item img {
    transition: .5s ease-in-out;
    transform: scale(1);
}

#featured-content .place-item::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0, 0, 0, 0);
    transition: .5s ease-in;
}

#featured-content .place-item:hover:after {
    background-color: rgba(0, 0, 0, .7);
}

#featured-content .place-item:hover img {
    transform: scale(1.1);
}

#featured-content .place-item p {
    opacity: 0;
    transition: .5s ease-in;
    color: var(--bs-white);
    font-weight: 700;
    font-size: 3rem;
    line-height: 3.2rem;
    width: 100%;
    text-align: center;
    z-index: 2;
    width: fit-content;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate3d(-50%, -50%, 0);
}

#featured-content .place-item:hover p {
    display: inline-flex;
    opacity: 1;
}