:root {
    --font-size: 16px;
    --background: #fff;
    --foreground: oklch(14.5% 0 0);
    --card: #fff;
    --card-foreground: oklch(14.5% 0 0);
    --popover: oklch(100% 0 0);
    --popover-foreground: oklch(14.5% 0 0);
    --primary: #030213;
    --primary-foreground: oklch(100% 0 0);
    --secondary: oklch(95% .0058 264.53);
    --secondary-foreground: #030213;
    --muted: #ececf0;
    --muted-foreground: #717182;
    --accent: #e9ebef;
    --accent-foreground: #030213;
    --destructive: #d4183d;
    --destructive-foreground: #fff;
    --border: #0000001a;
    --input: transparent;
    --input-background: #f3f3f5;
    --switch-background: #cbced4;
    --font-weight-medium: 500;
    --font-weight-normal: 400;
    --ring: oklch(70.8% 0 0);
    --chart-1: oklch(64.6% .222 41.116);
    --chart-2: oklch(60% .118 184.704);
    --chart-3: oklch(39.8% .07 227.392);
    --chart-4: oklch(82.8% .189 84.429);
    --chart-5: oklch(76.9% .188 70.08);
    --radius: .625rem;
    --sidebar: oklch(98.5% 0 0);
    --sidebar-foreground: oklch(14.5% 0 0);
    --sidebar-primary: #030213;
    --sidebar-primary-foreground: oklch(98.5% 0 0);
    --sidebar-accent: oklch(97% 0 0);
    --sidebar-accent-foreground: oklch(20.5% 0 0);
    --sidebar-border: oklch(92.2% 0 0);
    --sidebar-ring: oklch(70.8% 0 0);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans KR', 'Segoe UI', sans-serif;
    background: #fff;
    color: #1a2b4a;
}

/* ── Hero Slider ── */
.hero-slider-qna {
    background: linear-gradient(141deg, #1a2b4a 0%, #243b63 100%);
    height: 340px;
    position: relative;
    overflow: hidden;
    padding: 0;
}
.image-right {
    opacity: 0.7;
    object-fit: fill;
    position: absolute;
    right: 0;
    height: -webkit-fill-available;
    z-index: 0;
    mask-image: linear-gradient(to left, black 50%, transparent 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,43,74,0.88) 0%, rgba(26,43,74,0.55) 50%, rgba(0,0,0,0) 100%);
    z-index: 2;
}
.hero-content {
    position: absolute;
    left: 64px;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    z-index: 2;
}
.hero-badge {
    position: absolute;
    top: 42px;
    background: rgba(255,107,53,0.22);
    border: 1px solid rgba(255,107,53,0.4);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #ff8c5a;
    white-space: nowrap;
}
.hero-heading {
    position: absolute;
    top: 80px;
}
.hero-heading h1 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1.28;
}
.hero-desc {
    position: absolute;
    top: 182px;
    font-size: 14px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
}
.hero-cta {
    position: absolute;
    top: 248px;
    background: linear-gradient(168deg, #ff6b35 0%, #ff8c5a 100%);
    border: none;
    border-radius: 14px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 6px 9px rgba(255,107,53,0.4);
    white-space: nowrap;
}
/* Nav arrows */
.hero-arrow {
    position: absolute;
    top: 149px;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    color: white;
    cursor: pointer;
    font-family: inherit;
    line-height: 22px;
    z-index: 4;
}
.hero-arrow.left { left: 12px; }
.hero-arrow.right { right: 12px; }
/* Dots */
.hero-dots {
    position: absolute;
    bottom: 19px;
    right: 54px;
    display: flex;
    gap: 6px;
    align-items: center;
}
.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.4);
}
.hero-dot.active { background: #ff6b35; flex: 1; min-width: 14px; }

/* ── Slide Items ── */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;

}
.slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Mid Section ── */
.mid-section {
    background: white;
    border-top: 1px solid #e8ecf0;
    padding: 61px 205px 80px;
}

/* QnA 강사란 + 추천 트랙 */
.qna-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 456px));
    justify-content: center;
    gap: 48px;
    margin-bottom: 44px;
}

.qna-intro-left {}
.badge-pill-orange {
    display: inline-flex;
    align-items: center;
    background: rgba(255,107,53,0.1);
    border: 1px solid rgba(255,107,53,0.25);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 16px;
    white-space: nowrap;
}
.qna-intro-left h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a2b4a;
    line-height: 1.35;
    margin-bottom: 16px;
}
.qna-intro-left h2 span { color: #ff6b35; }
.qna-intro-left p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2px;
}

