* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f7fa;
}

.btoom-bn-wrap {
    display: none !important;
}

/*히어로 섹션*/
.hero-section {
    background: #f8f9fc;
    border-bottom: 1px solid #e5e7eb;
    padding: 32px 0;
    margin: 0;
    width: 100%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #3730a3;
}

.breadcrumb-separator {
    color: #d1d5db;
}

.breadcrumb span:last-child {
    color: #3730a3;
    font-weight: 500;
}

/* 히어로 제목 & 배지 */
.hero-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin: 0;
}

.hero-badges {
    display: inline-flex;
    gap: 8px;
    margin-left: 12px;
    vertical-align: middle;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.hero-badge.best {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.hero-badge.new {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* 숨김 요소 */
.hero-pattern,
.hero-subtitle {
    display: none;
}

/*플로팅 정보 카드*/
.floating-info {
    position: relative;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: start;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #3730a3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.info-value {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

/* 메인 컨테이너 & 레이아웃*/
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 24px;
}

.content-left {
    flex: 1;
}

/* 비디오 프리뷰 카드*/
.video-preview-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #1e293b;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.3s;
}

.video-container:hover {
    opacity: 0.95;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s;
}

.video-info:hover {
    background: #f8fafc;
}

.video-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.video-play-icon {
    width: 48px;
    height: 48px;
    background: #3730a3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.video-info:hover .video-play-icon {
    background: #4c1d95;
    transform: scale(1.1);
}

.video-play-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.video-text {
    flex: 1;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.video-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.video-arrow {
    width: 24px;
    height: 24px;
    color: #94a3b8;
    transition: color 0.2s;
}

.video-info:hover .video-arrow {
    color: #3730a3;
}

.video-arrow svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* 사이드바*/
.content-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 구매 카드 */
.purchase-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.price-section {
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    color: #3730a3;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-value small {
    font-size: 18px;
    font-weight: 500;
}

/* 폼 요소 */
.options-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.form-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #1e293b;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.form-select:hover {
    border-color: #cbd5e1;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233730a3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.form-select:focus {
    outline: none;
    border-color: #3730a3;
    box-shadow: 0 0 0 3px rgba(55, 48, 163, 0.1);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233730a3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* 읽기 전용 필드 */
.form-readonly {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #1e293b;
    background: #f8fafc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-readonly .icon-small {
    width: 18px;
    height: 18px;
    stroke: #10b981;
    flex-shrink: 0;
}

.form-readonly span {
    flex: 1;
    font-weight: 500;
}

.date-wrapper {
    position: relative;
}

.date-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #1e293b;
    background: white;
    transition: all 0.2s;
}

.date-input:focus {
    outline: none;
    border-color: #3730a3;
}

.date-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.date-icon svg {
    width: 100%;
    height: 100%;
    stroke: #64748b;
    stroke-width: 2;
    fill: none;
}

/* 액션 버튼 */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: #3730a3;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(55, 48, 163, 0.2);
}

.btn-primary:hover {
    background: #4c1d95;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(55, 48, 163, 0.3);
}

.btn-secondary {
    width: 100%;
    padding: 16px 24px;
    background: white;
    color: #3730a3;
    border: 2px solid #3730a3;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #f8fafc;
}

.collapsible-info-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s;
}

.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    background: white;
    transition: background 0.2s;
    user-select: none;
}

.collapsible-header:hover {
    background: #f8fafc;
}

.collapsible-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.icon-small {
    width: 18px;
    height: 18px;
    stroke: #3730a3;
    stroke-width: 2;
    fill: none;
}

.collapsible-arrow {
    width: 18px;
    height: 18px;
    stroke: #64748b;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s;
}

.collapsible-info-section.expanded .collapsible-arrow {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8fafc;
}

.collapsible-content.expanded {
    max-height: 300px;
    transition: max-height 0.3s ease-in;
}

.info-list {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item {
    font-size: 13px;
    color: #475569;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.info-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.tabs-full-width {
    margin-top: 30px;
    width: 100%;
}

.tabs-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    max-width: 100%;
    position: relative;
}

.tab-nav {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
}

.tab-button {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0;
}

.tab-button:hover {
    color: #1e293b;
}

.tab-button.active {
    background: white;
    color: #3730a3;
    border-bottom-color: #3730a3;
}

.tab-panels {
    padding: 28px;
    overflow-x: auto;
    overflow-y: visible;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s;
    max-width: 100%;
    overflow-x: auto;
}

.tab-panel.active {
    display: block;
}

/* 탭 패널 내 이미지 크기 제한 */
.tab-panel img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px 0;
}

/* 탭 패널 내 테이블 반응형 처리 */
.tab-panel table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

.tab-panel iframe {
    max-width: 100%;
    height: auto;
    min-height: 400px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 탭 콘텐츠 스타일 */
.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #3730a3;
    border-radius: 2px;
}

.section-content {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: keep-all;
}

/* 컨텐츠 내 모든 요소가 컨테이너를 벗어나지 않도록 */
.section-content * {
    max-width: 100%;
    box-sizing: border-box;
}

