* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 28px 12px 52px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
  color: #111;
  background: #fff;
}

a {
  color: #1f5fbf;
}

a:hover,
a:focus-visible {
  text-decoration-thickness: 2px;
}

.page {
  max-width: 1000px;
  margin: 0 auto;
}

.top-menu {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.logo {
  display: block;
  width: min(180px, 100%);
  height: auto;
  margin: 0 auto 22px;
}

h2 {
  font-size: 1.1em;
  margin: 34px 0 14px;
}

h3 {
  font-size: 1.15em;
  margin: 0 0 10px;
  font-weight: 700;
}

p {
  margin: 0 0 22px;
}

.home-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.left-column section:first-child h2 {
  margin-top: 0;
}

.right-column {
  min-height: 1px;
}

.sidebar-subscribe h2 {
  margin-top: 0;
}

.embeddable-buttondown-form {
  display: grid;
  gap: 10px;
  font-size: 0.9em;
}

.embeddable-buttondown-form label {
  font-size: 0.85em;
}

.embeddable-buttondown-form input[type="email"] {
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  font: inherit;
  border: 1px solid #bbb;
}

.embeddable-buttondown-form input[type="submit"] {
  justify-self: start;
  padding: 8px 14px;
  font: inherit;
  border: 1px solid #777;
  background: #f5f5f5;
  color: #111;
  cursor: pointer;
}

.embeddable-buttondown-form input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

@media (max-width: 760px) {
  .home-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
