/* ================= FEE NOTICES PAGE ================= */

body {
  font-family: 'Poppins', sans-serif;
}

/* HERO */
.fee-hero {
  min-height: 70vh;
  background:
    linear-gradient(rgba(0, 32, 70, 0.48), rgba(0, 32, 70, 0.48)),
    url("images/fees.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 7% 80px;
}

.fee-hero .hero-overlay {
  max-width: 850px;
  color: #fff;
}

.fee-hero h1 {
  font-size: 64px;
  font-weight: 300;
  margin-bottom: 18px;
}

.fee-hero p {
  font-size: 18px;
  line-height: 1.8;
}

/* PAGE */
.notice-page {
  background: #f7f7f7;
  padding: 100px 7%;
}

.notice-intro {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-label {
  color: #0d4d92;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.notice-intro h2 {
  font-size: 50px;
  font-weight: 300;
  color: #002b5c;
  margin: 20px 0;
}

.notice-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* GRID */
.notice-grid {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.notice-card,
.loading-text,
.empty-notice {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.notice-card {
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.notice-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #0d4d92;
}

.notice-badge {
  display: inline-block;
  background: #eaf3ff;
  color: #0d4d92;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.notice-card h3 {
  color: #002b5c;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}

.notice-date {
  color: #0d4d92;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.notice-card p {
  color: #666;
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.notice-btn {
  display: inline-block;
  padding: 13px 25px;
  background: #0d4d92;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
}

.notice-btn.disabled {
  background: #d8d8d8;
  color: #777;
}

/* EMPTY */
.loading-text,
.empty-notice {
  grid-column: 1 / -1;
  padding: 70px 30px;
  text-align: center;
  color: #666;
}

.empty-notice h3 {
  color: #002b5c;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
}

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

@media (max-width: 768px) {
  .fee-hero {
    min-height: 55vh;
    padding: 110px 24px 60px;
  }

  .fee-hero h1 {
    font-size: 40px;
  }

  .fee-hero p {
    font-size: 15px;
  }

  .notice-page {
    padding: 75px 22px;
  }

  .notice-intro h2 {
    font-size: 34px;
  }

  .notice-grid {
    grid-template-columns: 1fr;
  }

  .notice-btn {
    width: 100%;
    text-align: center;
  }
}