/* ------------------------------
   AQF Notice Board Page
-------------------------------- */

.aqf-notice-page-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 22%, rgba(199, 106, 29, 0.18), transparent 30%),
        linear-gradient(135deg, var(--aqf-primary-dark), var(--aqf-primary));
}

.aqf-notice-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.08), transparent 32%);
    pointer-events: none;
}

.aqf-notice-page-hero .aqf-container {
    position: relative;
    z-index: 2;
}

.aqf-notice-page-hero__content {
    max-width: 820px;
    text-align: center;
    color: var(--aqf-white);
    margin: 0 auto;
    padding: 72px 0;
}

.aqf-notice-page-hero__content span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--aqf-white);
    background: rgba(199, 106, 29, 0.24);
    border: 1px solid rgba(199, 106, 29, 0.42);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 18px;
}

.aqf-notice-page-hero__content h1 {
    color: var(--aqf-white);
    font-size: 54px;
    font-weight: 900;
    line-height: 1.18;
    margin: 0 0 14px;
}

.aqf-notice-page-hero__content p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}


/* Page body */

.aqf-notice-page {
    background: var(--aqf-bg);
    padding: 78px 0 90px;
    overflow: hidden;
}

.aqf-notice-page__heading {
    max-width: 760px;
    text-align: center;
    margin: 0 auto 40px;
}

.aqf-notice-page__heading h2 {
    color: var(--aqf-primary-dark);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.28;
    margin: 0 0 14px;
}

.aqf-notice-page__heading p {
    color: var(--aqf-muted);
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
}

.aqf-notice-page__grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.aqf-notice-page__card {
    background: var(--aqf-white);
    border: 1px solid rgba(3, 75, 99, 0.08);
    border-radius: 20px;
    padding: 20px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 20px;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(3, 75, 99, 0.07);
    transition: 0.22s ease;
}

.aqf-notice-page__card:hover {
    transform: translateY(-3px);
    border-color: rgba(199, 106, 29, 0.28);
    box-shadow: 0 18px 38px rgba(3, 75, 99, 0.10);
}

.aqf-notice-page__card--static {
    cursor: default;
}

.aqf-notice-page__date {
    width: 96px;
    min-height: 96px;
    border-radius: 18px;
    color: var(--aqf-white);
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), transparent 35%),
        linear-gradient(135deg, var(--aqf-primary-dark), var(--aqf-primary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aqf-notice-page__date strong {
    color: var(--aqf-white);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.aqf-notice-page__date span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.aqf-notice-page__body {
    min-width: 0;
    align-self: center;
}

.aqf-notice-page__body h3 {
    color: var(--aqf-primary-dark);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0 0 8px;
}

.aqf-notice-page__body p {
    color: var(--aqf-muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 12px;
}

.aqf-notice-page__read {
    color: var(--aqf-accent);
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.aqf-notice-page__card:hover .aqf-notice-page__read {
    color: var(--aqf-primary);
}


/* Responsive */

@media (max-width: 991px) {
    .aqf-notice-page-hero {
        min-height: 340px;
    }

    .aqf-notice-page-hero__content h1 {
        font-size: 42px;
    }

    .aqf-notice-page {
        padding: 64px 0 74px;
    }

    .aqf-notice-page__heading h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .aqf-notice-page-hero {
        min-height: 300px;
    }

    .aqf-notice-page-hero__content {
        padding: 56px 0;
    }

    .aqf-notice-page-hero__content h1 {
        font-size: 32px;
    }

    .aqf-notice-page-hero__content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .aqf-notice-page {
        padding: 50px 0 60px;
    }

    .aqf-notice-page__heading {
        margin-bottom: 28px;
    }

    .aqf-notice-page__heading h2 {
        font-size: 28px;
    }

    .aqf-notice-page__heading p {
        font-size: 15px;
    }

    .aqf-notice-page__card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
        border-radius: 18px;
    }

    .aqf-notice-page__date {
        width: 100%;
        min-height: 74px;
        align-items: flex-start;
        padding: 16px;
    }

    .aqf-notice-page__body h3 {
        font-size: 18px;
    }
}