/* °øÅë ÆùÆ® */
body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* ¾ÆÄ«ÀÌºê ÀüÃ¼ ¹Ú½º */
.news-archive {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Á¦¸ñ */
.news-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
}

/* ¸µÅ© ¹ØÁÙ Á¦°Å */
.news-item a {
    text-decoration: none;
    color: inherit; /* ±âº» ÅØ½ºÆ® »ö»ó À¯Áö */
}

/* ¸¶¿ì½º ¿À¹ö ½Ã °­Á¶ */
.news-item a:hover .news-item-title {
    text-decoration: underline;
    color: #0073e6; /* ¿øÇÏ´Â °­Á¶ »ö»ó */
}

/* ´º½º ¸®½ºÆ® */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ´º½º ¾ÆÀÌÅÛ Ä«µå */
.news-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ´º½º Á¦¸ñ */
.news-item-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

/* ´º½º ¿ä¾à */
.news-item-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* "µî·ÏµÈ ´º½º°¡ ¾ø½À´Ï´Ù" ¸Þ½ÃÁö */
.no-news {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin-top: 50px;
}

/* ¹ÝÀÀÇü ´ëÀÀ */
@media (max-width: 768px) {
    .news-item {
        padding: 16px;
    }

    .news-item-title {
        font-size: 18px;
    }

    .news-item-excerpt {
        font-size: 14px;
    }
}