.vp-sec {
    padding: 30px 0;
    background-color: #090A10;
    font-family: 'Pretendard Variable', Pretendard, sans-serif;
}

/* Header */
.vp-header {
    margin-bottom: 30px;
}

.vp-badge {
    color: #FF1F23;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.vp-badge::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: #FF1F23;
    margin-right: 8px;
}

.vp-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.vp-subtitle {
    font-size: 16px;
    color: #8C8F9E;
    margin: 0;
    font-weight: 500;
}

/* Grid */
.vp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Card */
.vp-card {
    background-color: #111218;
    border: 1px solid #1E2028;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}

.vp-card:hover {
    transform: translateY(-4px);
    border-color: #3F4452;
}

.vp-thumb-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #000;
}

.vp-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vp-thumb-wrap:hover .vp-thumb {
    transform: scale(1.05);
}

.vp-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: rgba(255, 62, 66, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: transform 0.2s, background-color 0.2s;
}

.vp-thumb-wrap:hover .vp-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #FF1F23;
}

.vp-play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    /* visually center the triangle */
}

.vp-info {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vp-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin-bottom: auto;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-red {
    color: #FF1F23;
}

.vp-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1E2028;
    padding-top: 12px;
    margin-top: 12px;
    margin-bottom: 14px;
}

.vp-spec-name {
    font-size: 13px;
    color: #8C8F9E;
}

.vp-spec-price {
    font-size: 18px;
    font-weight: 800;
    color: #FF1F23;
}

.vp-buy-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #FF1F23;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 0;
    text-decoration: none;
    border: 1px solid #FF1F23;
    transition: background-color 0.2s, color 0.2s;
}

.vp-buy-btn:hover {
    background-color: #E01015;
    color: #fff;
}

.vp-buy-btn-outline {
    background-color: transparent;
    color: #FF1F23;
}

.vp-buy-btn-outline:hover {
    background-color: rgba(255, 62, 66, 0.1);
    color: #FF1F23;
}

/* Responsive */
@media (max-width: 100%) {
    .vp-grid {
        gap: 12px;
    }
}

@media (max-width: 1024px) {
    .vp-sec {
        padding: 30px 0;
    }

    .vp-grid {}
}

@media (max-width: 768px) {
    .vp-sec {
        padding: 30px 0;
    }

    .vp-grid {
        gap: 10px;
    }

    .vp-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .vp-info {
        padding: 14px;
    }

    .vp-card-title {
        font-size: 13px;
        min-height: auto;
    }

    .vp-spec-price {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .vp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .vp-title {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }

    .vp-info {
        padding: 10px !important;
    }

    .vp-card-title {
        font-size: 13px !important;
        min-height: 40px !important;
        line-height: 1.4 !important;
        margin-bottom: 6px !important;
    }

    .vp-spec-row {
        margin-top: 8px !important;
        padding-top: 8px !important;
        margin-bottom: 8px !important;
        flex-direction: column;
        align-items: flex-start;
    }

    .vp-spec-name {
        font-size: 11px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }

    .vp-spec-price {
        font-size: 14px !important;
        font-weight: bold !important;
    }

    .vp-buy-btn {
        padding: 8px 0 !important;
        font-size: 12px !important;
    }

}

@media (max-width: 480px) {
    .vp-title {
        font-size: 24px;
    }

    .vp-spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .vp-spec-price {
        font-size: 20px;
    }
}