.rec-track-card {
    background: #f8f9ff;
    border: 1px solid #e0e7ff;
    border-radius: 16px;
    padding: 24px;
}
.rec-track-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 20px;
}
.rec-track-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.rec-track-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.step-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.rec-track-item-text {}
.rec-track-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a2b4a;
    line-height: 1.5;
}
.rec-track-item-desc {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
}

/* Why OLCAMP */
.why-section {}
.why-section-header {
    text-align: center;
    margin-bottom: 36px;
}
.badge-pill-indigo {
    display: inline-flex;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 700;
    color: #3b5bdb;
    margin-bottom: 12px;
}
.why-section-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2b4a;
}
.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
.why-card {
    background: #f8faff;
    border: 1px solid #e0e7ff;
    border-radius: 14px;
    padding: 22px;
}
.why-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
}
.why-card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}
.why-card-icon-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #eef2ff 0%, #c7d2fe 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.why-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 8px;
}
.why-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.65;
}
.why-cta {
    text-align: center;
}
.btn-orange {
    background: #ff6b35;
    border: none;
    border-radius: 14px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 7px rgba(255,107,53,0.3);
}

/* ── Tab Bar ── */
.tab-bar {
    background: white;
    border-bottom: 2px solid #e8ecf0;
    box-shadow: 0 3px 5px rgba(0,0,0,0.05);
    padding: 0 205px;
    display: flex;
    justify-content: center;
}
.qna-type-tab-btn {
    flex: 1 0 0;
    max-width: 320px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #8b95a1;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.qna-type-tab-btn.active {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}
.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    height: 20.5px;
}
.tab-count.orange {
    background: rgba(255,107,53,0.1);
    color: #ff6b35;
}
.tab-count.gray {
    background: #f4f5f7;
    color: #8b95a1;
}

/* ── QnA Feed Section ── */
.qna-feed-section {
    padding: 32px 221px;
}

