body {
  background: #f5f7fb;
}

.notice-hero {
  background: linear-gradient(135deg, #0f3b82, #173d74);
  color: #fff;
  padding: 42px 0 50px;
}

.notice-hero__inner h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.notice-hero__inner p {
  margin: 0;
  max-width: 820px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.8;
}

.notice-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  font-size: 13px;
  font-weight: 700;
}

.notice-page {
  padding: 28px 0 64px;
}

.notice-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.notice-stat-card,
.notice-card,
.notice-list-item {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(15, 59, 130, .08);
}

.notice-stat-card {
  padding: 24px;
}

.notice-stat-card__label {
  color: #6e6e73;
  font-size: 14px;
  margin-bottom: 8px;
}

.notice-stat-card__value {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  color: #0f3b82;
  margin-bottom: 8px;
}

.notice-stat-card__sub {
  color: #6e6e73;
  font-size: 13px;
}

.notice-section-head {
  margin-bottom: 18px;
}

.notice-section-head h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.notice-section-head p {
  margin: 0;
  max-width: 760px;
  color: #6e6e73;
}

.notice-featured {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  margin-bottom: 28px;
}

.notice-card {
  padding: 24px;
}

.notice-card--featured {
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  border: 1px solid #e7ebf2;
}

.notice-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
  color: #1d1d1f;
}

.notice-card p {
  margin: 0 0 16px;
  color: #52555b;
}

.notice-meta,
.notice-date {
  color: #6e6e73;
  font-size: 13px;
}

.notice-pill {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf1ff;
  color: #0f3b82;
  font-size: 12px;
  font-weight: 700;
}

.notice-pill--warn {
  background: #fff5de;
  color: #8a5b00;
}

.notice-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.notice-tab {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #e7ebf2;
  background: #fff;
  color: #2d3240;
  font-weight: 700;
  cursor: pointer;
}

.notice-tab--active {
  background: #0f3b82;
  color: #fff;
  border-color: #0f3b82;
}

.notice-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
}

.notice-list {
  display: grid;
  gap: 14px;
}

.notice-list-item {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.notice-list-item__body h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.notice-list-item__body p {
  margin: 0;
  color: #52555b;
}

.notice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  margin-bottom: 10px;
}

.notice-side {
  display: grid;
  gap: 18px;
}

.notice-side__title {
  margin-bottom: 12px;
  color: #6e6e73;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
}

.notice-side-list {
  display: grid;
  gap: 12px;
}

.notice-side-item {
  padding: 14px 0;
  border-bottom: 1px solid #e7ebf2;
}

.notice-side-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.notice-side-item strong {
  display: block;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.notice-side-item span {
  display: block;
  color: #6e6e73;
  line-height: 1.7;
}

.notice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.notice-btn--primary {
  background: #0f3b82;
  color: #fff;
}

.notice-btn--light {
  background: #fff;
  color: #1d1d1f;
  border-color: #e7ebf2;
}

@media (max-width: 1100px) {
  .notice-stats,
  .notice-featured,
  .notice-layout {
    grid-template-columns: 1fr;
  }
}

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

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