﻿/* Page Background */
.gp-notice-section {
    background: #f5f1e8;
    padding: 60px 0;
}

/* Notice Board Header */
.notice-board-header {
    background: linear-gradient(90deg, #8b5e3c, #a97449);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Notice Card */
.notice-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .notice-card:hover {
        transform: translateY(-4px);
    }

    /* Pin Style */
    .notice-card::before {
        content: "";
        width: 18px;
        height: 18px;
        background: #dc3545;
        border-radius: 50%;
        position: absolute;
        top: -9px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    }

/* Category Badge */
.notice-category {
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #198754;
    color: #fff;
    display: inline-block;
    margin-bottom: 8px;
}

/* Date */
.notice-date {
    font-size: 13px;
    color: #6c757d;
}

/* Buttons */
.notice-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
}

.btn-view {
    background: #0d6efd;
    color: #fff;
}

.btn-download {
    background: #198754;
    color: #fff;
    margin-left: 5px;
}

/* Empty State */
.notice-empty {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
}
