.dateck-vhs-course-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--dateck-vhs-radius, 22px);
    padding: 24px 26px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
    transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
    overflow: hidden;
}

.dateck-vhs-course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 54px rgba(15, 23, 42, .09);
}

.dateck-vhs-top-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.dateck-vhs-top-pill {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 27px;
    padding: 5px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--dateck-vhs-accent, #bd6bee) 13%, #fff);
    color: var(--dateck-vhs-accent, #bd6bee);
    border: 1px solid color-mix(in srgb, var(--dateck-vhs-accent, #bd6bee) 16%, transparent);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    white-space: normal;
}

.dateck-vhs-pill-teacher {
    background: color-mix(in srgb, var(--dateck-vhs-accent, #bd6bee) 8%, #fff);
}

.dateck-vhs-full-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(185, 28, 28, .08);
    z-index: 3;
}

.dateck-vhs-info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dateck-vhs-info-row {
    display: grid;
    grid-template-columns: 22px minmax(78px, 102px) minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    min-width: 0;
    padding: 1px 0;
}

.dateck-vhs-icon {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--dateck-vhs-accent, #bd6bee) 11%, #fff);
    color: var(--dateck-vhs-accent, #bd6bee);
    font-size: 9px;
    flex: 0 0 auto;
}

.dateck-vhs-label {
    padding-top: 2px;
    white-space: nowrap;
    font-size: 11.5px;
    line-height: 1.35;
    color: #718096;
    font-weight: 800;
    letter-spacing: .005em;
}

.dateck-vhs-value {
    font-size: 14.5px;
    line-height: 1.42;
    color: #172033;
    font-weight: 650;
    word-break: normal;
    overflow-wrap: anywhere;
}

.dateck-vhs-info-row:nth-child(2),
.dateck-vhs-info-row:nth-child(4) {
    margin-bottom: 6px;
}

.dateck-vhs-notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 13px 15px;
    border-radius: 15px;
    background: #fff6df;
    color: #3b2a03;
    border: 1px solid rgba(245, 158, 11, .25);
    font-weight: 800;
    line-height: 1.45;
}

.dateck-vhs-notice i {
    color: #f59e0b;
    margin-top: 3px;
}

.dateck-vhs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 21px;
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--dateck-vhs-button, #bd6bee);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 14px 34px color-mix(in srgb, var(--dateck-vhs-button, #bd6bee) 30%, transparent);
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.dateck-vhs-button:hover {
    transform: translateY(-2px);
    filter: brightness(.96);
    color: #fff !important;
}

.dateck-vhs-course-card.is-full {
    background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.84));
}

.dateck-vhs-course-card.is-full::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, rgba(185, 28, 28, .032) 0 10px, transparent 10px 20px);
    pointer-events: none;
}

.dateck-vhs-course-card.is-full > * {
    position: relative;
    z-index: 1;
}

.dateck-vhs-course-card.is-full .dateck-vhs-top-pills {
    padding-right: 82px;
}

.dateck-vhs-full-text{display:none !important;}

@media (max-width: 767px) {
    .dateck-vhs-course-card {
        padding: 22px;
        border-radius: 18px;
    }

    .dateck-vhs-top-pills {
        margin-bottom: 18px;
    }

    .dateck-vhs-top-pill,
    .dateck-vhs-full-badge {
        font-size: 13px;
        min-height: 28px;
        padding: 6px 11px;
    }

    .dateck-vhs-full-badge {
        top: 14px;
        right: 14px;
        font-size: 11.5px;
        min-height: 23px;
        padding: 4px 9px;
    }

    .dateck-vhs-course-card.is-full .dateck-vhs-top-pills {
        padding-right: 72px;
    }

    .dateck-vhs-info-row {
        grid-template-columns: 23px minmax(76px, auto) minmax(0, 1fr);
        gap: 8px;
    }

    .dateck-vhs-icon {
        width: 23px;
        height: 23px;
    }

    .dateck-vhs-label {
        font-size: 11.5px;
    }

    .dateck-vhs-value {
        font-size: 14.5px;
    }
}
