@charset "utf-8";

/* ==========================================================================
   AT 자격시험 (FAT/TAT) 전용 타임라인형 커리큘럼 스타일
   ========================================================================== */

/* 타임라인 메인 컨테이너 */
.at-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 3px dashed #001a35; /* 학원 시그니처 네이비 색상 */
    margin-left: 15px;
}

/* 타임라인 개별 아이템 */
.at-timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.at-timeline-item:last-child {
    margin-bottom: 0;
}

/* 타임라인 좌측 원형 숫자 배지 */
.at-timeline-badge {
    position: absolute;
    left: -43px;
    top: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #001a35;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 0 0 4px #ffffff;
    z-index: 2;
}

/* 타임라인 개별 콘텐츠 박스 */
.at-timeline-content {
    background: #f8faff;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #001a35;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* 콘텐츠 박스 호버 효과 (선택 사항 - 부드러운 입체감 제공) */
.at-timeline-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 타임라인 대주제 타이틀 */
.at-timeline-title {
    color: #001a35;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}