:root {
  color-scheme: dark;
  --support-white: #f7f7f7;
  --support-soft-white: #e2e2e2;
  --support-muted: #bdbdbd;
  --support-rule: #303030;
  --support-faint-rule: #292929;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  overflow-x: hidden;
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100%;
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  border: 1px solid var(--support-faint-rule);
  background: #000;
  color: var(--support-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-variant-numeric: tabular-nums;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border: 2px solid #fff;
  border-radius: 4px;
  background: #000;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.donor-marquee {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  height: 63px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--support-faint-rule);
  background: #000;
}

.donor-marquee__viewport {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3.5%, #000 96.5%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3.5%, #000 96.5%, transparent);
}

.donor-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: donor-marquee 36s linear infinite;
}

.donor-marquee:hover .donor-marquee__track {
  animation-play-state: paused;
}

.donor-marquee__group {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 27px;
  padding-right: 27px;
  color: var(--support-soft-white);
  font-size: clamp(17px, 1.18vw, 20px);
  font-weight: 430;
  line-height: 1;
  white-space: nowrap;
}

.donor-marquee__group .marquee-separator {
  color: #fff;
  font-size: .72em;
}

.marquee-star {
  color: #fff;
  font-size: 30px;
  line-height: .8;
}

@keyframes donor-marquee {
  to { transform: translateX(-50%); }
}

.support-dashboard {
  width: min(1420px, calc(100% - 56px));
  margin-inline: auto;
}

.support-hero {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.support-hero h1 {
  margin: 0;
  color: var(--support-white);
  font-size: clamp(84px, 14.45dvh, 136px);
  font-weight: 740;
  letter-spacing: -.055em;
  line-height: .95;
  white-space: nowrap;
}

.support-hero__subtitle {
  color: var(--support-soft-white);
  font-size: clamp(22px, 2.98dvh, 28px);
  font-weight: 400;
  line-height: 1.6;
}

.support-hero__subtitle p {
  margin: 0;
}

.funding-overview {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 320px) minmax(0, 1fr);
}

.funding-overview__column {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
}

.funding-overview__cta-column {
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: clamp(14px, 2.1dvh, 20px);
}

.coffee-cta {
  display: flex;
  width: min(508px, calc(100% - 42px));
  height: clamp(88px, 11.7dvh, 110px);
  min-height: 88px;
  padding: 0 clamp(20px, 1.75vw, 29px);
  align-items: center;
  gap: clamp(19px, 1.55vw, 28px);
  border: 2px solid #f1f1f1;
  border-radius: 19px;
  background: transparent;
  color: var(--support-white);
  text-decoration: none;
  transition: background-color 180ms ease-out, color 180ms ease-out;
}

.coffee-cta:hover {
  background: #111;
}

.coffee-cta:focus-visible,
.support-qr-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.coffee-icon,
.cost-item__icon,
.support-footer svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coffee-icon {
  flex: 0 0 auto;
  stroke-width: 2.4;
}

.coffee-icon--large {
  width: 50px;
  height: 58px;
}

.coffee-cta__text,
.coffee-cta__label,
.coffee-cta__url {
  display: block;
  min-width: 0;
}

.coffee-cta__text {
  line-height: 1.15;
}

.coffee-cta__label {
  margin-bottom: 10px;
  color: var(--support-soft-white);
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 420;
}

.coffee-cta__url {
  color: #fff;
  font-size: clamp(19px, 1.49vw, 25px);
  font-weight: 680;
  letter-spacing: -.018em;
  white-space: nowrap;
}

.funding-overview__qr-column {
  z-index: 4;
  align-items: center;
  flex-direction: column;
}

.qr-caption {
  margin: clamp(3px, .65dvh, 6px) 0 clamp(7px, .85dvh, 9px);
  color: var(--support-soft-white);
  font-size: clamp(16px, 1.08vw, 18px);
  font-weight: 400;
  line-height: 1.3;
}

.support-qr-link {
  display: block;
  width: clamp(144px, 19.13dvh, 180px);
  height: clamp(144px, 19.13dvh, 180px);
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
  transition: opacity 170ms ease-out;
}

.support-qr-link:hover {
  opacity: .9;
}

.support-qr-link img {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}

.funding-overview__progress-column {
  justify-content: flex-end;
  padding-top: clamp(9px, 1.25dvh, 12px);
}

