/* ═══════════════════════════════════════════════════════════
   Yachting Star — Program Slider Card Styles
   ═══════════════════════════════════════════════════════════ */

.ys-program-section {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Заголовок секции ─────────────────────────────────────── */
.ys-prog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.ys-prog-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0;
    line-height: 1.3;
}

/* ── Стрелки (жёлтый фон как на скриншоте) ────────────────── */
.ys-prog-slider .ys-slider-arrow {
    background: #FFE500;
    border: 2px solid #FFE500;
    color: #1A1A2E;
}

.ys-prog-slider .ys-slider-arrow:hover {
    background: #FDD835;
    border-color: #FDD835;
    color: #1A1A2E;
}

/* ── Карточка ─────────────────────────────────────────────── */
.ys-prog-card {
    background: #F5F7FA;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ys-prog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ── Изображение ──────────────────────────────────────────── */
.ys-prog-card-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #e8ecef;
    flex-shrink: 0;
}

/* ── Тело карточки ────────────────────────────────────────── */
.ys-prog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ys-prog-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 10px;
    line-height: 1.3;
}

.ys-prog-card-desc {
    font-size: 13px;
    color: #444;
    line-height: 1.55;
    margin: 0 0 12px;
    flex: 1;
}

/* ── Список ───────────────────────────────────────────────── */
.ys-prog-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ys-prog-card-list li {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    padding: 3px 0 3px 18px;
    position: relative;
}

.ys-prog-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFE500;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.3;
}

/* ── Адаптивность ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .ys-prog-heading {
        font-size: 20px;
    }

    .ys-prog-card-title {
        font-size: 14px;
    }

    .ys-prog-card-desc,
    .ys-prog-card-list li {
        font-size: 12px;
    }

    .ys-prog-card-body {
        padding: 14px;
    }
}