.notice-tabs .nav-link {
        border: none;
        color: #777;
        font-weight: 800;
        font-size: 1.15rem;
        padding: 12px 28px;
    }

    .notice-tabs .nav-link.active {
        color: var(--primary-color);
        background: transparent;
        border-bottom: 4px solid var(--primary-color);
    }

    .notice-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .notice-card {
        display: block;
        text-decoration: none;
        color: inherit;
        border: 1px solid #ddd;
        background: white;
        padding: 22px;
        min-height: 230px;
        transition: all 0.25s ease;
    }

    .notice-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 32px rgba(0,0,0,0.08);
        border-color: var(--primary-color);
        color: inherit;
    }

    .notice-date {
        font-weight: 800;
        margin-bottom: 10px;
    }

    .notice-title {
        font-size: 1.25rem;
        font-weight: 900;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .notice-summary {
        color: #555;
        line-height: 1.7;
        font-size: 0.95rem;
    }

    .notice-thumb {
        width: 100%;
        height: 150px;
        object-fit: cover;
        margin-bottom: 16px;
        border-radius: 8px;
    }

    @media (max-width: 992px) {
        .notice-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .notice-grid {
            grid-template-columns: 1fr;
        }

    }

    .event-card {
        display: flex;
        align-items: center;
        justify-content: space-between;

        background: white;
        border: 1px solid #e5e5e5;
        border-radius: 12px;

        padding: 14px 22px;
        margin-bottom: 12px;

        transition: all .25s;
    }

    .event-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 24px rgba(0,0,0,.08);
    }

    .event-info {
        flex: 1;
    }

    .event-title {
        font-size: 1.2rem;
        font-weight: 800;
        color: #222;
        margin-bottom: 6px;
        text-decoration: none !important;
    }

    .event-meta {
        color: #666;
        font-size: 0.9rem;
    }

    .event-status {
        min-width: 120px;
        text-align: center;
    }

    .status-open {
        background: #e6f6ea;
        color: #198754;
        padding: 10px 18px;
        border-radius: 999px;
        font-weight: 700;
    }

    .status-closed {
        background: #f8e6e6;
        color: #b02a37;
        padding: 10px 18px;
        border-radius: 999px;
        font-weight: 700;
    }

    .event-card,
    .event-card:visited,
    .event-card:hover {
        text-decoration: none !important;
        color: inherit;
    }