:root {
  --page-bg: #f7f5f6;
  --surface: #ffffff;
  --text: #1d1d1b;
  --magenta: #c50072;
  --blue: #1958a6;
  --blue-soft: #a9bfdc;
  --gray-soft: #efeded;
  --gray-footer: #e2dfe0;
  --shadow-soft: 0 18px 40px rgba(29, 29, 27, 0.08);
  --radius-xl: 20px;
  --radius-lg: 14px;
}

@font-face {
  font-family: "Gotham Narrow";
  src:
    local("Gotham Narrow Bold"),
    local("GothamNarrow-Bold"),
    local("Gotham Narrow"),
    local("Arial Narrow");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Gotham Narrow";
  src:
    local("Gotham Narrow Light"),
    local("GothamNarrow-Light"),
    local("Arial Narrow");
  font-weight: 300;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.landing {
  width: min(100% - 48px, 1280px);
  margin: 56px auto 48px;
}

.hero {
  position: relative;
  min-height: 180px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(17 21 46 / 7%) 0%, rgb(53 53 53 / 0%) 44%, rgb(2 2 9 / 51%) 100%);
}

.hero__content,
.hero__brand {
  position: relative;
  z-index: 1;
}

.hero__content {
  padding: 25px 0 0 34px;
  max-width: 620px;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  font-family: "Gotham Narrow", "Arial Narrow", "Montserrat", sans-serif;
  text-transform: uppercase;
}

.hero__brand {
  position: absolute;
  top: 22px;
  right: 34px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0;
}

.hero__brand img {
  width: 188px;
  height: 44px;
  object-fit: contain;
}

.hero__date {
  color: #fff;
  text-align: right;
  line-height: 1;
}

.hero__date-line {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2px;
}

.hero__date-main {
  font-family: "Gotham Narrow", "Arial Narrow", "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.hero__date-suffix {
  font-family: "Gotham Narrow", "Arial Narrow", "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
}

.hero__date-year {
  font-family: "Gotham Narrow", "Arial Narrow", "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.hero__date-label {
  display: block;
  margin-top: 2px;
  font-family: "Gotham Narrow", "Arial Narrow", "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.intro {
  margin-top: 25px;
  padding: 0 0 0 30px;
}

.intro__lead,
.intro__body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.18;
}

.intro__lead {
  max-width: 100%;
}

.intro__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 80px;
  align-items: start;
  margin-top: 25px;
}

.intro sup {
  font-size: 0.62em;
}

.intro strong {
  font-weight: 600;
}

.video-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  width: 350px;
  height: 200px;
  min-height: 175px;
  margin-top: -1px;
  background: #000;
}

.video-card iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
}

.causes {
  margin-top: 25px;
  padding: 18px 26px 20px;
  border-radius: 14px;
  background: var(--magenta);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.causes h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 600;
}

.causes p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.25;
}

.causes p + p {
  margin-top: 18px;
}

.section-caption {
  margin: 45px 0;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.resource-card__url {
  display: none;
}

.resource-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}

.resource-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  padding: 24px;
  flex: 0 0 150px;
}

.resource-card__header--light {
  background: #ece9ea;
}

.resource-card__header--blue {
  background: var(--blue);
}

.resource-card__header--light img {
  width: auto;
  max-height: 115px;
}

.resource-card__header--blue img {
  width: min(230px, 100%);
  max-height: 120px;
}

.resource-card__body {
  min-height: 260px;
  height: auto;
  padding: 18px 22px 12px;
  background: #f4f2f3;
  flex: 1 0 auto;
}

.resource-card__body--blue {
  background: var(--blue-soft);
}

.resource-card__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.22;
}

.resource-card__body p + p {
  margin-top: 16px;
}

.resource-card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  flex: 0 0 90px;
  flex-direction: column;
}

.resource-card__footer--light {
  background: var(--gray-footer);
}

.resource-card__footer--blue {
  background: var(--blue);
  color: #fff;
}

.resource-card__footer a {
  font-size: 1.3rem;
  text-underline-offset: 3px;
}
.resource-card__footer p{
  margin: 10px;
}

.references {
  margin-top: 60px;
  padding: 0 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.25;
}

.references p {
  margin: 0;
}

.references__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.references__links a {
  color: inherit;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .landing {
    width: min(100% - 28px, 760px);
    margin-top: 24px;
  }

  .hero {
    min-height: 200px;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgb(22 23 49 / 0%) 0%, rgba(22, 23, 49, 0.5) 55%, rgba(22, 23, 49, 0.2) 100%);
  }

  .hero__content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    max-width: none;
    padding: 0 24px 8px 0;
  }

  .hero__brand {
    left: 24px;
    right: 24px;
    top: 24px;
    bottom: auto;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
  }

  .hero__brand img {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

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

  .intro__split {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }

  .intro {
    padding: 0 20px;
  }

  .video-card {
    width: 100%;
    min-height: 200px;
    margin-top: 0;
  }

  .resource-card__body {
    min-height: auto;
  }

  .references {
    padding-left: 0;
    display: block;
  }
  .references__links{
    align-items:flex-start;
    margin-top: 10px;
  }
}