/* Quick QnA info card */
.quick-qna-info {
    background: linear-gradient(167deg, #1a2b4a 0%, #243b63 100%);
    border-radius: 16px;
    padding: 27px 26px;
    margin-bottom: 32px;
}
.quick-qna-info-badge {
    display: inline-flex;
    background: rgba(255,107,53,0.2);
    border: 1px solid rgba(255,107,53,0.35);
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 700;
    color: #ff8c5a;
    margin-bottom: 14px;
}
.quick-qna-info h3 {
    font-size: 19px;
    font-weight: 700;
    color: white;
    line-height: 1.5;
    margin-bottom: 8px;
}
.quick-qna-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 18px;
}
.quick-steps {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.quick-step-pill {
    background: rgba(255,107,53,0.18);
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #ff8c5a;
    white-space: nowrap;
}
.quick-step-arrow {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

/* Live header */
.live-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.live-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.live-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.live-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2b4a;
}
.live-badge {
    background: #ff6b35;
    border-radius: 999px;
    padding: 2px 7px;
    font-size: 9px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}
.live-sub {
    font-size: 13px;
    color: #8b95a1;
}
.btn-ask {
    background: linear-gradient(161deg, #ff6b35 0%, #ff8c5a 100%);
    border: none;
    border-radius: 10px;
    padding: 0 16px;
    height: 32px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    font-family: inherit;
}

/* Question cards */
.question-card {
    background: white;
    border: 1px solid #e8ecf0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(26,43,74,0.07);
    margin-bottom: 12px;
}
.question-card-top {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}
.tag-pill {
    border-radius: 8px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
    height: 20.5px;
    display: inline-flex;
    align-items: center;
}
.tag-pill.blue { background: #eef2ff; color: #3b5bdb; }
.tag-pill.yellow { background: #fef9c3; color: #a16207; }
.tag-pill.green { background: #dcfce7; color: #15803d; }
.tag-pill.purple { background: #faf5ff; color: #8200db; }
.tag-time {
    margin-left: auto;
    font-size: 11px;
    color: #9ca3af;
}
.question-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 8px;
    line-height: 1.4;
}
.question-body {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.question-card-bottom {
    display: flex;
    align-items: center;
    gap: 6px;
}
.slot-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}
.slot-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.slot-dot.filled { background: #ff6b35; }
.slot-dot.empty { background: #e5e7eb; }
.slot-status {
    font-size: 11px;
    color: #9ca3af;
    margin-right: auto;
}
.btn-answer {
    background: linear-gradient(165deg, #ff6b35 0%, #ff8c5a 100%);
    border: none;
    border-radius: 9px;
    padding: 0 16px;
    height: 32px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 3px 5px rgba(255,107,53,0.3);
    white-space: nowrap;
}
.btn-answer.my {
    background: linear-gradient(165deg, #ff6b35 0%, #ff8c5a 100%);
}
.btn-closed {
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    padding: 0 16px;
    height: 32px;
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    cursor: default;
    font-family: inherit;
    white-space: nowrap;
}

/* ── Tab Panels ── */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Pro QnA ── */
.pro-header {
    margin-bottom: 20px;
}
.pro-header-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 6px;
}
.pro-header-sub {
    font-size: 13px;
    color: #8b95a1;
}
.instructor-card {
    background: white;
    border: 1.8px solid #e8ecf0;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 2px 5px rgba(26,43,74,0.07);
    margin-bottom: 12px;
}
.instructor-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.instructor-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.instructor-avatar.orange { background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%); }
.instructor-avatar.purple { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); }
.instructor-avatar.green  { background: linear-gradient(135deg, #059669 0%, #10b981 100%); }
.instructor-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a2b4a;
    line-height: 1.5;
}
.instructor-selected-badge {
    display: none;
    font-size: 11px;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1.5;
}
.instructor-card.selected {
    border-color: #ff6b35;
    border-width: 2px;
}
.instructor-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.instructor-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 14px;
}
.instructor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid #f3f4f6;
    padding-top: 13px;
    margin-bottom: 14px;
}
.instructor-stat {
    text-align: center;
}
.instructor-stat-value {
    font-size: 15px;
    font-weight: 700;
    color: #1a2b4a;
    line-height: 1.5;
}
.instructor-stat-value.orange { color: #ff6b35; }
.instructor-stat-label {
    font-size: 10px;
    color: #9ca3af;
}
.btn-select-instructor {
    background: #f4f5f7;
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 40px;
    font-size: 13px;
    font-weight: 700;
    color: #1a2b4a;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
}
.btn-select-instructor:hover {
    background: #ff6b35;
    color: white;
}
.btn-select-instructor.selected {
    background: #ff6b35;
    color: white;
}

/* ── VIP QnA ── */
.vip-banner {
    background: linear-gradient(170deg, #1a2b4a 0%, #0f1e38 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
}
.vip-banner-crown {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 10px;
}
.vip-banner-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}
.vip-banner-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}
.vip-badge-pill {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(160deg, #f59e0b 0%, #fbbf36 100%);
    border-radius: 8px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    height: 20.5px;
    margin-bottom: 12px;
}
.instructor-sub {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 400;
    line-height: 1;
}
.capacity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.capacity-label {
    font-size: 12px;
    color: #6b7280;
}
.capacity-status {
    font-size: 12px;
    font-weight: 700;
}
.capacity-status.orange { color: #ff6b35; }
.capacity-status.gray   { color: #9ca3af; }
.capacity-bar-track {
    background: #f3f4f6;
    border-radius: 4px;
    height: 6px;
    width: 100%;
    margin-bottom: 14px;
    overflow: hidden;
}
.capacity-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c5a 100%);
}
.btn-subscribe-navy {
    background: linear-gradient(177deg, #1a2b4a 0%, #2d4a7a 100%);
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 44px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.15s;
}
.btn-subscribe-navy:hover { opacity: 0.88; }
.btn-subscribe-navy.waitlist {
    background: #f4f5f7;
    color: #1a2b4a;
}
.btn-subscribe-navy.waitlist:hover { opacity: 0.85; }

.select-instructor {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: #ff6b35;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-color: #ff8c5a;
    cursor: pointer;
    display: none;
}

.select-instructor.active {
    display: block;
}

/* ── Answer Subscribe Modal ── */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 28, 50, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal-backdrop.open {
    display: flex;
}
.modal-container {
    background: white;
    width: 480px;
    max-width: calc(100vw - 32px);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    box-shadow: 0 -8px 40px 0 rgba(26, 43, 74, 0.18);
    padding: 28px 22px 32px;
    position: relative;
    animation: modalIn 0.22s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
    position: absolute;
    top: 26px;
    right: 22px;
    background: none;
    border: none;
    font-size: 22px;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    font-family: inherit;
}
.modal-close:hover { color: #6b7280; }
.modal-icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}
.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b4a;
    text-align: center;
    margin-bottom: 6px;
}
.modal-sub {
    font-size: 13px;
    color: #8b95a1;
    text-align: center;
    margin-bottom: 24px;
}
.modal-plan-card {
    background: #fff4f0;
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
}
.modal-plan-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 14px;
}
.modal-plan-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.modal-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #374151;
}
.modal-feature-item .check {
    color: #059669;
    font-size: 12px;
    flex-shrink: 0;
}
.modal-plan-price {
    text-align: right;
}
.modal-plan-price .price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
}
.modal-plan-price .price-unit {
    font-size: 12px;
    color: #9ca3af;
}
.modal-btn-primary {
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(173deg, #ff6b35 0%, #ff8c5a 100%);
    border: none;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 7px rgba(255, 107, 53, 0.3);
    margin-bottom: 14px;
}
.modal-btn-primary:hover { opacity: 0.92; }
.modal-btn-later {
    display: block;
    width: 100%;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #8b95a1;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
}
.modal-btn-later:hover { color: #6b7280; }

/* ── Pro Plan Modal ── */
#proModalTitle {
    margin-bottom: 32px;
}
.pro-plan-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}
.pro-plan-card {
    flex: 1;
    border: 2px solid #e8ecf0;
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s, background 0.15s;
}
.pro-plan-card.active {
    border-color: #ff6b35;
    background: #fff9f7;
}
.pro-recommend-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #ff6b35;
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 8px;
    line-height: 15px;
}
.pro-plan-label {
    font-size: 12px;
    color: #8b95a1;
    margin-bottom: 8px;
}
.pro-plan-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
    white-space: nowrap;
}
.pro-plan-desc {
    font-size: 12px;
    color: #8b95a1;
}
.pro-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.pro-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #374151;
}

