/* history.css */
.history-page {
    padding-top: 100px;
}

.history-content-full {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.history-content-full .page-title {
    text-align: left;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6a00;
    padding-bottom: 10px;
}

.history-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.history-year-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    flex-basis: 150px;
    flex-shrink: 0;
}

.history-details {
    flex-grow: 1;
    padding-left: 20px;
}

.history-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.history-details li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* 수평선 스타일: 연도 구분선 */
.history-divider {
    border: 0;
    border-top: 1px solid #ff6a00;
    margin: 20px auto;
    max-width: 800px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .history-page {
        padding-top: 120px;
    }

    .history-content-full {
        padding: 15px;
    }

    .history-content-full .page-title {
        font-size: 1.5rem;
        text-align: center;
    }

    /* 연혁 아이템을 세로로 쌓기 */
    .history-item {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .history-year-text {
        font-size: 1.3rem;
        flex-basis: auto;
        margin-bottom: 10px;
    }

    .history-details {
        padding-left: 0;
    }

    .history-details li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .history-page {
        padding-top: 100px;
    }

    .history-content-full .page-title {
        font-size: 1.3rem;
    }

    .history-year-text {
        font-size: 1.2rem;
    }

    .history-details li {
        font-size: 0.9rem;
    }
}