.announcements-section {
  padding: 3rem 0;
}

.announcements-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.announcements-title {
  color: #003476;
  font-weight: 600;
  font-size: 1.7rem;
}

.announcements-nav {
  display: flex;
  gap: 0.5rem;
}

.announcements-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #073476;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  outline: none !important;
  transition: all ease-in-out 0.2s;
}

.announcements-nav__prev {
  color: #073476;
}

.announcements-nav__next {
  background-color: #073476;
  color: #FFFFFF;
}

.announcements-nav__btn:hover {
  background-color: #00B0F0;
  border-color: #00B0F0;
  color: #FFFFFF;
}

.announcements-slider {
  overflow: hidden;
  transition: height 0.4s ease;
}

.announcements-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.4s ease;
}

.announcements-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0.5rem;
}

.notice-box {
  position: relative;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 3px 6px #00000029;
  box-sizing: border-box;
  overflow: hidden;
}

.notice-pin-icon {
  color: #00B0F0;
  font-size: 1rem;
  transform: rotate(45deg);
  display: inline-block;
}

.notice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #073476;
  color: white;
  font-weight: bold;
  padding: 1.2rem 2rem;
  font-size: 18px;
}

.notice-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.notice-date {
  font-size: 18px;
  white-space: nowrap;
  font-weight: 400;
}

.notice-body {
  background-color: white;
  padding: 1.2rem 2rem;
}

.notice-body p {
  color: #333;
}

.notice-post-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #003476;
}

.notice-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color ease 0.2s;
}

.notice-post-title a:hover {
  color: #0165b3;
  text-decoration: underline;
}

.notice-post-content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notice-read-more {
  display: inline-block;
  margin-top: 0.75rem;
  color: #0165b3;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color ease 0.2s, letter-spacing ease 0.2s;
}

.notice-read-more:hover {
  color: #003476;
  text-decoration: underline;
  letter-spacing: 0.02em;
}

.announcements-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 1.5rem;

  .announcements-archive-link {
    width: fit-content;
  }
}

.announcements-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.announcements-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background-color: #D9E4F7;
  transition: opacity 0.2s;
}

.announcements-dot.is-active {
  background-color: #073476;
}

@media screen and (max-width: 767px) {
  .announcements-footer {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }
}