/* ── VIP Plan Modal ── */
.vip-plan-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}
.vip-plan-card {
    flex: 1;
    border: 2px solid #e8ecf0;
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s, background 0.15s;
}
.vip-plan-card.active {
    border-color: #8b5cf6;
    background: #f5f3ff;
}
.vip-recommend-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #8b5cf6;
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 8px;
    line-height: 15px;
}
.vip-plan-label {
    font-size: 12px;
    color: #8b95a1;
    margin-bottom: 8px;
}
.vip-plan-price {
    font-size: 24px;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 8px;
    white-space: nowrap;
}
.vip-plan-desc {
    font-size: 12px;
    color: #8b95a1;
}
.vip-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.vip-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #374151;
}
.vip-check {
    color: #8b5cf6;
    font-size: 12px;
    flex-shrink: 0;
}
.modal-btn-purple {
    display: block;
    width: 100%;
    height: 50px;
    background: #8b5cf6;
    border: none;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 7px rgba(139, 92, 246, 0.3);
    margin-bottom: 14px;
}
.modal-btn-purple:hover { opacity: 0.92; }

@keyframes modalSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

/* ===== Answer Modal ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background-color: #f4f5f7;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    width: 512px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Modal Header */
.modal-header {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 32px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-back-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #1a2b4a;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    white-space: nowrap;
}

.modal-back-btn:hover {
    opacity: 0.7;
}

.modal-title.reply {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b4a;
    white-space: nowrap;
    margin-bottom: 0;
}

.modal-type-badge {
    background-color: #fff4ef;
    color: #ff6b35;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    white-space: nowrap;
}

.modal-type-badge.pro {
    background-color: #f0f4ff;
    color: #1a2b4a;
}

.modal-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.modal-time-label {
    font-size: 11px;
    color: #8b95a1;
}

.modal-time-value {
    font-size: 18px;
    font-weight: 700;
    color: #ef4444;
}

/* Modal Body */
.modal-body {
    padding: 24px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Question preview card */
.modal-question-card {
    background-color: white;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-q-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2b4a;
    line-height: 1.5;
}

.modal-q-body {
    font-size: 15px;
    color: #8b95a1;
    line-height: 1.7;
}

.ask-image-preview-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.ask-image-preview-row:empty { display: none; }
.ask-img-thumb-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8ecf0;
}
.ask-img-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.ask-image-preview-text {
    color: #707983;
    font-size: 12px;
}

