.ov-4b2b5033-container {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}
.ov-4b2b5033-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}
.ov-4b2b5033-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}
.ov-4b2b5033-card:hover .ov-4b2b5033-bg {
    transform: scale(1.05);
}
.ov-4b2b5033-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    transition: background-color 0.4s ease;
    z-index: 2;
}
.ov-4b2b5033-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 3rem;
}
.ov-4b2b5033-title {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.ov-4b2b5033-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.ov-4b2b5033-card:hover .ov-4b2b5033-actions {
    opacity: 1;
    transform: translateY(0);
}
.ov-4b2b5033-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.ov-4b2b5033-btn:hover {
    background-color: #fff;
    color: #000;
}
@media (max-width: 768px) {
    .ov-4b2b5033-container {
        flex-direction: column;
    }
}