:root {
  --support-orange: #ef5f18;
  --support-green: #123d2e;
  --support-cream: #f6f2e9;
  --support-paper: #fffdf8;
  --support-ink: #1c251f;
  --support-muted: #667169;
  --support-line: #deddd5;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--support-cream);
}

body.support-page {
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background: var(--support-cream);
  color: var(--support-ink);
  font-family: "Noto Sans", "Noto Sans KR", ui-sans-serif, system-ui, sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

.support-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(50, 21, 6, 0.07);
  background: rgba(255, 248, 239, 0.96);
  backdrop-filter: blur(14px);
}

.support-header-inner {
  width: min(100% - 36px, 1440px);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.support-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.support-logo img {
  width: auto;
  height: 32px;
  display: block;
}

.support-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-languages {
  display: flex;
  gap: 0;
  padding: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(50, 21, 6, 0.055);
  box-shadow: inset 0 0 0 1px rgba(50, 21, 6, 0.07);
}

.support-languages button {
  min-width: 44px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #71665f;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.support-languages button[aria-pressed="true"] {
  background: var(--support-orange);
  color: #24130b;
}

.support-menu-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 4px;
  border: 1px solid rgba(50, 21, 6, 0.08);
  border-radius: 50%;
  background: rgba(50, 21, 6, 0.055);
  cursor: pointer;
}

.support-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #321506;
  transition: transform 180ms ease, opacity 180ms ease;
}

.support-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.support-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.support-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.support-menu {
  position: absolute;
  top: 80px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  border-top: 1px solid rgba(50, 21, 6, 0.07);
  border-bottom: 1px solid rgba(50, 21, 6, 0.08);
  padding: 18px 24px;
  background: #321506;
  box-shadow: 0 16px 30px rgba(50, 21, 6, 0.12);
}

.support-menu[hidden] {
  display: none;
}

.support-menu a {
  color: #fff8ef;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.support-menu a:hover {
  color: #ff7b36;
}

.support-main {
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
  padding: 52px 0 72px;
}

.support-hero {
  display: block;
}

.support-project {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(28, 37, 31, 0.12);
  border-radius: 26px;
  background: var(--support-paper);
  box-shadow: 0 24px 70px rgba(50, 21, 6, 0.1);
}

.support-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 26px 20px 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 149, 92, 0.28), transparent 34%),
    linear-gradient(145deg, #184b38 0%, #103f31 52%, #0a3025 100%);
}

.support-intro::after {
  position: absolute;
  right: -94px;
  bottom: -106px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.support-category {
  width: fit-content;
  margin: 0 auto 15px;
  border-radius: 999px;
  padding: 7px 13px;
  background: var(--support-orange);
  color: #fff9f1;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.support-title {
  max-width: 390px;
  margin: 0 auto 13px;
  color: #fff9f1;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.7px;
  text-align: center;
  word-break: keep-all;
}

.support-lead {
  max-width: 390px;
  margin: 0 auto 0;
  color: #d6e4dc;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.1px;
  text-align: center;
  word-break: keep-all;
}

.support-participation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 18px 24px;
  background: var(--support-paper);
}

.support-impact {
  max-width: 390px;
  margin: 0 auto 20px;
  color: var(--support-green);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.25px;
  text-align: center;
}

