:root {
  --page-bg: #ffffff;
  --ink: #25282d;
  --line: #e6e6e6;
  --accent: #78b22c;
  --accent-dark: #5f951a;
  --brand: #2a2a2a;
  --headline-font: "Franklin Gothic Medium", "Arial Narrow Bold", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--headline-font);
}

.page-shell {
  width: min(calc(100% - 40px), 942px);
  margin: 0 auto;
  padding: 34px 0 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 14px;
  color: #ffffff;
  text-decoration: none;
}

.brand-ring {
  width: 38px;
  height: 38px;
  border: 10px solid var(--brand);
  border-radius: 50%;
  flex: 0 0 auto;
}

.brand-wordmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 16px 0 14px;
  background: var(--brand);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-wordmark::before,
.brand-wordmark::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 6px;
  height: 10px;
  background: var(--brand);
}

.brand-wordmark::before {
  left: -6px;
}

.brand-wordmark::after {
  right: -6px;
}

.hero {
  display: grid;
  grid-template-columns: 202px minmax(260px, 1fr) 140px;
  gap: 38px;
  align-items: center;
  margin-top: 58px;
  padding-bottom: 36px;
}

.story-image {
  width: 202px;
  height: 202px;
  margin: 0;
  overflow: hidden;
  background: #d8d8d8;
}

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

.story-copy {
  align-self: center;
}

.story-title {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.story-title span {
  display: block;
}

.story-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  justify-self: end;
  padding-top: 8px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
}

.arrow-link svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 50px;
  border: 0;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: inherit;
}

.arrow-link:hover,
.arrow-link:focus-visible {
  color: var(--accent-dark);
}

.cta-button:hover,
.cta-button:focus-visible {
  background: var(--accent-dark);
}

.divider {
  height: 1px;
  background: var(--line);
}

@media (max-width: 920px) {
  .page-shell {
    width: min(calc(100% - 48px), 942px);
  }

  .hero {
    grid-template-columns: 182px minmax(0, 1fr);
    gap: 28px;
  }

  .story-image {
    width: 182px;
    height: 182px;
  }

  .story-title {
    font-size: 40px;
  }

  .story-action {
    grid-column: 2;
    flex-direction: row;
    justify-self: start;
    gap: 18px;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 28px), 942px);
    padding-top: 24px;
  }

  .brand {
    margin-left: 0;
    transform: scale(0.92);
    transform-origin: left top;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 38px;
    padding-bottom: 30px;
  }

  .story-image {
    width: min(100%, 240px);
    height: auto;
    aspect-ratio: 1;
  }

  .story-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .story-action {
    grid-column: auto;
    flex-direction: column;
    justify-self: start;
    align-items: flex-start;
    gap: 16px;
  }

  .arrow-link {
    width: 72px;
    height: 72px;
  }

  .arrow-link svg {
    width: 58px;
    height: 58px;
  }
}
