.sec-vct {
    padding: 60px 0;
    background: #f8f9fa;
}

.sec-vct__title {
    text-transform: uppercase;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 48px;
    position: relative;
    display: block;
}

.sec-vct__grid {
    display: flex;
    gap: 16px;
    height: 380px;
}

.sec-vct__item {
    position: relative;
    flex: 2;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec-vct__item--center {
    flex: 6;
}

.sec-vct__item-img {
    position: absolute;
    inset: 0;
}

.sec-vct__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sec-vct__item--center .sec-vct__item-img img {
    transform: scale(1.03);
}

.sec-vct__item-header {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.sec-vct__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #e8d44d;
    color: #222;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.sec-vct__item-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}

.sec-vct__item--center .sec-vct__item-title {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .sec-vct {
        padding: 40px 0;
    }

    .sec-vct {
        padding: 50px 0;
    }

    .sec-vct__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .sec-vct__grid {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }

    .sec-vct__item {
        flex: none !important;
        height: 200px;
        border-radius: 12px;
    }

    .sec-vct__item-title {
        opacity: 1 !important;
        transform: translateY(0) !important;
        font-size: 16px;
    }

    .sec-vct__item-header {
        padding: 16px 20px;
    }
}
