.single-florida .livingwellbodytext h3 {
    color: var(--accent);
    font-family: var(--gp-font--bebas-kai);
    font-size: 1.563rem;
    font-weight: 400;
    letter-spacing: 0%;
    line-height: 150%;
    text-transform: uppercase;
}

.single-florida .site-content{
    display: block !important;
}
.single-florida .site-content .content-area {
    width: 100%;
}
.hapc-single-counties { font-size: 24px; line-height:29px; font-style:italic; }

.icon-black img,
.icon-black {
    filter: brightness(0) saturate(100%)
}

 .item-phone_number a,
.item-address a
 {color: var(--contrast);}





.acf-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 16px;
}


@media (max-width: 1024px) {
    .acf-gallery-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 768px) {
    .acf-gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}



.acf-gallery-item {
    position: relative;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    border-radius: 0;
}

.acf-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.acf-gallery-item a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.acf-gallery-item a::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    background-image: url("../svg/icon-gallery.svg");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9;
    pointer-events: none;
}

.acf-gallery-item a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity .25s ease;
}

.acf-gallery-item:hover a::before {
    opacity: 1;
}

