/* ============================================================
   notice.css — Notice banners
   ============================================================ */

.notice-tile {
    max-width: 720px;
    margin: 0.5rem auto;
    padding: 0.8rem 0.8rem;
    background: var(--primary-notice--bg);
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.notice-section-title {
    display: inline-flex;
    align-items: center;
    justify-content: -between;
    gap: 0.4rem;
    color: var(--primary-notice--text);
    font-size: 1rem;
    font-weight: 600;
}

.notice-section-title .material-symbols-outlined {
    font-size: 1.2rem;
}

.notice-logo {
    display: block;
    width: 240px;
    max-width: 100%;
    height: auto;
    margin: 0.8rem auto;
}

.notice-section-title.details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.notice-text {
    margin: 0.6rem 0 0.2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--primary-notice--text);
}

.notice-text a {
    color: var(--primary-link);
    cursor: pointer;
}

.notice-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0rem;
    padding: 0.35rem 0.8rem;
    border: 2px solid var(--primary-link);
    border-radius: 999px;
    background: transparent;
    color: var(--primary-link);
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.notice-btn .material-symbols-outlined {
    font-size: 1.1rem;
}

.notice-btn:hover {
    background: var(--primary-link);
    color: #fff;
}

.notice-btn.hidden {
    display: none;
}