/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 2025. 12. 25., 오후 4:35:38
    Author     : Haruki
*/


.career-page {
    max-width: 1000px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

/* 좌측 프로필*/
.left {
    position: sticky;
    top: 40px;
    height: fit-content;
    /* 카드 형태 디자인 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: #ffffff;
    padding: 16px 22px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06); /* 옅은 테두리 */
}

.title {
    font-size: 40px;
    font-weight: 900;
    color: #5b5cff;
    margin-top: 0;
    margin-bottom: 20px;
}

.block {
    margin-bottom: 32px;
}

.block h3 {
    margin-top: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 6px;
}

.intro {
    margin-top: 10px;
    line-height: 1.6;
    color: #444;
}

.profile-row {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    line-height: 1.4;
}

.profile-title {
    min-width: 50px;   /* 소제목 고정폭*/
    font-weight: 700;
    color: #000;
    text-align: center; /* 가운데 정렬 */
}
.profile-content {
    color: #333;
}

/* 공통 리스트 리셋 */
.info-list,
.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 정보 / 링크 리스트 공통 */
.info-list li,
.link-list li {
    position: relative;
    padding: 0;
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* 정보 리스트: 왼쪽 포인트 */
.info-list li {
    padding-left: 14px;
}

/* 과하지 않은 포인트 */
.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #777;
}

/* 링크 리스트 */
.link-list a {
    color: #444;
    text-decoration: none;
}

/* 링크에만 은은한 피드백 */
.link-list a:hover {
    text-decoration: underline;
}

/* 우측 프로필 */
.section {
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: #ffffff;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    border: 1px solid rgba(0,0,0,0.06); /* 옅은 테두리 */
}

.section h2 {
    margin-top: 0;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.carrer-row {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    line-height: 1.4;
}

.skill-row {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    line-height: 1.4;
}

.skill-title {
    min-width: 100px;   /*기술 스택 고정폭*/
    font-weight: 700;
    color: #000;
}

.skill-content {
    color: #333;
}

.period {
    min-width: 120px;
    color: #333;
}

.project {
    margin-top: 16px;
}

.project span {
    display: block;
    color: #555;
    margin-top: 4px;
}

/* 우측 프로필 섹션 분할 */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.section-split .half h2 {
    margin-top: 0;
}

.split-row {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    line-height: 1.4;
}

.split-title {
    min-width: 70px;   /* 고정폭 */
    font-weight: 700;
    color: #000;
}

.split-content {
    color: #333;
}
