:root {
  --page: #edf0f3;
  --paper: #ffffff;
  --ink: #20262d;
  --muted: #68717c;
  --link: #164f84;
  --rule: #dfe4e8;
  --content-width: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 34px 18px;
  color: var(--ink);
  background: var(--page);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover,
a:focus-visible {
  color: #0b3156;
  background: #edf5fb;
}

table.inset {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(35, 44, 54, 0.08);
}

table.inset > tbody > tr:first-child {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 42px 48px 36px;
  border-bottom: 1px solid var(--rule);
}

table.inset > tbody > tr:first-child > td {
  display: block;
  padding: 0;
}

table.inset > tbody > tr:first-child > td:first-child img {
  width: 180px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(20, 28, 36, 0.15);
}

td.inset {
  background: transparent;
}

h1 {
  margin: 0 0 4px;
  color: #17283a;
  font-size: clamp(2.15rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h2 {
  margin: 38px 0 10px;
  padding-bottom: 8px;
  color: #17283a;
  border-bottom: 2px solid #cad4dc;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.25;
}

h3 {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
}

table.inset > tbody > tr:nth-child(2) {
  display: block;
}

table.inset > tbody > tr:nth-child(2) > td {
  display: block;
  padding: 0 48px 48px;
}

table.inset table {
  width: 100%;
  border-collapse: collapse;
}

table.inset table > tbody > tr {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 21px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

table.inset table > tbody > tr:last-child {
  border-bottom: 0;
}

table.inset table td {
  display: block;
  min-width: 0;
  padding: 0;
}

table.inset table td:first-child img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border: 1px solid #e0e3e6;
  border-radius: 3px;
}

table.inset table td:nth-child(2) b {
  color: #17283a;
  font-size: 1.02rem;
  line-height: 1.35;
}

table.inset table td:nth-child(2) i {
  color: var(--muted);
}

table.inset table td:nth-child(2) a {
  display: inline-block;
  margin: 3px 1px 0 0;
  padding: 2px 3px;
  white-space: nowrap;
}

@media (max-width: 700px) {
  body {
    padding: 0;
  }

  table.inset {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  table.inset > tbody > tr:first-child {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 22px;
    padding: 28px 24px;
  }

  table.inset > tbody > tr:first-child > td:first-child img {
    width: 128px;
    height: 144px;
  }

  table.inset > tbody > tr:nth-child(2) > td {
    padding: 0 24px 38px;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    margin-top: 30px;
  }
}

@media (max-width: 520px) {
  table.inset > tbody > tr:first-child {
    display: block;
    text-align: center;
  }

  table.inset > tbody > tr:first-child > td:first-child img {
    width: 136px;
    height: 152px;
    margin: 0 auto 20px;
  }

  table.inset table > tbody > tr {
    display: block;
    padding: 23px 0;
  }

  table.inset table td:first-child img {
    margin: 0 0 12px;
  }

  table.inset table td:nth-child(2) a {
    margin-top: 5px;
    padding: 4px 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