/* Answer writing card */
.modal-answer-card {
    background-color: white;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-answer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-answer-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a2b4a;
}

.modal-char-count {
    font-size: 14px;
    font-weight: 600;
    color: #8b95a1;
}

.modal-textarea {
    width: 100%;
    height: 200px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    font-size: 15px;
    font-family: inherit;
    color: #1a2b4a;
    resize: none;
    outline: none;
    line-height: 1.7;
    transition: border-color 0.2s;
}

.modal-textarea::placeholder {
    color: rgba(10,10,10,0.4);
}

.modal-textarea:focus {
    border-color: #ff6b35;
}

.modal-bonus-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-bonus-bar {
    width: 100%;
    height: 8px;
    background-color: #f4f5f7;
    border-radius: 9999px;
    overflow: hidden;
}

.modal-bonus-fill {
    height: 100%;
    width: 0%;
    background-color: #f59e0b;
    border-radius: 9999px;
    transition: width 0.2s;
}

.modal-bonus-text {
    font-size: 13px;
    color: #f59e0b;
}

/* Submit section */
.modal-submit-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-submit-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 10px;
    background-color: #e5e7eb;
    color: white;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: not-allowed;
    transition: background-color 0.2s;
}

.modal-submit-btn.active {
    background-color: #ff6b35;
    cursor: pointer;
}

.modal-submit-btn.active:hover {
    background-color: #e85c27;
}

.modal-submit-note {
    font-size: 12px;
    color: #8b95a1;
    text-align: center;
}

/* ── Responsive ── */

/* Tablet landscape (≤ 1200px) */
@media (max-width: 1200px) {
    .mid-section { padding: 48px 40px 60px; }
    .qna-intro-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .qna-feed-section { padding: 32px 40px; }
    .tab-bar { padding: 0 40px; }
    .qna-type-tab-btn { flex: 1 0 0; }
    .image-right {
        width: 100%;
        opacity: 0.5;
    }
}

/* Tablet portrait (≤ 960px) */
@media (max-width: 960px) {
    .qna-intro-grid { grid-template-columns: 1fr; gap: 28px; }
    .why-cards { grid-template-columns: repeat(2, 1fr); }
    .modal-container { width: calc(100% - 48px); max-width: 480px; }
}

/* Small tablet / large mobile (≤ 768px) */
@media (max-width: 768px) {
    .hero-slider-qna { height: 360px; }
    .hero-badge { top: 72px; }
    .hero-heading { top: 110px; }
    .hero-heading h1 { font-size: 28px; }
    .hero-desc { top: 204px; }
    .hero-cta { top: 272px; font-size: 14px; padding: 12px 22px; }
    .hero-dots { right: 32px; }

    .mid-section { padding: 40px 28px 52px; }
    .qna-feed-section { padding: 28px 28px; }
    .tab-bar { padding: 0 28px; }

    .why-cards { grid-template-columns: 1fr; }
    .why-section-header h3 { font-size: 19px; }
    .modal-container { width: calc(100% - 32px); max-width: 480px; }
    .vip-plan-price { font-size: 20px; }
}

/* Mobile (≤ 640px) */
@media (max-width: 640px) {
    .hero-slider-qna { height: 320px; }
    .hero-arrow {display: none;}
    .hero-content { left: 20px; }
    .hero-badge { top: 52px; font-size: 11px; padding: 4px 12px; }
    .hero-heading { top: 86px; }
    .hero-heading h1 { font-size: 22px; }
    .hero-desc { top: 170px; font-size: 13px; }
    .hero-cta { top: 242px; font-size: 13px; padding: 10px 18px; border-radius: 12px; }
    .hero-arrow { width: 34px; height: 34px; font-size: 17px; top: 143px; }
    .hero-dots { right: 20px; bottom: 14px; }

    .mid-section { padding: 28px 20px 44px; }
    .qna-intro-left h2 { font-size: 24px; }
    .qna-feed-section { padding: 20px 16px; }
    .tab-bar { padding: 0; }
    .qna-type-tab-btn { height: 46px; font-size: 12px; gap: 4px; padding: 0 8px; }

    .quick-steps { gap: 4px; }
    .quick-step-pill { font-size: 11px; padding: 5px 10px; }
    .quick-step-arrow { font-size: 11px; }
    .quick-qna-info h3 { font-size: 16px; line-height: 1.45; }
    .quick-qna-info p { font-size: 12px; }

    .instructor-stats { gap: 10px; }
    .instructor-stat-value { font-size: 13px; }

    /* 모달 → 하단 시트 */
    .modal-backdrop.open { align-items: flex-end; }
    .modal-container {
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 24px 18px 32px;
        animation: modalSlideUp 0.25s ease;
    }

    .vip-plan-row { flex-direction: column; gap: 10px; }
    .vip-plan-price { font-size: 20px; }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
    .hero-slider-qna { height: 290px; }
    .hero-badge { top: 40px; }
    .hero-heading { top: 72px; }
    .hero-heading h1 { font-size: 20px; }
    .hero-desc { top: 154px; font-size: 12px; line-height: 1.6; }
    .hero-cta { top: 222px; font-size: 12px; padding: 9px 16px; }

    .qna-type-tab-btn { font-size: 11px; height: 44px; }
    .tab-count { font-size: 10px; padding: 1px 6px; }
}


