:root {
    --bg: #fdfbf7;
    --surface: #ffffff;
    --primary: #1b263b;
    --primary-dark: #0d1b2a;
    --accent: #e67e22;
    --accent-dark: #d35400;
    --accent-light: #f39c12;
    --text: #1b263b;
    --muted: #5c6778;
    --border: #e8e2d9;
    --gold: #c9a227;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(27, 38, 59, 0.08);
    --shadow-lg: 0 8px 40px rgba(27, 38, 59, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1170px, 92%); margin: 0 auto; }

/* ── Header ── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 251, 247, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.brand-text h1 {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

.brand-text p {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
}

.nav-links a:not(.cta-button):hover { color: var(--accent); }

.cta-button {
    background: var(--accent);
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

.cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
    position: relative;
    /* padding: 32px 0 80px; */
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.06) 0%, transparent 60%),
        var(--bg);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 0 L35 10 L30 20 L25 10 Z' fill='%23c9a227' fill-opacity='0.04'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.hero-bell {
    position: absolute;
    top: 12px;
    width: 28px;
    height: auto;
    opacity: 0.55;
    z-index: 2;
}

.hero-bell--left { left: calc(50% - 320px); }
.hero-bell--right { right: calc(50% - 320px); }

.hero-arch-wrap {
    position: relative;
    margin: 0 auto;
}

.hero-arch {
    position: relative;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    min-height: 320px;
    /* max-height: 560px; */
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(201, 162, 39, 0.25);
}

.hero-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.hero-arch-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(27, 38, 59, 0.28) 0%,
        rgba(27, 38, 59, 0.18) 38%,
        rgba(27, 38, 59, 0.52) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: clamp(28px, 5vw, 52px) 32px 24px;
    z-index: 1;
}

.hero-headline {
    font-family: "Noto Sans Devanagari", "Poppins", sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    margin-bottom: 12px;
}

.hero-headline .highlight { color: var(--accent-light); }

.hero-sub {
    font-size: clamp(0.85rem, 1.8vw, 1.05rem);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* ── Stats ── */
.stats {
    position: relative;
    z-index: 5;
    margin-top: -48px;
    padding-bottom: 64px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(232, 226, 217, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.stat-icon--orange { background: rgba(230, 126, 34, 0.12); color: var(--accent); }
.stat-icon--green { background: rgba(39, 174, 96, 0.12); color: #27ae60; }
.stat-icon--blue { background: rgba(52, 152, 219, 0.12); color: #3498db; }
.stat-icon--purple { background: rgba(155, 89, 182, 0.12); color: #9b59b6; }

.stat-value {
    font-family: "Poppins", sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4;
}

/* ── Sections ── */
.section { padding: 72px 0; }

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.section-lead {
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.65;
}

/* ── Announcements ── */
.announcements { padding-top: 16px; }

.notice-board {
    position: relative;
    background: var(--surface);
    border-radius: 4px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
}

.notice-board::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cpath d='M60 8 L75 35 L105 38 L82 58 L88 88 L60 74 L32 88 L38 58 L15 38 L45 35 Z' stroke='%231b263b' stroke-width='1' opacity='0.06'/%3E%3Cpath d='M60 20 L60 100 M40 100 L80 100 M50 100 L50 85 L70 85 L70 100' stroke='%231b263b' stroke-width='1' opacity='0.06'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
    opacity: 0.5;
}

.notice-board__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    background: #faf8f4;
}

.notice-board__header h3 {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
}

.notice-board__view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    transition: color 0.2s;
}

.notice-board__view-all:hover { color: var(--accent-dark); }

.notice-list { list-style: none; }

.notice-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: #faf8f4; }

.notice-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    padding: 8px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: var(--radius-sm);
    line-height: 1.15;
}

.notice-date__badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 2px;
}

.notice-date__month {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.notice-date__day {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin: 2px 0;
}

.notice-date__year { font-size: 10px; opacity: 0.85; }

.notice-type {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.notice-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.45;
    transition: color 0.15s;
}

.notice-title:hover { color: var(--accent); }

.notice-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.15s;
}

.notice-action:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(230, 126, 34, 0.06);
}

