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


.k-article-box {
    margin-bottom: 32px;
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.k-article-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.k-article-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.4;
}

.k-article-title a {
    color: #1a237e;
    text-decoration: none;
}

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

.k-article-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 16px;
}

.k-article-summary {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.k-read-more {
    display: inline-block;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 500;
    color: #2e7d32;
    text-decoration: none;
}

.k-read-more:hover {
    text-decoration: underline;
}

.k-read-more-button {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #0077cc;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.k-read-more-button:hover {
    background-color: #005fa3;
}

@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;
    }
}

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

.pagination a {
    display: inline-block;
    margin: 0 4px;
    padding: 6px 12px;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

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

.pagination a.active {
    background-color: #3b82f6;
    color: #fff;
    font-weight: bold;
    border-color: #3b82f6;
}

.lang-toggle-wrapper {
    text-align: right;
    margin: 20px 0;
}

.lang-toggle {
    display: inline-flex;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

.lang-btn {
    padding: 6px 18px;
    text-decoration: none;
    color: #5c7687;
    background: #f9f9f9;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
    font-size: 14px;
    border-right: 1px solid #ccc;
}

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

.lang-btn.active {
    background: #0077cc;
    color: #fff;
    font-weight: 600;
}