.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--body-font);
  font-variation-settings: "wdth" 100;
  font-weight: 700;
}

.text-link--utility {
  font-size: 1.5rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

.text-link--utility:hover,
.text-link--utility:focus-visible {
  color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.4rem;
  padding: 0.9rem 1.5rem;
  border-radius: 0.25rem;
  font-family: var(--body-font);
  font-size: var(--text-fluid-sm);
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
}

.button--solid {
  color: var(--cream);
  background: var(--red);
  border: 1px solid var(--red-border);
  box-shadow: var(--shadow-card);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: var(--red-deep);
}

.button--outline {
  color: var(--cream);
  border: 2px solid var(--cream);
  background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}


.art {
  width: 100%;
}

.art img,
.art__image {
  width: 100%;
  height: auto;
}

.art-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.art-frame img,
.art-frame .art__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.art-frame--family {
  aspect-ratio: 534 / 390;
}

.art-frame--square {
  aspect-ratio: 1 / 1;
}

.art-frame--landscape {
  height: 16rem;
}

.art-frame--family img,
.art-frame--family .art__image,
.art-frame--square img,
.art-frame--square .art__image {
  object-fit: contain;
}

.art-frame--landscape img,
.art-frame--landscape .art__image {
  object-fit: cover;
}

.art--muted {
  opacity: 0.82;
  border-radius: 0.15rem;
}

.callout {
  position: relative;
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow: visible;
  isolation: isolate;
}

.callout__frame {
  position: absolute;
  inset: -0.45rem;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.callout__body {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 2rem;
}

.callout__fill {
  fill: var(--paper);
}

.callout__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.callout__content {
  min-width: 0;
}

.callout__art {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

.callout--organic .callout__stroke {
  filter: url(#ink-rough);
  paint-order: stroke;
}

.demand-index__groups {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.summary-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.summary-card__title {
  margin: 0;
  font-family: var(--title-font);
  font-size: var(--text-fluid-lg);
  line-height: 1.08;
  text-transform: uppercase;
}

.summary-card__title a {
  text-decoration: underline;
}

.summary-card__title a::after {
  content: " \2192";
}

.summary-card__title a:hover,
.summary-card__title a:focus-visible {
  color: var(--red);
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  flex: 0 0 auto;
}

.summary-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: var(--body-font);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: underline;
}

@media (min-width: 72rem) {
  .summary-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.05rem 2.25rem;
    align-items: flex-start;
  }

  .summary-list a {
    align-items: flex-start;
    white-space: normal;
  }
}

.summary-list a:hover,
.summary-list a:focus-visible {
  color: var(--red);
}

.rose--bullet {
  flex: 0 0 auto;
  width: 1.6rem;
  margin-top: 0.1rem;
}

.demand-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
}

.demand-card__visual {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 0 0 auto;
}

.demand-title-cluster {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.demand-card__title {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--text-fluid-md);
  line-height: 1.14;
  text-align: center;
  text-wrap: balance;
  text-transform: uppercase;
  font-weight: 800;
}

.demand-card__art {
  --demand-art-scale: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 0;
  width: min(100%, 19rem);
  margin: 0 auto;
}

.demand-card__art img {
  width: 100%;
  height: auto;
  max-height: 22rem;
  object-fit: contain;
  transform: scale(var(--demand-art-scale));
  transform-origin: center center;
}

  :is(
    #demand-economic-democracy,
    #demand-finish-reconstruction,
    #demand-healthcare-for-all,
	#demand-free-palestine,
	#demand-housing-for-all
  ) .demand-card__art {
    --demand-art-scale: 0.8;
  }

.demand-card__body {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.55;
}


.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-menu__link {
  font-family: var(--body-font);
  font-size: 1.15rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 160ms ease;
}

.footer-menu__link:hover,
.footer-menu__link:focus-visible {
  color: var(--red);
}

.footer-menu__link--home {
  font-family: var(--title-font);
  font-size: 1.15rem;
}

.hero__jump-link,
.mobile-menu__list a,
.footer-menu__link {
  font-family: var(--body-font);
  font-weight: 700;
}

@media (min-width: 48rem) {
  .demand-card__visual {
    block-size: clamp(21rem, 28vw, 28rem);
  }

  .demand-card__art {
    flex: 1 1 auto;
    min-height: 15rem;
    height: 300px;
  }

  .demand-card__art img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .demand-card__body {
    font-size: 1.5rem;
  }

  #demand-feminism-for-all .demand-card__art {
    --demand-art-scale: 1.28;
  }
  #demand-end-blockades .demand-card__art {
    --demand-art-scale: 1.35;
  }
  #demand-democracy-for-all .demand-card__art {
    --demand-art-scale: 1.2;
  }
  #demand-democratic-congress .demand-card__art {
    --demand-art-scale: 1.2;
  }


}


@media (max-width: 47.999rem) {
  .demand-card__visual {
    block-size: auto;
  }
}
