:root {
  --brand-blue: #0648A8;
  --brand-white: #F3F0E9;
  --brand-cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%230648A8' d='M3 2L3 19L7.7 14.7L11.2 22L14 20.7L10.5 13.4H17L3 2Z'/%3E%3C/svg%3E") 3 2, auto;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--brand-white);
  color: var(--brand-blue);
  font-family: Arial, Helvetica, sans-serif;
  cursor: var(--brand-cursor);
}

.subscribe-container {
  width: min(760px, 100%);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 44px;
}

.logo {
  display: block;
  width: min(560px, 82vw);
  height: auto;
  transform: rotate(0deg);
}

.embeddable-buttondown-form {
  width: min(560px, 100%);
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #111;
}

#bd-email {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 12px 4px;
  background: transparent;
  color: var(--brand-blue);
  caret-color: var(--brand-blue);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
}

#bd-email::placeholder {
  color: #777;
  opacity: 1;
}

button[type="submit"] {
  flex: 0 0 auto;
  border: 0;
  padding: 12px 4px 12px 20px;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
  cursor: var(--brand-cursor);
}

button[type="submit"] span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 160ms ease;
}

button[type="submit"]:hover span,
button[type="submit"]:focus-visible span {
  transform: translateX(4px);
}

.back-home span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 160ms ease;
}

.back-home:hover span,
.back-home:focus-visible span {
  transform: translateX(4px);
}

.newsletter-notice {
  margin: 0 0;
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #777;
  opacity: 0.55;
  text-align: center;
}

.newsletter-notice a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-meta-icon-link {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.3;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.about-icon-svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

footer {
  width: 100%;
  box-sizing: border-box;
  padding: 50px 0;
  text-align: center;
}

footer p {
    font-size: 9px;
    color: #777;
    letter-spacing: 0.2em;
    opacity: 0.55;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 9px;
    color: #777;
    text-decoration: none;
    letter-spacing: 0.2em;
    opacity: 0.55;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

@media (max-width: 560px) {
  body {
    padding: 28px 20px;
  }
  .subscribe-container {
    gap: 32px;
  }
  .logo {
    width: min(420px, 86vw);
  }
  .embeddable-buttondown-form {
    width: 100%;
  }
  #bd-email,
  button[type="submit"] {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo {
    animation: none;
  }
}