.fundraising-page {
  background: #f6f6f6;
  color: #111;
  min-height: 100vh;
}

.fundraising-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 18px 80px;
}

.fundraising-page a {
  color: inherit;
  text-decoration: none;
}

.fundraising-hero {
  background: #fff;
  color: #111;
  border-radius: 28px;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
  border: 1px solid #e9e9e9;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.055);
  margin-bottom: 34px;
  position: relative;
  overflow: hidden;
}

.fundraising-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 100%;
  background: #d4a017;
}

.fundraising-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
  max-width: 760px;
}

.fundraising-hero p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}

.fundraising-hero-panel {
  background: #101010;
  color: #fff;
  padding: 26px;
  border-radius: 22px;
}

.fundraising-hero-panel span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.fundraising-hero-panel strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
  color: #d4a017;
}

.fundraising-section {
  margin-top: 38px;
}

.fundraising-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}

.fundraising-section-head h2 {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.fundraising-section-head p {
  color: #666;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.6;
}

.fundraising-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.045);
}

.fundraising-card h3 {
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.fundraising-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

.fundraising-client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fundraising-client-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 26px;
  padding: 22px;
  min-height: 280px;
  display: grid;
  align-content: space-between;
  transition: 0.22s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.045);
}

.fundraising-client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.45);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.fundraising-client-logo {
  width: 86px;
  height: 86px;
  border-radius: 22px;
  background: #f4f4f4;
  border: 1px solid #e7e7e7;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.fundraising-client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  background: #fff;
}

.fundraising-generic-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #101010;
  color: #d4a017;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
}

.fundraising-client-card h3 {
  font-size: 23px;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
}

.fundraising-client-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.fundraising-client-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #efefef;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 900;
}

.fundraising-client-meta span:first-child {
  color: #111;
}

.fundraising-client-meta span:last-child {
  color: #777;
}

.fundraising-empty-state {
  background: #fff;
  border: 1px dashed #d6d6d6;
  border-radius: 24px;
  padding: 34px;
  text-align: center;
  color: #666;
}

.fundraising-empty-state h3 {
  color: #111;
  margin-bottom: 8px;
  font-size: 22px;
}

.fundraising-organizer-hero {
  background: #fff;
  color: #111;
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 26px;
  align-items: center;
  border: 1px solid #e9e9e9;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.055);
  margin-bottom: 34px;
}

.fundraising-organizer-image {
  width: 150px;
  height: 150px;
  border-radius: 28px;
  background: #f4f4f4;
  border: 1px solid #e7e7e7;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.fundraising-organizer-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: #fff;
}

.fundraising-organizer-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
}

.fundraising-organizer-hero p {
  color: #666;
  max-width: 720px;
  line-height: 1.7;
}

.fundraising-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.fundraising-stat-box {
  background: #fafafa;
  color: #111;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #e8e8e8;
}

.fundraising-stat-box strong {
  display: block;
  font-size: 26px;
  margin-bottom: 4px;
}

.fundraising-stat-box span {
  color: #666;
  font-size: 13px;
  font-weight: 800;
}

.fundraising-campaign-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 380px;
  gap: 24px;
}

.fundraising-story-card,
.fundraising-donate-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.fundraising-story-card h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.fundraising-story-card p {
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
}

.fundraising-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #777;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.fundraising-progress {
  height: 12px;
  background: #f1f1f1;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 9px;
}

.fundraising-progress span {
  display: block;
  height: 100%;
  background: #d4a017;
  border-radius: 999px;
}

.fundraising-money-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 900;
}

.fundraising-donate-card {
  align-self: start;
  position: sticky;
  top: 20px;
}

.fundraising-donate-card h2 {
  font-size: 34px;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.fundraising-amount-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin: 18px 0;
}

.fundraising-amount-grid button {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 12px;
  font-weight: 900;
  cursor: pointer;
}

.fundraising-amount-grid button:hover {
  border-color: #d4a017;
  background: #fff8df;
}

.fundraising-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: #101010;
  color: #fff;
  padding: 10px 16px;
  font-weight: 900;
  text-decoration: none;
  border-radius: 14px;
  border: none;
}

.fundraising-full-btn {
  width: 100%;
}

.fundraising-back-link {
  display: inline-flex;
  margin-bottom: 18px;
  font-weight: 900;
  color: #111;
}

.fundraising-campaign-image {
  height: 340px;
  margin-bottom: 22px;
  background: #f2f2f2;
  border-radius: 24px;
  overflow: hidden;
}

