/* ===== NOTICE PAGE STYLES ===== */

/* Notice Filter Section */
.notice-filter {
    padding: 2rem 2rem 1rem;
    background-color: rgba(242, 239, 234, 0.03);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: rgba(242, 239, 234, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 25px;
    color: var(--color-ivory);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-width: 120px;
    justify-content: center;
}

.filter-btn i {
    color: var(--color-gold);
    font-size: 1rem;
}

.filter-btn:hover {
    background-color: rgba(201, 162, 39, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.filter-btn.active i {
    color: var(--color-black);
}

/* Notice Section */
.notice-section {
    padding: 4rem 2rem;
}

.notice-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Important Notice */
.notice-important {
    margin-bottom: 3rem;
}

.notice-card.important {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 2px solid var(--color-gold);
}

/* Notice Card */
.notice-card {
    position: relative;
    background-color: rgba(242, 239, 234, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.notice-card:hover {
    background-color: rgba(242, 239, 234, 0.08);
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.2);
}

/* Notice Badge */
.notice-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.notice-badge.important {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.notice-badge.event {
    background-color: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.notice-badge.update {
    background-color: rgba(84, 160, 255, 0.2);
    color: #54a0ff;
    border: 1px solid rgba(84, 160, 255, 0.3);
}

.notice-badge.branch {
    background-color: rgba(72, 219, 251, 0.2);
    color: #48dbfb;
    border: 1px solid rgba(72, 219, 251, 0.3);
}

/* Notice Content */
.notice-content {
    padding-left: 0;
}

.notice-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-ivory);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    word-break: keep-all;
    word-wrap: break-word;
}

.notice-card.important .notice-title {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.notice-excerpt {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    word-break: keep-all;
    word-wrap: break-word;
}

.notice-card.important .notice-excerpt {
    font-size: 1rem;
    line-height: 1.9;
}

/* Notice Meta */
.notice-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.notice-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.notice-date i {
    color: var(--color-gold);
}

.notice-category {
    padding: 0.3rem 0.8rem;
    background-color: rgba(201, 162, 39, 0.1);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 500;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-gray);
}

.no-results i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results p {
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    text-align: center;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    word-break: keep-all;
    word-wrap: break-word;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .notice-filter {
        padding: 1.5rem 1rem 1rem;
    }

    .filter-buttons {
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-width: 100px;
    }

    .notice-section {
        padding: 3rem 1.5rem;
    }

    .notice-card {
        padding: 1.5rem;
    }

    .notice-title {
        font-size: 1.1rem;
    }

    .notice-card.important .notice-title {
        font-size: 1.3rem;
    }

    .notice-excerpt {
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .filter-buttons {
        gap: 0.6rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: auto;
        flex: 1 1 calc(50% - 0.6rem);
    }

    .notice-card {
        padding: 1.2rem;
    }

    .notice-title {
        font-size: 1rem;
    }

    .notice-card.important .notice-title {
        font-size: 1.15rem;
    }

    .notice-excerpt {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .notice-meta {
        gap: 1rem;
    }

    .notice-date {
        font-size: 0.85rem;
    }

    .notice-category {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 0.95rem;
    }
}
