.sa-container-53a9c311 {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.sa-item-53a9c311 {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: flex 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
}

.sa-item-53a9c311:hover {
    flex: 3;
}

.sa-overlay-53a9c311 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.4s ease;
    z-index: 1;
}

.sa-content-53a9c311 {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    width: 100%;
}

.sa-item-53a9c311:hover .sa-content-53a9c311 {
    opacity: 1;
    transform: translateY(0);
}

.sa-title-53a9c311 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #fff;
    white-space: nowrap;
}

.sa-meta-53a9c311 {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-weight: bold;
    white-space: nowrap;
}

.sa-desc-53a9c311 {
    margin-bottom: 20px;
    line-height: 1.5;
}

.sa-btn-53a9c311 {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.sa-btn-53a9c311:hover {
    opacity: 0.9;
    color: #fff;
}

@media (max-width: 767px) {
    .sa-container-53a9c311 {
        flex-direction: column;
    }
    .sa-item-53a9c311 {
        min-height: 200px;
    }
}