.ta-container-28ea90da {
    display: flex;
    width: 100%;
    height: 400px;
    gap: 10px;
    overflow: hidden;
}

.ta-item-28ea90da {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: flex 0.5s ease;
    cursor: pointer;
    display: flex;
}

.ta-item-28ea90da.active {
    flex: 4;
}

.ta-bg-28ea90da {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.ta-item-28ea90da:hover .ta-bg-28ea90da {
    transform: scale(1.05);
}

.ta-overlay-28ea90da {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
}

.ta-content-28ea90da {
    position: relative;
    z-index: 3;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

.ta-info-28ea90da {
    transition: transform 0.3s ease;
    transform: translateY(20px);
}

.ta-item-28ea90da.active .ta-info-28ea90da {
    transform: translateY(0);
}

.ta-title-28ea90da {
    margin: 0 0 5px;
    font-size: 24px;
    white-space: nowrap;
}

.ta-role-28ea90da {
    font-size: 14px;
    opacity: 0.8;
}

.ta-details-28ea90da {
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ta-item-28ea90da.active .ta-details-28ea90da {
    max-height: 100px;
    opacity: 1;
    margin-top: 15px;
}

.ta-desc-28ea90da {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}