.article-list-page {
  background: var(--bg);
}

.article-list-width {
  width: min(1280px, calc(100% - 64px));
}

.blog-hero {
  position: relative;
  min-height: 480px;
  padding-top: 252px;
  background: url("../media/article-list/blog-hero.png") center center / cover no-repeat;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 33, 84, 0.78) 0%, rgba(52, 151, 215, 0.48) 100%);
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.blog-hero-inner h1 {
  margin: 0;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.04em;
}

.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.blog-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.blog-tab.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 700;
}

.blog-context-note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 16, 58, 0.62);
}

.newsletter-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.newsletter-card {
  display: grid;
  gap: 24px;
  padding: 32px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 16, 58, 0.05);
}

.newsletter-copy {
  display: grid;
  gap: 10px;
}

.newsletter-card h2 {
  margin: 0;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.04em;
}

.newsletter-card p {
  margin: 0;
  max-width: 1080px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 16, 58, 0.72);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
}

.newsletter-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(0, 16, 58, 0.08);
  border-radius: 10px;
  padding: 0 16px;
  font: inherit;
  background: rgba(242, 244, 247, 0.9);
}

.newsletter-form .btn {
  min-height: 50px;
  border-radius: 10px;
  border: 0;
  background: #222;
  box-shadow: none;
}

.article-announcements-section {
  padding-top: 0;
  padding-bottom: 80px;
}

.announcements-shell {
  padding: 40px 40px 72px;
  border-radius: 40px;
  background: #ffffff;
  box-shadow: 0 24px 72px rgba(0, 16, 58, 0.05);
}

.announcements-shell h2 {
  margin: 0;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.04em;
}

.announcement-list {
  display: grid;
  margin-top: 40px;
}

.announcement-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 16, 58, 0.1);
}

.announcement-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.announcement-media {
  flex: none;
  width: 462px;
  height: 220px;
  overflow: hidden;
  border-radius: 20px;
}

.announcement-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.announcement-copy {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  padding: 20px 0;
}

.announcement-body {
  display: grid;
  gap: 12px;
}

.announcement-chip {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 184, 225, 0.12);
  color: #008bb1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-copy h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.announcement-copy h3 a {
  color: var(--text);
}

.announcement-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(0, 16, 58, 0.8);
}

.announcement-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 16, 58, 0.1);
}

.announcement-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: rgba(0, 16, 58, 0.84);
}

.announcement-dot {
  opacity: 0.66;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 8px;
  border: 1px solid rgba(0, 16, 58, 0.1);
  border-radius: 4px;
  background: #ffffff;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.blog-page-link {
  display: inline-flex;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(0, 16, 58, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.blog-page-link.current {
  border-color: transparent;
  background: var(--brand);
  color: #ffffff;
}

.blog-empty {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(0, 16, 58, 0.03);
}

.blog-empty h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.blog-empty p {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 16, 58, 0.68);
}

.article-list-closing .closing-banner-inner {
  padding-top: 0;
}

.article-list-closing-copy {
  max-width: 820px;
  padding: 120px 0 40px;
}

.article-list-closing .closing-banner-copy h2 {
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.04em;
}

.article-list-closing .closing-banner-copy p {
  margin: 12px 0 0;
  max-width: 820px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}

.article-list-closing-actions {
  width: 100%;
  margin-top: 0;
}

.article-list-closing .btn {
  justify-content: center;
  box-shadow: none;
}

.article-list-closing .btn-small {
  min-height: 60px;
  padding: 16px 32px;
  font-size: 20px;
  font-weight: 600;
}

.article-list-closing .btn-primary {
  width: 320px;
}

.article-list-closing .btn-ghost {
  width: 220px;
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1180px) {
  .announcement-card {
    gap: 24px;
  }

  .announcement-media {
    width: 360px;
    height: 176px;
  }
}

@media (max-width: 980px) {
  .blog-hero {
    padding-top: 220px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .announcement-card {
    flex-direction: column;
  }

  .announcement-media {
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 10;
  }

  .announcement-copy {
    width: 100%;
    padding: 0;
  }

  .article-list-closing .closing-banner-copy h2 {
    font-size: 36px;
    line-height: 1.08;
  }
}

@media (max-width: 780px) {
  .article-list-width {
    width: min(100%, calc(100% - 32px));
  }

  .blog-hero {
    min-height: 380px;
    padding-top: 156px;
  }

  .blog-hero-inner h1,
  .newsletter-card h2,
  .announcements-shell h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .blog-tab {
    min-height: 48px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 20px;
  }

  .announcements-shell,
  .newsletter-card {
    padding: 20px;
    border-radius: 24px;
  }

  .announcement-list {
    margin-top: 28px;
  }

  .announcement-card {
    gap: 20px;
    padding: 28px 0;
  }

  .announcement-copy {
    gap: 18px;
  }

  .announcement-copy h3 {
    font-size: 20px;
  }

  .announcement-chip {
    font-size: 10px;
  }

  .announcement-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-pagination {
    margin-top: 28px;
  }

  .article-list-closing .closing-banner-inner {
    width: min(100%, calc(100% - 40px));
  }

  .article-list-closing-copy {
    padding: 88px 0 28px;
  }

  .article-list-closing .closing-banner-copy p {
    font-size: 16px;
  }

  .article-list-closing .btn-primary,
  .article-list-closing .btn-ghost {
    width: 100%;
  }
}