/* ── Ask Question Modal (3-step) ── */
.ask-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.ask-modal-backdrop.open { display: flex; }
.ask-modal-dialog {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    width: 510px;
    max-width: 100%;
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    position: relative;
}
.ask-modal-handle {
    display: flex;
    justify-content: center;
    padding: 20px 0 0;
    flex-shrink: 0;
}
.ask-modal-handle-bar {
    width: 40px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 999px;
}
.ask-modal-header {
    padding: 16px 24px 0;
    flex-shrink: 0;
}
.ask-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0 0 6px;
    line-height: 1.55;
}
.ask-modal-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}
.ask-modal-close-x {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #9ca3af;
    opacity: 0.7;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
    font-family: sans-serif;
    transition: opacity 0.15s;
}
.ask-modal-close-x:hover { opacity: 1; }
.ask-modal-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    flex-shrink: 0;
}
.adot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e8ecf0;
    flex-shrink: 0;
    transition: background 0.25s;
}
.adot.filled { background: #ff6b35; }
.ask-step {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
}
/* Step 1 */
.ask-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0 0 16px;
}
.ask-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}
.ask-category-btn {
    height: 75px;
    background: #f8f9ff;
    border: 1px solid #e8ecf0;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.15s;
    font-family: 'Arimo', 'Noto Sans KR', sans-serif;
    padding: 0;
}
.ask-category-btn:hover:not(.selected) { background: #eff1ff; border-color: #c4cbf5; }
.ask-category-btn.selected { background: #fff4f0; border: 2px solid #ff6b35; }
.cat-icon { font-size: 18px; line-height: 1.5; }
.cat-name { font-size: 12px; font-weight: 500; color: #374151; text-align: center; line-height: 1.25; }
.ask-category-btn.selected .cat-name { color: #ff6b35; font-weight: 700; }
.ask-next-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'Arimo', 'Noto Sans KR', sans-serif;
    transition: opacity 0.2s;
    margin-top: auto;
}
.ask-next-btn:not(:disabled):hover { opacity: 0.88; }
.ask-next-btn:disabled { opacity: 0.5; cursor: not-allowed; }
/* Step 2 */
.ask-category-badge {
    display: inline-flex;
    align-items: center;
    height: 20px;
    border-radius: 8px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a);
    align-self: flex-start;
    white-space: nowrap;
}
.ask-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2b4a;
    display: block;
    margin-top: 16px;
    margin-bottom: 8px;
}
.ask-level-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.ask-level-btn {
    flex: 1;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Arimo', 'Noto Sans KR', sans-serif;
    transition: all 0.15s;
    border-width: 2px;
    border-style: solid;
}
.ask-level-btn.beginner { background: #f0fdf4; border-color: #b9f8cf; color: #008236; }
.ask-level-btn.intermediate { background: #eff6ff; border-color: #bedbff; color: #1447e6; }
.ask-level-btn.advanced { background: #faf5ff; border-color: #e9d4ff; color: #8200db; }
.ask-level-btn.beginner.selected { background: #dcfce7; border-color: #22c55e; box-shadow: 0 0 0 2px rgba(34,197,94,0.2); }
.ask-level-btn.intermediate.selected { background: #dbeafe; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }
.ask-level-btn.advanced.selected { background: #ede9fe; border-color: #a855f7; box-shadow: 0 0 0 2px rgba(168,85,247,0.2); }
.ask-title-input {
    width: 100%;
    height: 36px;
    background: #f3f3f5;
    border: 1px solid #e8ecf0;
    border-radius: 14px;
    padding: 4px 12px;
    font-size: 14px;
    color: #1a2b4a;
    font-family: 'Arimo', 'Noto Sans KR', sans-serif;
    box-sizing: border-box;
    outline: none;
    margin-bottom: 16px;
    transition: border-color 0.15s;
}
.ask-title-input::placeholder { color: #717182; }
.ask-title-input:focus { border-color: #ff8c5a; }
.ask-body-textarea {
    width: 100%;
    height: 110px;
    background: #f3f3f5;
    border: 1px solid #e8ecf0;
    border-radius: 14px;
    padding: 8px 12px;
    font-size: 14px;
    color: #1a2b4a;
    font-family: 'Arimo', 'Noto Sans KR', sans-serif;
    box-sizing: border-box;
    outline: none;
    resize: none;
    line-height: 1.5;
    transition: border-color 0.15s;
}
.ask-body-textarea::placeholder { color: #717182; }
.ask-body-textarea:focus { border-color: #ff8c5a; }
.ask-char-count {
    font-size: 12px;
    color: #9ca3af;
    margin: 4px 0 16px;
}
.ask-upload-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed #e8ecf0;
    border-radius: 14px;
    height: 114px;
    margin-bottom: 20px;
    cursor: pointer;
    gap: 6px;
    transition: border-color 0.15s;
}
.ask-upload-zone:hover { border-color: #ff8c5a; }
.ask-upload-zone.drag { border-color: #ff8c5a; }
.ask-upload-icon {
    font-size: 26px;
    color: #9ca3af;
    line-height: 1;
}
.ask-upload-text { font-size: 14px; font-weight: 500; color: #6b7280; }
.ask-upload-sub { font-size: 12px; color: #9ca3af; }
.ask-image-preview-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.ask-image-preview-row:empty { display: none; }
.ask-img-thumb-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8ecf0;
}
.ask-img-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ask-img-remove {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 10px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-family: sans-serif;
    transition: background 0.15s;
}
.ask-img-remove:hover { background: rgba(0,0,0,0.8); }
.ask-preview-images {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.ask-preview-images:empty { display: none; }
.ask-preview-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e0e7ff;
}
.ask-footer-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
}
.ask-prev-btn {
    flex: 0 0 auto;
    height: 36px;
    padding: 0 16px;
    background: none;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #0a0a0a;
    cursor: pointer;
    font-family: 'Arimo', 'Noto Sans KR', sans-serif;
    transition: background 0.15s;
    white-space: nowrap;
}
.ask-prev-btn:hover { background: #f3f4f6; }
.ask-footer-row .ask-next-btn { flex: 1; margin-top: 0; height: 36px; }
/* Step 3 */
.ask-preview-card {
    background: #f8f9ff;
    border: 1px solid #e0e7ff;
    border-radius: 16px;
    padding: 17px;
    margin-bottom: 16px;
}
.ask-preview-badges {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}
.ask-level-badge {
    height: 22px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 3px 9px;
    font-size: 12px;
    font-weight: 500;
    color: #0a0a0a;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    background: #fff;
}
.ask-preview-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0 0 4px;
    line-height: 1.5;
    word-break: break-word;
}
.ask-preview-body {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.625;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ask-info-box {
    background: #fff4f0;
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 14px;
    padding: 12px 13px;
    font-size: 12px;
    color: #ff6b35;
    line-height: 1.625;
    margin-bottom: 16px;
}
.ask-submit-btn {
    width: 100%;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'Arimo', 'Noto Sans KR', sans-serif;
    transition: opacity 0.2s;
    margin-bottom: 8px;
}
.ask-submit-btn:hover { opacity: 0.88; }
.ask-cancel-btn {
    width: 100%;
    height: 36px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    cursor: pointer;
    font-family: 'Arimo', 'Noto Sans KR', sans-serif;
}
.ask-cancel-btn:hover { color: #374151; }

/* ── Ask Modal 모바일: 바텀 시트 스타일 + 답변모달 ── */
@media (max-width: 480px) {
    .ask-modal-backdrop {
        padding: 0;
        align-items: flex-end;
    }
    .ask-modal-dialog {
        width: 100%;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        max-height: 92vh;
    }
    .ask-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .modal-overlay { padding: 0; align-items: flex-end; }
    .modal-box {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
    }
}