.monthly-progress {
  width: min(500px, calc(100% - 42px));
  text-align: center;
}

.monthly-progress h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.33vw, 22px);
  font-weight: 620;
  line-height: 1.25;
}

.monthly-progress__amount {
  margin: clamp(7px, 1.1dvh, 11px) 0 0;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.monthly-progress__amount strong {
  font-size: clamp(33px, 4.45dvh, 42px);
  font-weight: 720;
  letter-spacing: -.025em;
}

.monthly-progress__amount span {
  font-size: clamp(26px, 3.4dvh, 32px);
  font-weight: 600;
  letter-spacing: -.02em;
}

.monthly-progress__bar {
  width: 100%;
  height: clamp(15px, 1.9dvh, 19px);
  margin-top: clamp(15px, 2.15dvh, 20px);
  overflow: hidden;
  border: 1px solid #2c2c2c;
  border-radius: 999px;
  background: #1f1f1f;
}

.monthly-progress__fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #f7f7f7;
  transition: width 700ms ease-out;
}

.monthly-progress__percentage {
  margin: clamp(10px, 1.55dvh, 15px) 0 0;
  color: var(--support-soft-white);
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 400;
  line-height: 1.25;
}

.funding-overview__divider {
  position: absolute;
  z-index: 1;
  top: clamp(6px, .85dvh, 8px);
  bottom: clamp(6px, .85dvh, 8px);
  width: 1px;
  background: var(--support-faint-rule);
}

.funding-overview__divider--left {
  left: calc((100% - 320px) / 2);
}

.funding-overview__divider--right {
  right: calc((100% - 320px) / 2);
}

.overview-rule {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: calc(50% - 112px);
  height: 1px;
  background: var(--support-rule);
}

.overview-rule--left { left: 0; }
.overview-rule--right { right: 0; }

.support-details {
  position: relative;
  display: grid;
  min-width: 0;
  padding-top: clamp(16px, 2.55dvh, 24px);
  grid-template-columns: 45.65% 54.35%;
}

.support-details::after {
  content: "";
  position: absolute;
  top: clamp(18px, 2.75dvh, 26px);
  bottom: 0;
  left: 45.65%;
  width: 1px;
  background: var(--support-faint-rule);
}

.recent-donations,
.cost-breakdown {
  min-width: 0;
}

.recent-donations {
  padding-right: clamp(36px, 3.25vw, 52px);
}

.recent-donations h2,
.cost-breakdown h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 1.65vw, 27px);
  font-weight: 680;
  letter-spacing: -.018em;
  line-height: 1.25;
  text-align: center;
}

.donation-list {
  height: calc(100% - clamp(38px, 4.9dvh, 46px));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #666 transparent;
  scrollbar-width: thin;
  min-height: 0;
  margin-top: clamp(8px, 1.35dvh, 13px);
}

.donation-list__status {
  display: grid;
  height: 100%;
  min-height: 150px;
  margin: 0;
  place-items: center;
  color: var(--support-muted);
  font-size: clamp(15px, 1.05vw, 17px);
  text-align: center;
}

.donation-list__items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.donation-row {
  position: relative;
  display: grid;
  height: clamp(36px, 4.78dvh, 45px);
  min-height: 36px;
  align-items: center;
  grid-template-columns: 52px minmax(0, 1fr) 64px 142px;
}

.donation-row::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 52px;
  height: 1px;
  background: #252525;
}

.donation-row:last-child::after {
  display: none;
}