.notice-empty {
    padding: 36px 24px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
}

/* ── About ── */
.about-section {
    position: relative;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
        var(--bg);
}

.about-section::before {
    content: "";
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.08);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(201, 162, 39, 0.2);
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.about-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), transparent 60%);
    pointer-events: none;
}

.about-content .section-eyebrow,
.about-content h2 {
    text-align: left;
    margin-left: 0;
}

.about-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 28px;
    line-height: 1.35;
}

.feature-list {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.feature-item h4 {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

/* ── Services ── */
.services-section .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    margin: 16px auto 0;
    border-radius: 2px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.featured-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.featured-logo {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent);
    font-size: 1.4rem;
}

.featured-card p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* ── Contact / CTA ── */
.contact-section {
    padding-bottom: 80px;
}

.cta-section {
    background: var(--surface);
    color: var(--text);
    border-radius: var(--radius);
    padding: 0;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.cta-panel {
    padding: 36px 40px;
}

.cta-panel--join {
    background:
        radial-gradient(circle at top left, rgba(230, 126, 34, 0.06), transparent 55%),
        var(--surface);
}

.cta-panel--contact {
    background: #faf8f4;
    border-left: 1px solid var(--border);
}

.cta-panel__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.cta-panel__title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--primary);
}

.cta-panel__text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 42ch;
}

.cta-panel__list {
    list-style: none;
    display: grid;
    gap: 8px;
    margin: 0 0 24px;
    padding: 0;
}

.cta-panel__list li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.45;
}

.cta-panel__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.cta-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-panel .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.cta-panel .cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.cta-panel .cta-button--outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.cta-panel .cta-button--outline:hover {
    background: rgba(27, 38, 59, 0.05);
    border-color: var(--primary);
}

.contact-rows {
    display: grid;
    gap: 10px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

a.contact-row:hover {
    background: #fff;
    border-color: rgba(230, 126, 34, 0.35);
    box-shadow: var(--shadow);
}

.contact-row__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.contact-row__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-row__body strong {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}

.contact-row__body span {
    font-size: 13px;
    color: var(--primary);
    line-height: 1.4;
}

/* ── Footer ── */
.site-footer {
    background: var(--primary-dark);
    color: #fff;
    font-family: "Inter", sans-serif;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 280px;
    height: 280px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M100 10 L115 50 L160 55 L125 85 L135 130 L100 110 L65 130 L75 85 L40 55 L85 50 Z' stroke='%23c9a227' stroke-width='1.5' opacity='0.15'/%3E%3Cpath d='M100 50 L100 170 M70 170 L130 170 M80 170 L80 140 L120 140 L120 170' stroke='%23c9a227' stroke-width='1.5' opacity='0.15'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
    font-size: 13px;
}

.site-footer a:hover { color: var(--accent-light); }

.site-footer__main {
    max-width: 1170px;
    margin: 0 auto;
    padding: 64px 48px 40px;
    position: relative;
    z-index: 1;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.site-footer__brand-name {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
}

.site-footer__tagline {
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 16px;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.site-footer__social-icons {
    display: flex;
    gap: 12px;
}

.site-footer__social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: all 0.2s;
}

.site-footer__social-icons a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(230, 126, 34, 0.1);
}

.site-footer__heading {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}

.site-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 48px;
    position: relative;
    z-index: 1;
}

.site-footer__bottom-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer__copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.04em;
}

.site-footer__social {
    display: flex;
    gap: 22px;
}

.site-footer__social a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Inner pages (announcements, info) ── */
.page-hero {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.07) 0%, transparent 55%),
        var(--bg);
    padding: 48px 0 8px;
    text-align: center;
}

.page-hero .section-eyebrow {
    margin-bottom: 10px;
}

.page-hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-hero p {
    font-size: 14px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Static announcement detail banner */
.notice-banner {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
}

.notice-banner__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

.notice-banner__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 27, 42, 0.72) 0%,
        rgba(27, 38, 59, 0.78) 100%
    );
}

