* {
  box-sizing: border-box;
}

:root {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  color: #171717;
  background: #f4f4f2;
}

body {
  margin: 0;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px;
}

.card {
  width: min(920px, 100%);

  background: #ffffff;

  border: 1px solid #e6e6e3;
  border-radius: 24px;

  overflow: hidden;

  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.07);
}

.intro {
  display: grid;
  grid-template-columns: 360px 1fr;

  min-height: 520px;
}

.photo-wrap {
  overflow: hidden;
  background: #ddd;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: 520px;

  display: block;

  object-fit: cover;
  object-position: center top;
}

.content {
  padding: 64px 58px 48px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 18px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.14em;

  color: #777;
}

h1 {
  margin: 0;

  font-size: clamp(42px, 6vw, 64px);
  line-height: 0.98;

  letter-spacing: -0.045em;

  font-weight: 700;
}

.summary {
  max-width: 500px;

  margin: 28px 0 0;

  color: #555;

  font-size: 17px;
  line-height: 1.65;
}

.keywords {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 26px;
}

.keywords span {
  padding: 7px 11px;

  border: 1px solid #dededb;
  border-radius: 999px;

  font-size: 12px;

  color: #555;
}

.links {
  display: flex;
  flex-wrap: wrap;

  gap: 22px;

  margin-top: 38px;
}

.link {
  color: #171717;

  text-decoration: none;

  font-size: 14px;
  font-weight: 650;

  border-bottom: 1px solid #bbb;

  padding-bottom: 4px;
}

.link:hover {
  border-color: #171717;
}

.link span {
  margin-left: 4px;
  font-weight: 400;
}

footer {
  border-top: 1px solid #eee;

  padding: 18px 28px;

  color: #999;

  font-size: 11px;
}


/* Mobile */

@media (max-width: 720px) {

  body {
    padding: 16px;

    align-items: flex-start;
  }

  .card {
    border-radius: 18px;

    margin-top: 8px;
  }

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

  .photo-wrap img {
    height: min(110vw, 520px);

    min-height: 0;

    object-position: center 18%;
  }

  .content {
    padding: 38px 30px 42px;
  }

  h1 {
    font-size: 48px;
  }

  .summary {
    font-size: 16px;
  }
}