.support-form {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.support-form[hidden] {
  display: grid;
}

.support-field {
  display: grid;
  gap: 0;
  width: 100%;
}

.support-field label,
.support-country-field legend {
  width: 100%;
  color: #303a34;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  display: block;
}

.support-field label {
  margin-bottom: 9px;
}

.support-field label span {
  color: #90978f;
  font-weight: 700;
}

.support-field input,
.support-field textarea {
  width: 100%;
  border: 1px solid #ccd0c9;
  border-radius: 12px;
  background: #fff;
  color: var(--support-ink);
  outline: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.support-field input {
  height: 54px;
  padding: 0 16px;
  margin-bottom: 26px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.1px;
  text-align: center;
}

.support-field input::placeholder {
  color: #90978f;
  opacity: 1;
  text-align: center;
}

.support-field textarea {
  min-height: 76px;
  resize: none;
  padding: 12px 14px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.05px;
  text-align: left;
}

.support-field textarea::placeholder {
  color: #90978f;
  opacity: 1;
  text-align: left;
}

.support-field input:focus,
.support-field textarea:focus {
  border-color: var(--support-orange);
  box-shadow: 0 0 0 3px rgba(239, 95, 24, 0.13);
}

.support-message-field > small {
  display: none;
}

.support-country-field {
  min-width: 0;
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

.support-country-field legend {
  width: 100%;
  margin-bottom: 11px;
  text-align: center;
  display: block;
}

.support-countries {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 5px;
  row-gap: 5px;
  width: 100%;
  justify-content: center;
  margin-bottom: 28px;
}

.support-country-chip {
  position: relative;
  display: flex;
  cursor: pointer;
  min-width: 0;
  margin: 0;
  border: 0;
}

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

.support-chip-label {
  width: 100%;
  height: 44px;
  min-height: 44px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccd0c9;
  border-radius: 10px;
  padding: 0 3px;
  background: #ffffff;
  color: var(--support-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.15px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
  transition:
    border-color 150ms ease,
    background-color 150ms ease,
    color 150ms ease,
    box-shadow 150ms ease;
}

.support-country-chip:hover .support-chip-label {
  border-color: var(--support-orange);
}

.support-country-input:checked + .support-chip-label {
  border-color: var(--support-orange);
  background: var(--support-orange);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(239, 95, 24, 0.25);
}

.support-country-input:focus-visible + .support-chip-label {
  outline: 3px solid rgba(239, 95, 24, 0.35);
  outline-offset: 1px;
}

.support-message-field {
  display: grid;
  gap: 0;
  width: 100%;
  text-align: center;
}

.support-message-wrapper {
  display: grid;
  gap: 9px;
  margin-top: 0;
  width: 100%;
}

.support-message-wrapper label {
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.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;
}

.support-submit {
  position: relative;
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  margin-bottom: 18px;
  background: var(--support-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.1px;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 150ms ease,
    transform 150ms ease;
}

.support-submit:hover {
  background: #d94e0d;
  transform: translateY(-1px);
}

.support-submit span:last-child {
  position: absolute;
  right: 21px;
  top: 50%;
  font-size: 21px;
  transform: translateY(-50%);
}

.support-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.support-privacy {
  max-width: 350px;
  margin: 0 auto 0;
  color: #838a84;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: center;
}

.support-status {
  max-width: 560px;
  min-height: 0;
  margin: 12px auto 0;
  color: #a63c12;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.55;
  text-align: center;
}

.support-status:empty {
  display: none;
}

.support-status[data-state="pending"] {
  color: var(--support-green);
  font-size: 13px;
  font-weight: 800;
}

.support-status[data-state="success"] {
  border: 1px solid #c7d9cd;
  border-radius: 10px;
  padding: 10px 14px;
  background: #eef6f0;
  color: var(--support-green);
  font-size: 13px;
  font-weight: 800;
}

.support-status[data-state="toast"] {
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--support-green);
  color: #fff9f1;
  font-size: 12px;
  font-weight: 800;
  animation: toast-in 250ms ease;
}

.support-success-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 560px;
  margin: 14px auto 0;
  padding: 16px;
  border: 1px solid rgba(18, 61, 46, 0.14);
  border-radius: 14px;
  background: #f4faf5;
  text-align: center;
}

.support-success-actions[hidden] {
  display: none;
}

.support-success-actions p {
  margin: 0;
  color: var(--support-green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.support-success-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  border-radius: 999px;
  border: 0;
  padding: 0 17px;
  background: var(--support-green);
  color: #fff9f1;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 150ms ease, transform 150ms ease;
}

.support-success-cta:hover {
  background: #0b2d22;
  transform: translateY(-1px);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.support-feed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 1px solid rgba(50, 21, 6, 0.08);
  border-bottom: 1px solid rgba(50, 21, 6, 0.08);
  padding: 24px max(12px, calc((100vw - 860px) / 2)) 72px;
  background:
    linear-gradient(180deg, rgba(239, 95, 24, 0.035), transparent 180px),
    #fff8ef;
  scroll-margin-top: 100px;
}

.support-feed-heading {
  display: none;
  justify-items: center;
  gap: 0;
  width: calc(100% - 24px);
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
}

.support-feed-heading p {
  margin: 0 0 10px;
  color: #c9470c;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.6px;
  text-align: center;
}

.support-feed-heading h2 {
  width: 100%;
  max-width: 430px;
  margin: 0 auto 14px;
  color: var(--support-green);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.7px;
  text-align: center;
  word-break: keep-all;
}

.support-feed-total {
  flex: 0 0 auto;
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--support-orange);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.support-country-totals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 7px;
  row-gap: 7px;
  width: calc(100% - 24px);
  max-width: 430px;
  margin: 0 auto 18px;
}

.support-country-total {
  height: 32px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(18, 61, 46, 0.12);
  border-radius: 999px;
  padding: 0 3px;
  background: #fffdf8;
  color: #62584f;
  font-size: 11.5px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.1px;
  white-space: nowrap;
  text-align: center;
}

.support-country-total strong {
  color: var(--support-green);
  font-size: 11.5px;
  font-weight: 900;
}

.support-feed-list {
  display: block;
  width: calc(100% - 24px);
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(18, 61, 46, 0.13);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 18px 50px rgba(50, 21, 6, 0.07);
}

.support-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 0;
  border-bottom: 1px solid rgba(18, 61, 46, 0.1);
  padding: 16px 14px;
  background: transparent;
}

.support-feed-item:last-child {
  border-bottom: 0;
}

.support-feed-avatar {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--support-green);
  color: #fffaf2;
  font-size: 13px;
  font-weight: 900;
}

.support-feed-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.support-feed-content {
  min-width: 0;
  flex: 1;
}

.support-feed-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
}

