.sa-795b7f9e-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: transparent;
}

.sa-795b7f9e-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #2a2a2a;
    border-radius: inherit;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    height: 70px;
    transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}

.sa-795b7f9e-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.sa-795b7f9e-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Default overlay */
    transition: background-color 0.3s ease;
    z-index: 1;
}

.sa-795b7f9e-item:not(.active):hover::before {
    background-color: rgba(0,0,0,0.3); /* Lighter on hover */
}

.sa-795b7f9e-item:last-child {
    border-bottom: none;
}

.sa-795b7f9e-item.active {
    height: 300px;
}

.sa-795b7f9e-header {
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

.sa-795b7f9e-item.active .sa-795b7f9e-header {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.sa-795b7f9e-title-vertical {
    color: #fff;
    margin: 0;
    font-size: 18px;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.sa-795b7f9e-item:not(.active):hover .sa-795b7f9e-title-vertical {
    transform: translateX(10px);
}

.sa-795b7f9e-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    pointer-events: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.sa-795b7f9e-item.active .sa-795b7f9e-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sa-795b7f9e-title {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 24px;
}

.sa-795b7f9e-desc {
    color: #ddd;
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.5;
}

.sa-795b7f9e-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.sa-795b7f9e-button:hover {
    background-color: #005177;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
    .sa-795b7f9e-item.active {
        height: auto;
        min-height: 250px;
    }
    
    .sa-795b7f9e-item:not(.active):hover .sa-795b7f9e-title-vertical {
        transform: translateX(5px);
    }
}
