.acf-three-divs {
    padding: 40px 0;
}

.three-divs-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.three-divs-item:hover {
    transform: scale(1.05);
}

.three-divs-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.three-divs-item .label {
    position: relative;
    z-index: 2;
}
