:root {
  color-scheme: light;
  --page-bg: #ffffff;
  --ink: #1c2431;
  --muted: #4f5d70;
  --blue: #0a2f8f;
  --blue-deep: #08256f;
  --paper-line: rgba(10, 33, 84, 0.12);
}

* {
  box-sizing: border-box;
}

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

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: "PT Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  min-height: calc(100vh + 1px);
}

a {
  color: var(--blue);
}

.masthead {
  position: relative;
  background: linear-gradient(180deg, #0d379d 0%, var(--blue-deep) 100%);
  overflow: hidden;
  height: 100px;
}

.masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 32, 96, 0.72), rgba(7, 32, 96, 0.72)),
    url("newspaper_background.jpg") center/cover no-repeat;
  opacity: 1;
}

.masthead-logo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 0 20px;
}

.masthead-logo {
  display: block;
  width: auto;
  height: 80px;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.18));
}

.content {
  display: flex;
  justify-content: center;
  padding: 92px 20px 96px;
  background: #ffffff;
}

.content-shell {
  display: grid;
  align-items: start;
  grid-template-columns: 185px 520px 286px;
  column-gap: 78px;
  width: 1069px;
  max-width: 100%;
}

.content-spacer {
  min-width: 0;
}

.copy-block {
  width: 430px;
  max-width: 100%;
  padding: 0;
  margin-top: -32px;
}

.copy-block p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.copy-block .support-copy {
  margin-top: 34px;
  font-size: 14px;
  line-height: 1.5;
}

.copy-block strong,
.copy-block a {
  font-weight: 700;
}

.ad-rail {
  display: grid;
  gap: 24px;
  justify-items: start;
  padding-top: 2px;
  margin-left: -15px;
  margin-top: 83px;
}

.ad-card {
  width: 286px;
}

.ad-card:first-child {
  margin-left: 1px;
}

.ad-card + .ad-card {
  margin-top: -4px;
  margin-left: 1px;
}

.ad-card img {
  box-sizing: border-box;
  display: block;
  width: 286px;
  height: 237.6px;
  margin-left: auto;
  margin-right: auto;
  background: #eef2f5;
  border-style: solid;
  border-color: #eef2f5;
  border-width: 8px;
  cursor: pointer;
}

@media (max-width: 720px) {
  .masthead-logo-wrap {
    height: 100px;
    padding: 0 16px;
  }

  .masthead-logo {
    height: 80px;
  }

  .content {
    padding: 28px 0 56px;
  }

  .content-shell {
    grid-template-columns: 1fr;
    row-gap: 0;
    width: 100%;
  }

  .content-spacer {
    display: none;
  }

  .copy-block {
    width: 100%;
    max-width: none;
    padding: 0 18px;
    margin-top: 0;
  }

  .copy-block p {
    font-size: 18px;
    line-height: 1.5;
  }

  .ad-rail {
    display: none;
  }
}
