.notice-detail-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 0px;
    font-family: 'Noto Sans KR', sans-serif;
    color: #222;
}

.notice-section-title h1 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    margin-top: 40px;
    color: #222;
    text-align: center;
}

.notice-detail-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.notice-detail-meta {
    margin-bottom: 20px;
    color: #888;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    display: flex;
    gap: 16px;
}

.notice-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-family: 'Noto Sans KR', sans-serif;
}

.notice-detail-content ul {
    padding-left: 20px;
    margin: 16px 0;
}

.notice-detail-content ul li {
    list-style: disc;
}

.notice-nav {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 30px;
    font-size: 15px;
    color: #666;
    font-family: 'Noto Sans KR', sans-serif;
}

.nav-button:hover {
    background-color: #e0e0e0;
}

.back-to-list {
    margin-top: 40px;
    text-align: center;
}

.btn-list {
    display: inline-block;
    padding: 18px 140px;
    background: #2385ff;
    border-radius: 16px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.btn-list:hover {
    background-color: #3b7cc5;
}

.nav-button {
    display: inline-block;
    padding: 14px 25px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    background-color: #f0f0f0;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.notice-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 55px;
    margin-top: 120px;
    flex-wrap: wrap;
}

.back-to-list {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #e4e4e4;
    padding-top: 40px;
}

.btn-list:hover {
    background: #2385ff;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .notice-section-title h1 {
        font-size: 28px;
    }

    .date {
        font-size: 16px;
    }

    .notice-detail-section {
        padding: 40px 20px;
    }

    .notice-detail-title {
        font-size: 20px;
    }

    .notice-detail-content {
        font-size: 14px;
    }

    .btn-list {
        font-size: 13px;
        padding: 18px 130px;
    }
}