*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #323130;
  background: #ffffff;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e1dfdd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  display: block;
  font-size: 14px;
  color: #323130;
  text-decoration: none;
  padding: 16px 20px;
  border-bottom: 3px solid transparent;
  font-weight: 400;
  transition: color 0.15s, border-color 0.15s;
}

.nav-links a:hover {
  color: #0078d4;
}

.nav-links a.active {
  color: #0078d4;
  font-weight: 600;
  border-bottom-color: #0078d4;
}

.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

.content-wrap h1 {
  font-size: 32px;
  font-weight: 700;
  color: #323130;
  margin-bottom: 16px;
}

.content-wrap p {
  font-size: 16px;
  color: #605e5c;
}

.announcement-strip {
  background: #f3f2f1;
  border-bottom: 1px solid #e1dfdd;
}

.announcement-strip .content-wrap {
  max-width: 1360px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.announcement-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  line-height: 1.35;
}

.announcement-row + .announcement-row {
  margin-top: 10px;
}

.announcement-label {
  display: inline-block;
  min-width: 76px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 5px 8px;
  border-radius: 2px;
  line-height: 1;
}

.announcement-label.foundation {
  background: #004286;
}

.announcement-label.latest {
  background: #d83b01;
}

.announcement-text {
  color: #323130;
}

.announcement-link {
  color: #0068BD;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.announcement-link:hover {
  text-decoration: underline;
}

.page-hero {
  color: #323130;
}

.page-hero-partners {
  background: #E2F1F9;
}

.page-hero-storytelling {
  background: #FFF8E5;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  align-items: stretch;
  gap: 32px;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 430px;
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0;
}

.page-hero-kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #323130;
  margin-bottom: 20px;
}

.page-hero h1 {
  color: #111111;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
  max-width: 760px;
  margin-bottom: 24px;
}

.page-hero .page-hero-description {
  color: #000000;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  max-width: 760px;
}

.page-hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.page-hero-visual {
  margin-right: 0;
}

.page-hero-image-placeholder {
  width: 100%;
  min-height: 430px;
  margin-right: 0;
  overflow: hidden;
  background:
    linear-gradient(45deg, #f3f2f1 25%, transparent 25%),
    linear-gradient(-45deg, #f3f2f1 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f3f2f1 75%),
    linear-gradient(-45deg, transparent 75%, #f3f2f1 75%);
  background-size: 32px 32px;
  background-position: 0 0, 0 16px, 16px -16px, -16px 0;
  background-color: #faf9f8;
  border-left: 1px solid #e1dfdd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8886;
  font-size: 14px;
  font-weight: 600;
}

.page-hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offers-section .content-wrap {
  padding-top: 48px;
}

.offers-section .section-label {
  display: inline-block;
  background: #0068BD;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
  max-width: none;
  line-height: 1;
}

.section-rule {
  width: 48px;
  height: 4px;
  background: #0068BD;
  margin-bottom: 24px;
}

.offers-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #323130;
  margin-bottom: 24px;
}

.offers-section .content-wrap > p:not(.section-label) {
  max-width: 960px;
  line-height: 1.55;
  color: #323130;
}

.coming-soon {
  margin-top: 32px;
  font-weight: 600;
  color: #605e5c;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.partner-card {
  border: 1px solid #e1dfdd;
  background: #ffffff;
}

.partner-logo-placeholder {
  min-height: 150px;
  background: #f3f2f1;
  border-bottom: 1px solid #e1dfdd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #605e5c;
  font-size: 14px;
  font-weight: 600;
}

.partner-logo-placeholder img {
  max-width: 90px;
  max-height: 56px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.partner-card-body {
  padding: 24px;
}

.partner-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #323130;
  margin-bottom: 12px;
}

.partner-card p {
  line-height: 1.55;
  color: #323130;
}

.partner-meta {
  border-top: 1px solid #e1dfdd;
  margin-top: 24px;
  padding-top: 18px;
}

.partner-contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #605e5c;
  margin-bottom: 8px;
}

.partner-contact-name {
  font-weight: 600;
}

.partner-link {
  display: inline-block;
  margin-top: 20px;
  color: #0068BD;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #0068BD;
  padding: 9px 14px;
  border-radius: 2px;
}

.partner-link:hover {
  text-decoration: underline;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.story-card {
  border: 1px solid #e1dfdd;
  background: #ffffff;
}

.story-image-placeholder {
  min-height: 220px;
  background: linear-gradient(180deg, #e1dfdd 0%, #8a8886 100%);
  border-bottom: 6px solid #0068BD;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.story-image-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.story-image-placeholder span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card-body {
  padding: 28px;
}

.story-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.story-type {
  display: inline-block;
  background: #0068BD;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
}

.story-date {
  color: #605e5c;
  font-size: 15px;
}

.story-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #323130;
  line-height: 1.25;
  margin-bottom: 18px;
}

.story-card p {
  color: #323130;
  line-height: 1.55;
}

.story-link {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  background: #0068BD;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 2px;
}

.story-link:hover {
  background: #004286;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
  }

  .nav-links a {
    padding: 12px 14px;
    font-size: 13px;
  }

  .content-wrap {
    padding: 40px 16px;
  }

  .content-wrap h1 {
    font-size: 24px;
  }

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

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

  .story-link {
    flex-direction: column;
    align-items: flex-start;
  }

    .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }

  .page-hero-copy {
    padding: 48px 0 32px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

 .page-hero-description {
  color: #111111;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  max-width: 760px;
}

  .page-hero-image-placeholder {
    min-height: 220px;
    border-left: none;
    border-top: 1px solid #e1dfdd;
  }
}