.donation-row__icon {
  width: 24px;
  height: 28px;
  color: #f3f3f3;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.donation-row__name,
.donation-row__amount,
.donation-row__time {
  min-width: 0;
  margin: 0;
  line-height: 1.2;
}

.donation-row__name {
  overflow: hidden;
  color: #efefef;
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 420;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.donation-row__amount {
  color: #fff;
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 510;
  text-align: right;
}

.donation-row__time {
  color: var(--support-muted);
  font-size: clamp(14px, 1.04vw, 17px);
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
}

.cost-breakdown {
  padding-left: 0;
}

.cost-breakdown__grid {
  display: grid;
  height: calc(100% - clamp(35px, 4.55dvh, 43px));
  margin-top: clamp(10px, 1.8dvh, 17px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cost-item {
  position: relative;
  display: flex;
  min-width: 0;
  margin: 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.cost-item + .cost-item {
  border-left: 1px solid var(--support-faint-rule);
}

.cost-item__icon {
  width: clamp(49px, 6.6dvh, 62px);
  height: clamp(49px, 6.6dvh, 62px);
  flex: 0 0 auto;
  color: #f7f7f7;
  stroke-width: 2.3;
}

.cost-item__icon--code {
  width: clamp(60px, 7.4dvh, 70px);
}

.cost-item__amount {
  margin: clamp(5px, .85dvh, 8px) 0 0;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}

.cost-item__amount strong {
  font-size: clamp(23px, 3.05dvh, 29px);
  font-weight: 690;
  letter-spacing: -.02em;
}

.cost-item__amount span {
  font-size: clamp(16px, 2.05dvh, 19px);
  font-weight: 420;
}

.cost-item h3 {
  margin: clamp(5px, .78dvh, 7px) 0 0;
  color: #fff;
  font-size: clamp(17px, 2.12dvh, 20px);
  font-weight: 500;
  line-height: 1.2;
}

.cost-item__description {
  margin: clamp(6px, .88dvh, 8px) 0 0;
  color: var(--support-muted);
  font-size: clamp(14px, 1.75dvh, 16.5px);
  font-weight: 380;
  line-height: 1.42;
}

.support-footer {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr);
  gap: clamp(25px, 2.9vw, 46px);
  transform: translateY(clamp(8px, 1.38dvh, 13px));
}

.support-footer__rule {
  height: 1px;
  background: var(--support-rule);
}

.support-footer p {
  display: flex;
  margin: 0;
  align-items: center;
  gap: clamp(13px, 1vw, 17px);
  color: var(--support-muted);
  font-size: clamp(16px, 1.14vw, 19px);
  font-weight: 400;
  white-space: nowrap;
}

.support-footer svg {
  width: clamp(29px, 3.5dvh, 34px);
  height: clamp(29px, 3.5dvh, 34px);
  flex: 0 0 auto;
  color: #fff;
  stroke-width: 2.2;
}

@media (min-width: 1200px) {
  body {
    height: 100dvh;
    overflow: hidden;
  }

  .support-dashboard {
    height: calc(100dvh - 65px);
    display: grid;
    grid-template-rows: 32.88% 23.97% 33.1% 10.05%;
  }

  .support-hero {
    padding-top: clamp(24px, 3.72dvh, 35px);
  }

  .support-hero__subtitle {
    margin-top: clamp(13px, 1.6dvh, 15px);
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .support-dashboard {
    width: min(1420px, calc(100% - 64px));
  }

  .funding-overview {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 290px) minmax(0, 1fr);
  }

  .funding-overview__divider--left { left: calc((100% - 290px) / 2); }
  .funding-overview__divider--right { right: calc((100% - 290px) / 2); }
  .coffee-cta, .monthly-progress { width: calc(100% - 34px); }
  .coffee-cta__url { font-size: clamp(18px, 1.48vw, 23px); }
  .recent-donations { padding-right: 34px; }
  .donation-row { grid-template-columns: 47px minmax(0, 1fr) 56px 124px; }
  .donation-row::after { left: 47px; }
}

@media (max-width: 1199px) {
  .support-dashboard {
    width: min(980px, calc(100% - 48px));
    padding-bottom: 34px;
  }

  .support-hero {
    padding: 42px 0 46px;
  }

  .support-hero h1 {
    font-size: clamp(72px, 10.8vw, 112px);
  }

  .support-hero__subtitle {
    margin-top: 20px;
    font-size: clamp(21px, 2.8vw, 27px);
  }

  .funding-overview {
    padding: 0 0 44px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .funding-overview__cta-column,
  .funding-overview__progress-column {
    padding-top: 0;
  }

  .funding-overview__progress-column {
    justify-content: flex-end;
  }

  .funding-overview__qr-column {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .coffee-cta,
  .monthly-progress {
    width: 100%;
  }

  .coffee-cta {
    height: 106px;
  }

  .support-qr-link {
    width: 180px;
    height: 180px;
  }

  .funding-overview__divider {
    display: none;
  }

  .overview-rule {
    width: calc(50% - 112px);
  }

  .support-details {
    display: block;
    padding-top: 38px;
  }

  .support-details::after {
    display: none;
  }

  .recent-donations {
    padding: 0 0 42px;
    border-bottom: 1px solid var(--support-rule);
  }

  .recent-donations h2,
  .cost-breakdown h2 {
    font-size: 27px;
  }

  .donation-list {
    width: min(650px, 100%);
    height: 238px;
    margin: 16px auto 0;
  }

  .donation-row {
    height: 45px;
  }

  .cost-breakdown {
    padding-top: 38px;
  }

  .cost-breakdown__grid {
    height: auto;
    min-height: 230px;
    margin-top: 22px;
  }

  .cost-item__icon {
    width: 56px;
    height: 56px;
  }

  .cost-item__amount strong { font-size: 29px; }
  .cost-item__amount span { font-size: 19px; }
  .cost-item h3 { font-size: 20px; }
  .cost-item__description { font-size: 16px; }

  .support-footer {
    margin-top: 48px;
    min-height: 55px;
    transform: none;
  }
}

@media (max-width: 767px) {
  .donor-marquee {
    height: 58px;
  }

  .donor-marquee__group {
    gap: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

  .marquee-star { font-size: 25px; }

  .support-dashboard {
    width: min(100% - 40px, 620px);
    padding-bottom: max(26px, env(safe-area-inset-bottom));
  }

  .support-hero {
    padding: 38px 0 42px;
  }

  .support-hero h1 {
    max-width: 100%;
    font-size: clamp(61px, 18vw, 88px);
    line-height: .92;
    white-space: normal;
  }

  .support-hero__subtitle {
    margin-top: 23px;
    font-size: clamp(19px, 5.2vw, 23px);
    line-height: 1.42;
  }

  .support-hero__subtitle p + p {
    margin-top: 5px;
  }

  .funding-overview {
    display: flex;
    padding-bottom: 38px;
    align-items: stretch;
    flex-direction: column;
    gap: 38px;
  }

  .funding-overview__cta-column { order: 1; }
  .funding-overview__qr-column { order: 2; }
  .funding-overview__progress-column { order: 3; }

  .coffee-cta {
    width: 100%;
    height: 96px;
    min-height: 96px;
    padding: 0 18px;
    gap: 17px;
    border-radius: 16px;
  }

  .coffee-icon--large {
    width: 42px;
    height: 50px;
  }

  .coffee-cta__label {
    margin-bottom: 7px;
    font-size: clamp(15px, 4vw, 18px);
  }

  .coffee-cta__url {
    font-size: clamp(16px, 4.3vw, 21px);
  }

  .qr-caption {
    font-size: 17px;
  }

  .monthly-progress h2 { font-size: 22px; }
  .monthly-progress__amount { margin-top: 12px; }
  .monthly-progress__amount strong { font-size: 40px; }
  .monthly-progress__amount span { font-size: 30px; }
  .monthly-progress__bar { height: 18px; margin-top: 20px; }
  .monthly-progress__percentage { margin-top: 14px; font-size: 18px; }

  .overview-rule {
    width: calc(50% - 92px);
  }

  .support-details {
    padding-top: 34px;
  }

  .recent-donations {
    padding-bottom: 38px;
  }

  .recent-donations h2,
  .cost-breakdown h2 {
    font-size: 25px;
  }

  .donation-list {
    height: auto;
    min-height: 176px;
    overflow-y: visible;
  }

  .donation-row {
    height: auto;
    min-height: 58px;
    padding: 7px 0;
    grid-template-columns: 30px minmax(0, 1fr) auto;
  }

  .donation-row::after { left: 30px; }

  .donation-row__name { font-size: 17px; }
  .donation-row__amount { font-size: 17px; }
  .donation-row__time {
    grid-column: 2 / -1;
    margin-top: 2px;
    font-size: 14px;
    text-align: right;
  }

  .cost-breakdown {
    padding-top: 34px;
  }

  .cost-breakdown__grid {
    display: block;
    margin-top: 18px;
  }

  .cost-item {
    padding: 26px 0 30px;
  }

  .cost-item + .cost-item {
    border-top: 1px solid var(--support-faint-rule);
    border-left: 0;
  }

  .cost-item__description {
    font-size: 16px;
  }

  .support-footer {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .support-footer__rule {
    display: none;
  }

  .support-footer p {
    justify-content: center;
    font-size: clamp(15px, 4vw, 18px);
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 370px) {
  .support-dashboard {
    width: calc(100% - 32px);
  }

  .coffee-cta {
    padding-inline: 14px;
    gap: 12px;
  }

  .coffee-icon--large {
    width: 36px;
    height: 44px;
  }

  .coffee-cta__label { font-size: 14px; }
  .coffee-cta__url { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .donor-marquee__track {
    animation: none;
    transform: translateX(0);
  }

  .coffee-cta,
  .support-qr-link,
  .monthly-progress__fill,
  .skip-link {
    transition: none;
  }
}

/* Support dashboard visual treatment. The photograph is stored locally so the
   page remains complete when third-party image hosts are unavailable. */
:root {
  --support-white: #eff6ff;
  --support-soft-white: #dbeafe;
  --support-muted: #93b4df;
  --support-rule: rgba(96, 165, 250, .34);
  --support-faint-rule: rgba(96, 165, 250, .2);
}

html {
  background: #020817;
}

body {
  border-color: rgba(96, 165, 250, .28);
  background-color: #020817;
  background-image:
    linear-gradient(180deg, rgba(1, 7, 24, .74), rgba(1, 6, 20, .88)),
    url("/support/support-background.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.donor-marquee {
  border-color: rgba(96, 165, 250, .25);
  background: rgba(1, 8, 25, .88);
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
}

.marquee-star,
.donor-marquee__group .marquee-separator {
  color: #60a5fa;
}

.coffee-cta {
  border-color: #60a5fa;
  background: rgba(3, 19, 50, .42);
  box-shadow: 0 16px 42px rgba(0, 35, 90, .24);
}

.coffee-cta:hover {
  border-color: #93c5fd;
  background: rgba(5, 30, 72, .55);
}

.coffee-icon,
.donation-row__icon,
.cost-item__icon,
.support-footer svg {
  color: #60a5fa;
}

.coffee-cta__url,
.monthly-progress__amount strong,
.cost-item__amount strong {
  color: #bfdbfe;
}

.monthly-progress__bar {
  border-color: rgba(96, 165, 250, .4);
  background: rgba(3, 16, 42, .74);
}

.monthly-progress__fill {
  background: linear-gradient(90deg, #2563eb, #60a5fa, #bfdbfe);
  box-shadow: 0 0 22px rgba(59, 130, 246, .5);
}

.funding-overview__divider,
.support-details::after,
.overview-rule,
.support-footer__rule {
  background: rgba(96, 165, 250, .28);
}

.donation-row::after {
  background: rgba(96, 165, 250, .2);
}

.donation-list {
  height: auto;
  overflow: visible;
  overscroll-behavior: auto;
  scrollbar-width: none;
}

.donation-list::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1200px) {
  .donor-marquee {
    height: 79px;
  }

  .donor-marquee__group {
    gap: 34px;
    padding-right: 34px;
    font-size: 25px;
  }

  .support-dashboard {
    width: min(1775px, calc(100% - 62px));
  }

  .funding-overview {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px) minmax(0, 1fr);
  }

  .funding-overview__divider--left {
    left: calc((100% - 360px) / 2);
  }

  .funding-overview__divider--right {
    right: calc((100% - 360px) / 2);
  }

  .coffee-cta {
    width: min(660px, calc(100% - 42px));
    height: 110px;
  }

  .coffee-cta__label {
    font-size: 24px;
  }

  .coffee-cta__url {
    font-size: 28px;
  }

  .qr-caption {
    font-size: 20px;
  }

  .support-qr-link {
    width: 184px;
    height: 184px;
  }

  .monthly-progress {
    width: min(660px, calc(100% - 42px));
  }

  .monthly-progress h2 {
    font-size: 24px;
  }

  .monthly-progress__percentage {
    font-size: 20px;
  }

  .recent-donations {
    padding-right: 42px;
  }

  .recent-donations h2,
  .cost-breakdown h2 {
    font-size: 31px;
  }

  .donation-row {
    min-height: 46px;
    grid-template-columns: 48px minmax(0, 1fr) 82px 230px;
    column-gap: 18px;
  }

  .donation-row::after {
    left: 48px;
  }

  .donation-row__name,
  .donation-row__amount {
    font-size: 21px;
  }

  .donation-row__time {
    font-size: 18px;
    text-align: left;
  }

  .cost-item__amount strong {
    font-size: 31px;
  }

  .cost-item__amount span,
  .cost-item h3 {
    font-size: 20px;
  }

  .cost-item__description {
    font-size: 18px;
  }
}
