/* 📢 PREMIUM NOTICES BOARD (MURAL DE AVISOS) */
.mural-section {
    margin-bottom: 80px;
}

.notices-board-container {
    padding: 40px;
    border: 1px solid rgba(0, 242, 254, 0.15);
    background: linear-gradient(135deg, rgba(13, 21, 46, 0.7) 0%, rgba(7, 11, 25, 0.8) 100%);
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.08);
    border-radius: 20px;
}

.notices-board-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.board-icon-glow {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.notices-board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.public-notice-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: all var(--tr-fast);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.public-notice-card:hover {
    transform: translateY(-5px);
}

/* Priority Borders & Glows */
.public-notice-card.border-alta {
    border: 1px solid rgba(255, 82, 82, 0.4);
    box-shadow: 0 0 20px rgba(255, 82, 82, 0.12);
}
.public-notice-card.border-media {
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.12);
}
.public-notice-card.border-normal {
    border: 1px solid rgba(0, 242, 254, 0.4);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.12);
}

.notice-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.notice-badge.badge-alta { background: rgba(255, 82, 82, 0.15); color: #ff5252; }
.notice-badge.badge-media { background: rgba(255, 215, 0, 0.15); color: var(--accent-gold); }
.notice-badge.badge-normal { background: rgba(0, 242, 254, 0.15); color: var(--primary-cyan); }

.notice-date {
    font-size: 0.78rem;
    color: var(--text-sub);
}

.public-notice-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
}

.public-notice-card p {
    color: var(--text-sub);
    font-size: 0.9rem;
    line-height: 1.5;
}

.empty-notices-state {
    text-align: center;
    padding: 30px;
    grid-column: 1 / -1;
    color: var(--text-sub);
}

.empty-notices-state i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
}
