.headline {
  border: 1px solid var(--color-ink);
  border-radius: var(--space-x-small);
  display: grid;
  gap: var(--space-neutral);
  padding: var(--space-large) var(--space-medium);
  position: relative;
}

.headline__header,
.headline__content,
.headline__footer {
  display: grid;
  text-align: center;
}

.headline__header {
  gap: var(--space-x-small);
}

.headline__header h1,
.headline__header h2 {
  font-family: var(--font-family-turbeau);
  font-feature-settings: normal;
  line-height: var(--line-height-tight);
}

.headline__header h1 {
  font-size: var(--font-size-x-large);
  margin-bottom: -0.1875em;
  margin-top: -0.2875em;
}

.headline__header h1 span {
  font-feature-settings: 'ss01';
}

.headline__header h2 {
  font-size: var(--font-size-large);
  letter-spacing: var(--letter-spacing-loose);
  margin-bottom: -0.2em;
  margin-top: -0.275em;
}

.headline__header a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.headline__content {
  gap: var(--space-neutral);
  margin-inline: auto;
  width: min(100%, 23em);
}

.headline__content p {
  font-size: var(--font-size-small);
  margin-bottom: -0.275em;
  margin-top: -0.2625em;
}

.headline__content small {
  font-size: var(--font-size-x-small);
  margin-bottom: -0.2875em;
  margin-top: -0.2875em;
}

.headline__content small a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.headline__content small .icon {
  display: inline-block;
}

.headline__content small .icon svg {
  display: inline-block;
  height: 1em;
  max-height: 100%;
  overflow: visible;
  pointer-events: none;
  vertical-align: -0.1375em;
  width: auto;
}

.headline__content small .icon strong {
  display: inline-block;
  text-decoration-thickness: inherit;
  text-underline-offset: inherit;
}

.headline__content small .icon--37signals strong {
  margin-left: -0.1375em;
}

.headline__content small .icon--fizzy strong {
  margin-left: -0.0375em;
}

.headline__footer {
  justify-content: center;
}



.headline--bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
}

.headline--top {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.headline--roadblock {
  flex: 1;
  place-content: center;
}



@media(hover: hover) {

  .headline__content small a:focus strong,
  .headline__content small a:hover strong {
    text-decoration: underline;
  }

}



@media(min-width: 48em) {

  .headline {
    padding: var(--space-x-large) var(--space-large);
  }

}