.support-feed-name {
  min-width: 0;
  max-width: 24ch;
  overflow: hidden;
  color: #24332b;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.1px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-feed-time {
  flex: 0 0 auto;
  margin-left: 7px;
  color: #969b96;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.support-feed-message {
  margin: 6px 0 0;
  color: #39433d;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.48;
  letter-spacing: -0.1px;
  text-align: left;
  overflow-wrap: anywhere;
}

.support-feed-country {
  border-radius: 999px;
  padding: 4px 7px;
  background: #eaf2ed;
  color: var(--support-green);
  font-size: 9px;
  font-weight: 900;
}

.support-feed-example {
  color: #c64a13;
  font-size: 9px;
  font-weight: 900;
}

/* Skeleton Placeholders */
.support-feed-skeleton {
  pointer-events: none;
  user-select: none;
}

.support-skeleton-block,
.support-skeleton-line {
  background: linear-gradient(
    90deg,
    rgba(18, 61, 46, 0.06) 25%,
    rgba(18, 61, 46, 0.14) 50%,
    rgba(18, 61, 46, 0.06) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  display: block;
}

@keyframes skeleton-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.support-skeleton-name {
  width: 90px;
  height: 13px;
  border-radius: 4px;
}

.support-skeleton-time {
  width: 50px;
  height: 11px;
  border-radius: 4px;
  margin-left: auto;
}

.support-skeleton-msg1 {
  width: 85%;
  height: 13px;
  border-radius: 4px;
  margin-top: 10px;
}

.support-skeleton-msg2 {
  width: 60%;
  height: 13px;
  border-radius: 4px;
  margin-top: 6px;
}

.support-feed-item--example .support-feed-avatar {
  background: #ea6728;
}

.support-feed-empty {
  max-width: 680px;
  margin: 18px auto 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #727e77;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.support-feed-empty[hidden] {
  display: none;
}

.support-feed-more {
  min-width: 188px;
  min-height: 46px;
  display: block;
  margin: 18px auto 0;
  border: 1px solid rgba(18, 61, 46, 0.2);
  border-radius: 999px;
  padding: 10px 22px;
  background: #fffdf8;
  color: var(--support-green);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.support-feed-more:hover {
  border-color: var(--support-green);
  background: var(--support-green);
  color: #fffaf2;
}

.support-feed-more:focus-visible {
  outline: 3px solid rgba(239, 95, 24, 0.35);
  outline-offset: 3px;
}

.support-feed-more:disabled {
  cursor: wait;
  opacity: 0.68;
}

.support-feed-more[hidden] {
  display: none;
}

.support-back {
  display: flex;
  width: fit-content;
  margin: 42px auto 0;
  color: var(--support-green);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.support-back:hover {
  color: var(--support-orange);
}

.support-footer {
  border-top: 1px solid var(--support-line);
  padding: 26px 20px;
  color: #8a918b;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 900px) {
  .support-main {
    padding-top: 26px;
  }

  .support-project {
    grid-template-columns: 1fr;
  }

  .support-intro {
    align-items: center;
    padding: 26px 20px 24px;
    text-align: center;
  }

  .support-title,
  .support-lead {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .support-header-inner,
  .support-main {
    width: min(100% - 28px, 1180px);
  }

  .support-header-inner {
    min-height: 58px;
  }

  .support-logo img {
    height: 22px;
  }

  .support-header-actions {
    gap: 7px;
  }

  .support-languages button {
    min-width: 34px;
    min-height: 34px;
    font-size: 11px;
  }

  .support-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .support-menu {
    top: 58px;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 18px;
  }

  .support-menu a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 248, 239, 0.12);
  }

  .support-main {
    padding-top: 12px;
  }

  .support-project {
    border-radius: 20px;
  }

  .support-intro {
    padding: 20px 16px 19px;
  }

  .support-category {
    margin-bottom: 12px;
    padding: 5px 10px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
  }

  .support-title {
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.5px;
    max-width: 390px;
    margin-bottom: 12px;
  }

  .support-lead {
    font-size: 12.5px;
    line-height: 1.42;
    letter-spacing: -0.1px;
    max-width: 390px;
  }

  .support-participation {
    padding: 18px 14px 19px;
  }

  .support-form {
    gap: 12px;
    margin-top: 0;
  }

  .support-field label,
  .support-country-field legend,
  .support-message-wrapper label {
    color: var(--support-green);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.1px;
  }

  .support-field label {
    margin-bottom: 8px;
  }

  .support-field input {
    height: 46px;
    margin-bottom: 0;
    font-size: 14px;
  }

  .support-country-field legend {
    margin-bottom: 8px;
  }

  .support-countries {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    margin-bottom: 0;
  }

  .support-chip-label {
    min-height: 44px;
    font-size: 11.5px;
    padding: 0 2px;
  }

  .support-message-wrapper {
    gap: 8px;
  }

  .support-field textarea {
    min-height: 64px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.4;
  }

  .support-submit {
    height: 52px;
    margin-bottom: 0;
    font-size: 14px;
  }

  .support-privacy {
    font-size: 9.5px;
    line-height: 1.35;
  }

  .support-feed {
    width: 100%;
    margin: 22px auto 0;
    overflow: hidden;
    border: 1px solid rgba(18, 61, 46, 0.13);
    border-radius: 20px;
    padding: 18px 0 0;
    background: #fffdf8;
    box-shadow: 0 14px 38px rgba(50, 21, 6, 0.07);
  }

  .support-feed-heading {
    gap: 0;
    width: 100%;
    max-width: none;
    padding: 0 14px;
  }

  .support-feed-heading p {
    display: none;
  }

  .support-feed-heading h2 {
    max-width: none;
    margin-bottom: 8px;
    color: var(--support-green);
    font-size: clamp(13.2px, 3.75vw, 15px);
    line-height: 1.2;
    letter-spacing: -0.45px;
    white-space: nowrap;
  }

  .support-feed-total {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 0;
    margin-bottom: 16px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    color: var(--support-orange);
    font-size: 14px;
    letter-spacing: -0.1px;
    box-shadow: none;
  }

  .support-feed-total::before,
  .support-feed-total::after {
    content: '';
    width: 22px;
    height: 1px;
    background: rgba(239, 95, 24, 0.32);
  }

  .support-country-totals {
    width: calc(100% - 28px);
    max-width: none;
    margin-bottom: 14px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .support-country-total {
    height: 30px;
    border-color: rgba(18, 61, 46, 0.14);
    border-radius: 10px;
    background: #fbf8f2;
    font-size: 10.5px;
  }

  .support-country-total strong {
    font-size: 10.5px;
  }

  .support-feed-item {
    gap: 11px;
    padding: 18px 16px;
  }

  .support-feed-list {
    width: 100%;
    max-width: none;
    border: 0;
    border-top: 1px solid rgba(18, 61, 46, 0.1);
    border-radius: 0;
    box-shadow: none;
  }

  .support-feed-avatar {
    width: 38px;
    height: 38px;
  }

}

@media (max-width: 480px) {
  .support-main {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  .support-project {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .support-feed-heading,
  .support-country-totals,
  .support-feed-list {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 769px) {
  .support-title {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.8px;
  }

  .support-feed-heading h2 {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.7px;
  }

  .support-lead {
    font-size: 15px;
  }

  .support-impact {
    font-size: 18px;
  }

  .support-feed-message {
    font-size: 15px;
  }

  .support-feed {
    padding-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .support-field input,
  .support-field textarea,
  .support-country span,
  .support-submit {
    transition: none;
  }

  .support-skeleton-block,
  .support-skeleton-line {
    animation: none;
    background: rgba(18, 61, 46, 0.08);
  }
}