.notice-banner__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 48px 0;
    color: #fff;
    text-align: center;
}

.notice-banner__crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.notice-banner__crumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.15s;
}

.notice-banner__crumb a:hover {
    color: var(--accent-light);
}

.notice-banner__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 10px;
}

.notice-banner__title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    font-weight: 600;
    line-height: 1.3;
    max-width: 820px;
    margin: 0 auto;
    color: #fff;
}

.notice-banner__lead {
    max-width: 560px;
    margin: 12px auto 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.page-content {
    padding: 32px 0 72px;
}

.page-content--notice {
    padding-top: 28px;
    background: var(--bg);
}

.container--narrow {
    width: min(880px, 92%);
}

.notice-excerpt {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.55;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.announcement-detail {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px 36px;
    box-shadow: var(--shadow);
}

.announcement-detail__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}

.announcement-detail__type {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(230, 126, 34, 0.1);
    border: 1px solid rgba(230, 126, 34, 0.25);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    border-radius: 2px;
}

.announcement-detail__cover {
    margin: 0 0 24px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #faf8f4;
}

.announcement-detail__cover img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.announcement-detail__body {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
}

.rich-text-content { color: var(--text); line-height: 1.75; }
.rich-text-content > :first-child { margin-top: 0; }
.rich-text-content > :last-child { margin-bottom: 0; }
.rich-text-content p,
.rich-text-content ul,
.rich-text-content ol,
.rich-text-content blockquote { margin: 0 0 14px; }
.rich-text-content ul,
.rich-text-content ol { padding-left: 24px; }
.rich-text-content ul { list-style: disc; }
.rich-text-content ol { list-style: decimal; }
.rich-text-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 8px 0 8px 16px;
    color: var(--muted);
    background: rgba(230, 126, 34, 0.04);
    border-radius: 0;
}
.rich-text-content a { color: var(--accent-dark); text-decoration: underline; }
.rich-text-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 12px 0;
}
.rich-text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}
.rich-text-content table th,
.rich-text-content table td {
    border: 1px solid var(--border);
    padding: 10px 12px;
    text-align: left;
}
.rich-text-content table th {
    background: #faf8f4;
    font-weight: 600;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: color 0.15s;
}

.back-link:hover { color: var(--accent-dark); }

.information-page {
    min-height: 60vh;
    padding: 48px 0 72px;
    background: var(--bg);
}

.information-page h1 {
    font-family: "Poppins", sans-serif;
    color: var(--primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 18px 0 10px;
    font-weight: 600;
}

.information-intro {
    color: var(--muted);
    max-width: 720px;
    font-size: 14px;
    line-height: 1.65;
}

.information-back {
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
}

.information-back:hover { color: var(--accent-dark); }

.information-sections {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.information-sections section {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 22px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.information-sections h2 {
    font-family: "Poppins", sans-serif;
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.information-sections p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-section { grid-template-columns: 1fr; }
    .cta-panel--contact { border-left: 0; border-top: 1px solid var(--border); }
    .cta-panel { padding: 28px 24px; }
    .cta-panel__text { max-width: none; }
    .cta-panel__actions { justify-content: flex-start; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .site-footer__brand { grid-column: 1 / -1; }
    .hero-bell--left { left: 16px; }
    .hero-bell--right { right: 16px; }
}

@media (max-width: 720px) {
    .navbar { flex-wrap: wrap; padding: 8px 0; }
    .nav-links { gap: 16px; }
    .stats { margin-top: -32px; }
    .stats-grid,
    .featured-grid { grid-template-columns: 1fr; }
    .notice-item {
        grid-template-columns: 68px 1fr;
        gap: 14px;
    }
    .notice-action { display: none; }
    .hero { padding-bottom: 48px; }
    .section { padding: 52px 0; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__main { padding: 48px 20px 32px; }
    .site-footer__bottom { padding: 16px 20px; }
    .site-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .brand-text p { display: none; }
    .nav-links a:not(.cta-button) { display: none; }
    .cta-button { padding: 8px 14px; font-size: 12px; }
}