.fundraising-campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fundraising-related-list {
  display: grid;
  gap: 12px;
}

.fundraising-related-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 6px;
}

.fundraising-related-card h3 {
  font-size: 18px;
  letter-spacing: -0.025em;
}

.fundraising-related-card p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 900px) {
  .fundraising-hero,
  .fundraising-organizer-hero,
  .fundraising-campaign-layout,
  .fundraising-stats-grid {
    grid-template-columns: 1fr;
  }

  .fundraising-client-grid {
    grid-template-columns: 1fr;
  }

  .fundraising-section-head {
    display: grid;
  }

  .fundraising-hero,
  .fundraising-organizer-hero {
    padding: 26px;
  }

  .fundraising-organizer-image {
    width: 120px;
    height: 120px;
  }

  .fundraising-donate-card {
    position: static;
  }
}

.fundraising-organizer-cover {
  min-height: 410px;
  background-color: #101010;
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  padding: 38px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.fundraising-organizer-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 160, 23, 0.28), transparent 34%);
  pointer-events: none;
}

.fundraising-organizer-cover-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  width: 100%;
}

.fundraising-organizer-logo {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  background: #fff;
  border: 4px solid rgba(255, 255, 255, 0.86);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.fundraising-organizer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: #fff;
}

.fundraising-profile-label {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.fundraising-organizer-cover h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin-bottom: 14px;
  max-width: 820px;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.fundraising-organizer-cover p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 760px;
  line-height: 1.7;
  font-size: 16px;
}

.fundraising-organizer-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.fundraising-organizer-summary div {
  min-width: 150px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 13px 15px;
}

.fundraising-organizer-summary strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 5px;
}

.fundraising-organizer-summary span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.fundraising-profile-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 26px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.fundraising-profile-card h3 {
  font-size: 26px;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.fundraising-profile-card p {
  color: #555;
  line-height: 1.7;
}

.fundraising-profile-list {
  display: grid;
  gap: 12px;
}

.fundraising-profile-list div {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 13px;
}

.fundraising-profile-list span {
  display: block;
  color: #777;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 4px;
}

.fundraising-profile-list strong {
  color: #111;
  font-size: 14px;
}

.fundraising-campaign-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fundraising-poster-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.045);
  transition: 0.22s ease;
}

.fundraising-poster-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.fundraising-poster-card.completed {
  opacity: 0.82;
}

.fundraising-poster-image {
  aspect-ratio: 3 / 4;
  background: #f1f1f1;
  overflow: hidden;
}

.fundraising-poster-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fundraising-poster-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #101010, #333);
  color: #d4a017;
  display: grid;
  place-items: center;
  font-size: 56px;
  font-weight: 900;
}

.fundraising-poster-body {
  padding: 16px;
}

.fundraising-poster-body > span {
  display: inline-flex;
  color: #777;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 9px;
}

.fundraising-poster-body h3 {
  font-size: 19px;
  line-height: 1.14;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.fundraising-percent-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 9px;
}

.fundraising-percent-row strong {
  color: #111;
  font-size: 16px;
}

.fundraising-percent-row span {
  color: #777;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .fundraising-campaign-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .fundraising-organizer-cover {
    min-height: auto;
    padding: 26px;
  }

  .fundraising-organizer-cover-content,
  .fundraising-profile-card {
    grid-template-columns: 1fr;
  }

  .fundraising-organizer-logo {
    width: 92px;
    height: 92px;
  }

  .fundraising-campaign-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .fundraising-campaign-card-grid {
    grid-template-columns: 1fr;
  }
}

.fundraising-organizer-hero-dark {
  background: #101010;
  color: #fff;
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 38px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
}

.fundraising-organizer-hero-dark::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  background: rgba(212, 160, 23, 0.12);
  border-radius: 999px;
}

.fundraising-organizer-hero-dark > * {
  position: relative;
  z-index: 2;
}

.fundraising-organizer-logo-large {
  width: 160px;
  height: 160px;
  border-radius: 32px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.fundraising-organizer-logo-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: #fff;
}

.fundraising-generic-icon-large {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #101010;
  display: grid;
  place-items: center;
  font-size: 42px;
}

.fundraising-hero-kicker {
  display: inline-flex;
  align-items: center;
  color: #d4a017;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.fundraising-organizer-profile-copy h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.065em;
  margin-bottom: 14px;
  color: #fff;
}

.fundraising-organizer-profile-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 760px;
}

.fundraising-organizer-brief {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.fundraising-organizer-brief div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 13px 15px;
  min-width: 160px;
}

