.article-container {
    max-width: 1520px;
    margin: -60px auto;
    padding: 0px 20px 60px;
    display: flow-root;
}

/* 공통 링크 스타일 */
.insight-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* 메인 카드 스타일 */
.insight-box {
    box-sizing: border-box;
    background: #fdfdfd;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.insight-box:hover {
    background-color: #f2f2f2;
    border-color: #ccc;
}

/* 제목 */
.insight-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.insight-title a {
    color: inherit;
    text-decoration: none;
}

.insight-title a:hover {
    text-decoration: underline;
}

/* 메타 정보 */
.insight-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
}

/* 본문 요약 */
.insight-summary {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

/* 줄 수 제한 (요약) */
.content-snippet {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.8em;
    line-height: 1.6em;
    position: relative;
    transition: max-height 0.3s ease;
}

.content-snippet.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
    overflow: visible;
}

/* 더보기 버튼 */
.read-more-btn {
    margin-top: 10px;
    padding: 8px 16px;
    font-size: 14px;
    background-color: #eee;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.read-more-btn:hover {
    background-color: #ddd;
}

/* ‘상세보기’ 또는 ‘뉴스 원문 보기’ 버튼 */
.read-more-link,
.insight-read-more,
.insight-read-button {
    display: inline-block;
    margin-top: 18px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    max-width: 100%;
    border: 1px solid #222;
    background: transparent;
    color: #222;
    border-radius: 6px;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.read-more-link:hover,
.insight-read-more:hover,
.insight-read-button:hover {
    background-color: #222;
    color: #fff;
}

/* 섹션 헤더 */
.section-header {
    text-align: center;
    margin: 60px 0 40px;
}

.section-header__title {
    font-size: 24px;
    font-weight: 700;
    border-bottom: 3px solid #000;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 12px;
}

.section-header__subtitle {
    font-size: 16px;
    color: #444;
    margin-top: 0;
}

@media (max-width: 480px) {

    .insight-title,
    .k-article-title {
        font-size: 18px;
    }

    .insight-summary,
    .k-article-summary {
        font-size: 14px;
        line-height: 1.6;
    }

    .read-more-link,
    .k-read-more {
        width: 100%;
        font-size: 14px;
        margin-top: 16px;
    }
}

/* 페이지네이션 스타일
*/
.pagination {
    text-align: center;
    margin: 40px 0 80px;
}

.pagination a {
    margin: 0 5px;
    padding: 8px 14px;
    border: 1px solid #ccc;
    text-decoration: none;
}

.pagination a:hover {
    background-color: #f0f0f0;
}

.pagination a.active {
    background-color: #000;
    color: #fff;
}

.lang-toggle-wrapper {
    text-align: right;
    margin: 20px 0;
    /* max-width: 1200px; */
    margin-left: auto;
    margin-right: auto;
}


.lang-toggle {
    display: inline-flex;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.lang-tab {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    background-color: #f7f7f7;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    border-right: 1px solid #dcdcdc;
}

.lang-tab:last-child {
    border-right: none;
}

.lang-tab:hover {
    background-color: #eaeaea;
}

.lang-tab.active {
    background-color: #333;
    color: #fff;
    font-weight: bold;
}