.image-container-wrapper {
    display: block;
    width: 100%;
    height: 55vh;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    color: white;
    text-align: center;
    padding: 10px;
    transition: opacity 0.3s ease-in-out;
}
.image-container-wrapper:hover .image-overlay {
    opacity: 1;
}
.image-overlay h2 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .image-overlay h2 {
        font-size: 30px;
    }
    .image-overlay p {
        font-size: 14px !important;
    }
}
.image-overlay p {
    margin: 0;
    margin-top: 20px;
    font-size: 1rem;
    text-transform: uppercase;
}
.letter-spacing-wide {
    letter-spacing: 0.4em;
}