.announcement-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgb(5 20 12 / 62%);
  backdrop-filter: blur(5px);
}

.announcement-modal {
  position: relative;
  width: min(580px, 100%);
  max-height: min(680px, calc(100vh - 44px));
  overflow: auto;
  padding: 34px;
  border: 1px solid #cfe1d6;
  border-top: 5px solid #238442;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgb(3 23 12 / 32%);
  color: #17201a;
}

.announcement-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid #d5e1d9;
  border-radius: 50%;
  background: #fff;
  color: #173523;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.announcement-kicker {
  margin: 0 52px 10px 0;
  color: #238442;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.announcement-modal h2 {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  line-height: 1.08;
}

.announcement-popup-body {
  margin: 20px 0 0;
  color: #52645a;
  font-size: 1rem;
  line-height: 1.75;
  white-space: pre-line;
}

.announcement-popup-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #e4ece7;
}

.announcement-popup-footer time {
  color: #7b8981;
  font-size: 0.84rem;
}

.announcement-popup-footer a {
  color: #176f38;
  font-weight: 900;
}

.announcements-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 90px;
}

.announcements-intro {
  max-width: 680px;
  margin-bottom: 34px;
}

.announcements-intro h1 {
  margin: 7px 0 12px;
  color: #17201a;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.98;
}

.announcements-intro p:last-child {
  color: #5d6d64;
  font-size: 1.05rem;
  line-height: 1.65;
}

.announcement-list {
  display: grid;
  gap: 12px;
}

.announcement-entry {
  padding: 24px;
  border: 1px solid #d8e4dc;
  border-left: 4px solid #238442;
  border-radius: 6px;
  background: #fff;
}

.announcement-entry time {
  color: #718078;
  font-size: 0.82rem;
  font-weight: 800;
}

.announcement-entry h2 {
  margin: 7px 0 10px;
  color: #17201a;
  font-size: 1.35rem;
}

.announcement-entry p {
  margin: 0;
  color: #53645a;
  line-height: 1.7;
  white-space: pre-line;
}

.announcement-empty {
  padding: 38px 24px;
  border-top: 1px solid #d8e4dc;
  border-bottom: 1px solid #d8e4dc;
  color: #637269;
  text-align: center;
}

@media (max-width: 620px) {
  .announcement-modal {
    padding: 28px 22px 24px;
  }

  .announcement-popup-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .announcements-shell {
    padding-top: 42px;
  }
}
