.image-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    overflow: ;
}

.image-wrapper {
    position: relative;
    flex: 1;
    margin: 0 2px;
}

.image-wrapper a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%);
    color: white;
    font-size: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 14px;
    background-color: #0b0b0b7d;
    padding: 7px;
    font-weight: 400 !important;
    width: 100%;
    border: 1px solid black;
    border-radius: 3px;
    
}

.overlay-button {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px;
    background-color: #007bffab;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 400;
    width: 100%;
    margin:0px !important;

}

.overlay-button:hover {
    background-color: #0056b3;
}