/* 컨텐츠 내 pre 태그 (코드 블록) 처리 */
.section-content pre {
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
}

/* 컨텐츠 내 이미지 정렬 */
.section-content img {
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 컨텐츠 내 비디오 박스 */
.section-content video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

/* 커리큘럼 리스트 */
.curriculum-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.curriculum-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.curriculum-item:hover {
    background: white;
    border-color: #3730a3;
    box-shadow: 0 4px 6px rgba(55, 48, 163, 0.1);
}

.curriculum-number {
    width: 40px;
    height: 40px;
    background: #3730a3;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 16px;
}

.curriculum-content {
    flex: 1;
}

.curriculum-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.curriculum-duration {
    font-size: 13px;
    color: #64748b;
}


.features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #475569;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 12px;
    height: 12px;
    stroke: #16a34a;
    stroke-width: 3;
    fill: none;
}

.bottom-nav {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.nav-button {
    padding: 14px 32px;
    background: white;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-button:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
}

.nav-button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.custom-alert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.custom-alert-modal.show {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.custom-alert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.custom-alert-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-width: 320px;
    max-width: 480px;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.custom-alert-header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.custom-alert-icon {
    color: #f59e0b;
    margin-right: 12px;
    flex-shrink: 0;
}

.custom-alert-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.custom-alert-body {
    padding: 24px;
}

.custom-alert-message {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

.custom-alert-footer {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.custom-alert-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.custom-alert-btn-primary {
    background: #3730a3;
    color: white;
}

.custom-alert-btn-primary:hover {
    background: #312e81;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(55, 48, 163, 0.3);
}

.custom-alert-btn-primary:active {
    transform: translateY(0);
}

/* 다크 모드 지원 */
@media (prefers-color-scheme: dark) {
    .custom-alert-container {
        background: #1f2937;
    }
    
    .custom-alert-header,
    .custom-alert-footer {
        border-color: #374151;
    }
    
    .custom-alert-title {
        color: #f3f4f6;
    }
    
    .custom-alert-message {
        color: #d1d5db;
    }
}

@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
        max-width: 100%;
        margin: 20px 0 0 0;
    }
    
    .purchase-card {
        max-width: 100%;
        margin: 0;
    }
    
    .tabs-full-width {
        margin-top: 20px;
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
    /* 히어로 섹션 */
    .hero-section {
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-badges {
        display: block;
        margin-left: 0;
        margin-top: 8px;
    }
    
    /* 정보 카드 2열 유지 */
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .info-card {
        padding: 16px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-label {
        font-size: 12px;
    }
    
    .info-value {
        font-size: 16px;
    }
    
    /* 탭 네비게이션 */
    .tab-nav {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1 1 calc(50% - 4px);
    }
    
    /* 사이드바 전체 너비 */
    .content-sidebar {
        width: 100%;
        padding: 0;
    }
    
    .purchase-card {
        border-radius: 16px;
        max-width: 100%;
    }
}


@media (max-width: 480px) {
    /* 히어로 섹션 */
    .hero-section {
        padding: 16px 0;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    /* 플로팅 정보 카드 */
    .floating-info {
        padding: 0 16px;
        margin: 20px auto;
    }
    
    /* 정보 카드 1열로 변경 */
    .info-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .info-card {
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 12px;
        padding: 14px;
        align-items: center;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .info-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .info-label {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .info-value {
        font-size: 15px;
    }
    
    /* 비디오 카드 */
    .video-preview-card {
        border-radius: 12px;
    }
    
    .video-container {
        height: 200px;
    }
    
    /* 접이식 정보 섹션 */
    .collapsible-info-section {
        border-radius: 8px;
    }
    
    .collapsible-header {
        padding: 12px 14px;
    }
    
    .info-list {
        padding: 12px 14px;
    }
    
    .video-info {
        padding: 16px;
    }
    
    .video-play-icon {
        width: 40px;
        height: 40px;
    }
    
    .video-play-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .video-title {
        font-size: 16px;
    }
    
    .video-description {
        font-size: 13px;
    }
    
    /* 탭 카드 */
    .tabs-card {
        border-radius: 12px;
    }
    
    .tab-button {
        font-size: 13px;
        padding: 12px 10px;
    }
    
    /* 탭 패널 컨텐츠 */
    .tab-panels {
        padding: 20px;
        overflow-x: auto;
    }
    
    .section-content img,
    .section-content video,
    .section-content iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* 구매 카드 */
    .purchase-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .price-value {
        font-size: 28px;
    }
    
    .form-select,
    .date-input {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .form-readonly {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* 하단 네비게이션 */
    .bottom-nav {
        flex-direction: column;
        margin: 40px auto 20px;
        padding: 0 16px;
    }
    
    .nav-button {
        width: 100%;
        justify-content: center;
    }
    
    /* 커리큘럼 아이템 */
    .curriculum-item {
        padding: 12px;
    }
    
    .curriculum-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
        margin-right: 12px;
    }
    
    .curriculum-title {
        font-size: 14px;
    }
    
    .curriculum-duration {
        font-size: 12px;
    }
}