.image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.image-wrapper {
    position: relative;
    width: 30vw;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.overlay-text {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(42, 64, 42, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
}

.image-wrapper a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.image-wrapper:hover img {
    transform: scale(1.05);
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .image-wrapper {
        width: 80vw;
        height: auto;
    }
}