/* Notices Grid */
.notices-grid {
    margin-top: 30px;
}

.notice-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    border: 1px solid #f0f0f0;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.notice-badge {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.notice-badge.important {
    background: #fff5f5;
    border-color: #feb2b2;
    color: #c53030;
}

.notice-badge span {
    display: block;
    line-height: 1;
}

.notice-badge .day {
    font-size: 20px;
    font-weight: 700;
}

.notice-badge .month {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

.notice-card .notice-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
    flex-grow: 1;
}

.notice-card .notice-title a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s;
}

.notice-card .notice-title a:hover {
    color: var(--wp--preset--color--ast-global-color-2);
}

.notice-meta {
    font-size: 13px;
    color: #718096;
    border-top: 1px solid #edf2f7;
    padding-top: 15px;
}

.text-center {
    text-align: center;
}