.fundraising-organizer-brief strong {
  display: block;
  color: #fff;
  font-size: 17px;
  margin-bottom: 3px;
  word-break: break-word;
}

.fundraising-organizer-brief span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fundraising-campaign-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fundraising-campaign-tile {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.045);
  transition: 0.22s ease;
}

.fundraising-campaign-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.fundraising-campaign-tile.completed {
  opacity: 0.82;
}

.fundraising-campaign-poster {
  aspect-ratio: 4 / 4;
  background: #f3f3f3;
  overflow: hidden;
}

.fundraising-campaign-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fundraising-poster-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(212, 160, 23, 0.12), rgba(16, 16, 16, 0.08)),
    #f6f6f6;
}

.fundraising-poster-placeholder span {
  background: #101010;
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fundraising-campaign-tile-body {
  padding: 18px;
}

.fundraising-campaign-tile h3 {
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: #111;
}

@media (max-width: 1000px) {
  .fundraising-campaign-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .fundraising-organizer-hero-dark {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .fundraising-organizer-logo-large {
    width: 120px;
    height: 120px;
    border-radius: 24px;
  }

  .fundraising-campaign-card-grid {
    grid-template-columns: 1fr;
  }
}

.fundraising-campaign-layout {
  align-items: start;
}

.fundraising-campaign-landscape {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f2f2f2;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 26px;
}

.fundraising-campaign-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fundraising-landscape-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(212, 160, 23, 0.12), rgba(16, 16, 16, 0.08)),
    #f6f6f6;
}

.fundraising-landscape-placeholder span {
  background: #101010;
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fundraising-campaign-section {
  margin-top: 24px;
}

.fundraising-campaign-section h2 {
  font-size: 22px;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
  color: #111;
}

.fundraising-organizer-strip {
  margin-top: 28px;
  background: #fafafa;
  border: 1px solid #e9e9e9;
  border-radius: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.fundraising-organizer-mini-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e7e7e7;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.fundraising-organizer-mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.fundraising-organizer-strip span {
  color: #777;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fundraising-organizer-strip h3 {
  color: #111;
  font-size: 18px;
  margin: 2px 0 3px;
}

.fundraising-organizer-strip p {
  color: #666;
  font-size: 13px;
  margin: 0;
}

.fundraising-section-head.compact {
  margin-bottom: 14px;
}

.fundraising-donate-summary {
  margin-bottom: 22px;
}

.fundraising-donate-summary > span {
  display: inline-flex;
  color: #777;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fundraising-donate-summary h2 {
  font-size: 52px;
  color: #111;
  letter-spacing: -0.065em;
  margin-bottom: 4px;
}

.fundraising-donate-summary p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 14px;
}

.fundraising-donate-summary p strong {
  color: #111;
}

.fundraising-checkout-form {
  display: grid;
  gap: 14px;
}

.fundraising-form-head {
  border-top: 1px solid #eee;
  padding-top: 18px;
}

.fundraising-form-head h3 {
  font-size: 21px;
  letter-spacing: -0.035em;
  margin-bottom: 5px;
}

.fundraising-form-head p {
  color: #777;
  font-size: 13px;
  line-height: 1.5;
}

.fundraising-field {
  display: grid;
  gap: 7px;
}

.fundraising-field label {
  color: #333;
  font-size: 13px;
  font-weight: 900;
}

.fundraising-field input,
.fundraising-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 0 12px;
  outline: none;
  background: #fff;
}

.fundraising-field input:focus,
.fundraising-field select:focus {
  border-color: #d4a017;
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
}

.fundraising-fee-box {
  background: #fafafa;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 9px;
}

.fundraising-fee-box div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #555;
  font-size: 14px;
}

.fundraising-fee-box strong {
  color: #111;
}

.fundraising-fee-box .total {
  border-top: 1px solid #e2e2e2;
  padding-top: 10px;
  font-weight: 900;
}

.fundraising-fee-box .total strong {
  font-size: 18px;
}

@media (max-width: 720px) {
  .fundraising-organizer-strip {
    grid-template-columns: 1fr;
  }

  .fundraising-organizer-mini-logo {
    width: 58px;
    height: 58px;
  }
}

.fundraising-field label span.required-star {
  color: #dc2626;
  font-size: inherit;
  font-weight: 900;
}

.fundraising-transfer-notice {
  background: #f7f7f7;
  color: #666;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
}

.fundraising-transfer-notice strong {
  color: #111;
}
