.da-wrap-0f8f4156 {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 500px;
    gap: 4px;
    overflow: hidden;
}

.da-item-0f8f4156 {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: flex 0.5s ease;
    cursor: pointer;
    overflow: hidden;
    min-height: 150px;
}

.da-item-0f8f4156.is-active {
    flex: var(--da-expand-ratio, 4);
}

.da-overlay-0f8f4156 {
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.4s ease;
    pointer-events: none;
}

.da-item-0f8f4156.is-active .da-overlay-0f8f4156 {
    background: rgba(0, 0, 0, 0.65);
}

.da-content-0f8f4156 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
    pointer-events: none;
    box-sizing: border-box;
}

.da-item-0f8f4156.is-active .da-content-0f8f4156 {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.da-title-0f8f4156 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.da-item-0f8f4156.is-active .da-title-0f8f4156 {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

.da-excerpt-0f8f4156 {
    font-size: 14px;
    color: #e0e0e0;
    margin: 0 0 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.da-btn-0f8f4156 {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 18px;
    background-color: rgba(255,255,255,0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.4);
    transition: background 0.2s ease;
    backdrop-filter: blur(4px);
}

.da-btn-0f8f4156:hover {
    background-color: rgba(255,255,255,0.35);
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .da-wrap-0f8f4156 {
        height: 400px;
    }
    .da-title-0f8f4156 {
        font-size: 20px;
    }
    .da-content-0f8f4156 {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .da-wrap-0f8f4156 {
        flex-direction: column;
        height: auto;
    }
    .da-item-0f8f4156 {
        flex: none;
        height: 150px;
        width: 100%;
    }
    .da-item-0f8f4156.is-active {
        height: 350px;
    }
    .da-content-0f8f4156 {
        opacity: 1;
        transform: none;
    }
    .da-overlay-0f8f4156 {
        background: rgba(0,0,0,0.5);
    }
    .da-title-0f8f4156 {
        white-space: normal;
    }
}