hero_section_dt {
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.hero_section_dt .hero_section_dt__blob-top-left {
  position: absolute;
  top: -5rem;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  opacity: 0.4;
  filter: blur(48px);
  background: oklch(0.82 0.18 85 / 0.4);
  pointer-events: none;
}

.hero_section_dt .hero_section_dt__blob-top-right {
  position: absolute;
  top: 10rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 9999px;
  opacity: 0.5;
  filter: blur(48px);
  background: oklch(0.7 0.13 150 / 0.4);
  pointer-events: none;
}

/* Inner grid container */
.hero_section_dt .hero_section_dt__inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero_section_dt .hero_section_dt__inner {
    grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
  }
}

/* ---- LEFT COLUMN ---- */
.hero_section_dt .hero_section_dt__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: #f0fdf4;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #16a34a;
  margin-bottom: 1.25rem;
}

.hero_section_dt .hero_section_dt__badge svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.hero_section_dt .hero_section_dt__heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: #111827;
}

.hero_section_dt .hero_section_dt__heading-highlight {
  color: #16a34a;
  position: relative;
  display: inline-block;
}

.hero_section_dt .hero_section_dt__heading-highlight svg {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

.hero_section_dt .hero_section_dt__desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.75;
  max-width: 28rem;
}

.hero_section_dt .hero_section_dt__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero_section_dt .hero_section_dt__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: #16a34a;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  transition: opacity 0.2s;
  box-shadow: 0 4px 14px 0 rgba(22, 163, 74, 0.35);
}

.hero_section_dt .hero_section_dt__btn-primary:hover {
  opacity: 0.9;
}

.hero_section_dt .hero_section_dt__btn-primary svg {
  width: 1rem;
  height: 1rem;
}

.hero_section_dt .hero_section_dt__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  transition: background 0.2s;
}

.hero_section_dt .hero_section_dt__btn-secondary:hover {
  background: #f9fafb;
}

/* ---- RIGHT COLUMN ---- */
.hero_section_dt .hero_section_dt__visual {
  position: relative;
}

.hero_section_dt .hero_section_dt__visual-glow {
  position: absolute;
  inset: 0;
  background: rgba(134, 239, 172, 0.3);
  filter: blur(48px);
  border-radius: 9999px;
  pointer-events: none;
}

.hero_section_dt .hero_section_dt__visual-img {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
}

.hero_section_dt .hero_section_dt__visual-img svg {
  width: 100%;
  height: 100%;
}

/* Floating stat cards */
.hero_section_dt .hero_section_dt__card {
  position: absolute;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #e5e7eb;
}

.hero_section_dt .hero_section_dt__card--top {
  top: 1.5rem;
  left: -0.5rem;
}


.hero_section_dt .hero_section_dt__card--bottom {
  bottom: 1rem;
  right: -0.5rem;
}

.hero_section_dt .hero_section_dt__card-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(134, 239, 172, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero_section_dt .hero_section_dt__card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #16a34a;
  stroke: #16a34a;
}

.hero_section_dt .hero_section_dt__card-text {
  font-size: 0.75rem;
}

.hero_section_dt .hero_section_dt__card-title {
  font-weight: 600;
  color: #111827;
}

.hero_section_dt .hero_section_dt__card-sub {
  color: #6b7280;
}

/* ===== SECTION: donate_impact ===== */

.donate_impact {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%);
}

/* --- Header --- */
.donate_impact .di-header {
  text-align: center;
  max-width: 672px;
  margin: 0 auto 48px auto;
}

.donate_impact .di-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 12px;
}

.donate_impact .di-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
  line-height: 1.25;
}

.donate_impact .di-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* --- Grid --- */
.donate_impact .di-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .donate_impact .di-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .donate_impact .di-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Card --- */
.donate_impact .di-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.donate_impact .di-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.donate_impact .di-card:hover .di-icon {
  transform: scale(1.1);
}

/* --- Icon --- */
.donate_impact .di-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.2s ease;
}

.donate_impact .di-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.donate_impact .di-icon--green {
  background: oklch(0.78 0.15 145);
}

.donate_impact .di-icon--yellow {
  background: oklch(0.82 0.18 85);
}

.donate_impact .di-icon--teal {
  background: oklch(0.7 0.14 200);
}

.donate_impact .di-icon--orange {
  background: oklch(0.72 0.16 25);
}

/* --- Card text --- */
.donate_impact .di-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px 0;
}

.donate_impact .di-card-desc {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.65;
}

/* ── donate_how section scope ── */

.donate_how {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

/* ── Header ── */
.donate_how .donate_how__header {
  text-align: center;
  margin-bottom: 3rem;
}

.donate_how .donate_how__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 0.75rem;
}

.donate_how .donate_how__title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

@media (min-width: 768px) {
  .donate_how .donate_how__title {
    font-size: 2.25rem;
  }
}

.donate_how .donate_how__subtitle {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Grid ── */
.donate_how .donate_how__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .donate_how .donate_how__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Card base ── */
.donate_how .donate_how__card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ── Card: gradient variants ── */
.donate_how .donate_how__card--soft {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 1.5rem;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.donate_how .donate_how__card--hero {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 1.5rem;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* ── Card header row ── */
.donate_how .donate_how__card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.donate_how .donate_how__icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.donate_how .donate_how__card--soft .donate_how__icon-wrap {
  background: #ffffff;
}

.donate_how .donate_how__card--hero .donate_how__icon-wrap {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

.donate_how .donate_how__icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #16a34a;
  stroke: #16a34a;
}

.donate_how .donate_how__card--hero .donate_how__icon-wrap svg {
  color: #ffffff;
  stroke: #ffffff;
}

.donate_how .donate_how__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.donate_how .donate_how__card--hero .donate_how__card-title {
  color: #ffffff;
}

.donate_how .donate_how__card-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

.donate_how .donate_how__card--hero .donate_how__card-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Bank transfer DL ── */
.donate_how .donate_how__dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

.donate_how .donate_how__dl-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.donate_how .donate_how__dl-row:last-child {
  border-bottom: none;
}

.donate_how .donate_how__dl-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin-bottom: 0.125rem;
}

.donate_how .donate_how__dl-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  word-break: break-word;
}

.donate_how .donate_how__copy-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  margin-top: 0.25rem;
  cursor: pointer;
  color: #9ca3af;
  transition: color 0.15s;
  line-height: 0;
  margin: 0;
}

.donate_how .donate_how__copy-btn:hover {
  color: #16a34a;
}

.donate_how .donate_how__copy-btn svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
}

/* ── VietQR placeholder ── */
.donate_how .donate_how__qr-box {
  background: #ffffff;
  border: 2px dashed rgba(22, 163, 74, 0.3);
  border-radius: 1rem;
  aspect-ratio: 1 / 1;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #9ca3af;
}

.donate_how .donate_how__qr-box svg {
  width: 3rem;
  height: 3rem;
  opacity: 0.4;
  stroke: currentColor;
}

.donate_how .donate_how__qr-label {
  font-size: 0.875rem;
}

.donate_how .donate_how__qr-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-align: center;
  color: #6b7280;
}

/* ── PayPal card list ── */
.donate_how .donate_how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.donate_how .donate_how__step {
  display: flex;
  gap: 0.75rem;
}

.donate_how .donate_how__step svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #16a34a;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.donate_how .donate_how__step-text {
  color: rgba(17, 24, 39, 0.8);
}

.donate_how .donate_how__paypal-btn {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f59e0b;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
  transition: opacity 0.15s;
  text-decoration: none;
}

.donate_how .donate_how__paypal-btn:hover {
  opacity: 0.9;
}

.donate_how .donate_how__paypal-btn svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
}

.donate_how .donate_how__card-brands {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.donate_how .donate_how__brand-badge {
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-weight: 500;
  color: #6b7280;
}

/* ── Contact card ── */
.donate_how .donate_how__contact-body {
  position: relative;
  z-index: 1;
}

.donate_how .donate_how__contact-text {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 1.625;
  color: #ffffff;
  margin: 0;
}

.donate_how .donate_how__contact-link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #16a34a;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.donate_how .donate_how__contact-link:hover {
  opacity: 0.9;
}

.donate_how .donate_how__contact-link svg {
  width: 1rem;
  height: 1rem;
  stroke: #16a34a;
}

/* ── Decorative leaf SVGs ── */
.donate_how .donate_how__deco-left {
  display: none;
  position: absolute;
  left: -2.5rem;
  bottom: 2.5rem;
  width: 8rem;
  height: 12rem;
  opacity: 0.5;
}

.donate_how .donate_how__deco-right {
  display: none;
  position: absolute;
  right: -2.5rem;
  top: 2.5rem;
  width: 8rem;
  height: 12rem;
  opacity: 0.5;
  transform: scaleX(-1);
}

@media (min-width: 1024px) {

  .donate_how .donate_how__deco-left,
  .donate_how .donate_how__deco-right {
    display: block;
  }
}

/* ── Contact card leaf deco ── */
.donate_how .donate_how__card-deco {
  position: absolute;
  right: -1.5rem;
  bottom: -2rem;
  width: 11rem;
  height: 15rem;
  opacity: 0.4;
  pointer-events: none;
}

/* ===== .loi_mo_ta section scoped styles ===== */

.loi_mo_ta {
  padding-top: 64px;
  padding-bottom: 64px;
}

.loi_mo_ta .lmd-container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.loi_mo_ta .lmd-card {
  border-radius: 24px;
  padding: 48px 56px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #118d46 0%, #118d46 40%, #118d46 100%);
}

@media (max-width: 768px) {
  .loi_mo_ta .lmd-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .loi_mo_ta .lmd-photo-stack {
    display: none;
  }
}

/* SVG decorations */
.loi_mo_ta .lmd-deco-left {
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 176px;
  height: 240px;
  opacity: 0.3;
  pointer-events: none;
}

.loi_mo_ta .lmd-deco-right {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 176px;
  height: 240px;
  opacity: 0.3;
  pointer-events: none;
  transform: scaleX(-1);
}

/* Quote content */
.loi_mo_ta .lmd-content {
  position: relative;
}

.loi_mo_ta .lmd-quote-icon {
  width: 40px;
  height: 40px;
  opacity: 0.6;
  margin-bottom: 16px;
}

.loi_mo_ta .lmd-quote-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

@media (min-width: 768px) {
  .loi_mo_ta .lmd-quote-text {
    font-size: 1.5rem;
  }
}

.loi_mo_ta .lmd-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.loi_mo_ta .lmd-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.loi_mo_ta .lmd-author-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.loi_mo_ta .lmd-author-title {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Photo stack */
.loi_mo_ta .lmd-photo-stack {
  position: relative;
  width: 240px;
  height: 200px;
}

.loi_mo_ta .lmd-photo-card {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 8px;
  width: 130px;
  height: 150px;
}

.loi_mo_ta .lmd-photo-card:nth-child(1) {
  left: 0;
  top: 0;
  transform: rotate(-6deg);
}

.loi_mo_ta .lmd-photo-card:nth-child(2) {
  left: 40px;
  top: 10px;
  transform: rotate(0deg);
}

.loi_mo_ta .lmd-photo-card:nth-child(3) {
  left: 80px;
  top: 20px;
  transform: rotate(6deg);
}

.loi_mo_ta .lmd-photo-inner {
  width: 100%;
  height: 110px;
  border-radius: 4px;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.loi_mo_ta .lmd-photo-inner svg {
  width: 24px;
  height: 24px;
  opacity: 0.4;
}

/* ===== .faq_donate ===== */
.faq_donate {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.faq_donate__inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Header */
.faq_donate__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq_donate__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 0.75rem;
}

.faq_donate__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

@media (min-width: 768px) {
  .faq_donate__title {
    font-size: 2.25rem;
  }
}

/* FAQ list */
.faq_donate__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* FAQ item */
.faq_donate__item {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s;
}

.faq_donate__item--active {
  border-color: #16a34a;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.12);
}

/* FAQ button */
.faq_donate__btn {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #ffffff;
  color: #111827;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin: 0;
}

.faq_donate__btn:hover {
  background: #f3f4f6;
}

.faq_donate__item--active .faq_donate__btn {
  background: #16a34a;
  color: #ffffff;
  margin: 0;
}

.faq_donate__btn-text {
  font-weight: 500;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .faq_donate__btn-text {
    font-size: 1rem;
  }
}

/* Chevron icon */
.faq_donate__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq_donate__item--active .faq_donate__icon {
  transform: rotate(180deg);
}

/* FAQ body */
.faq_donate__body {
  display: none;
  padding: 1.25rem;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.75;
  background: #ffffff;
}

.faq_donate__item--active .faq_donate__body {
  display: block;
}

/* Decorative SVG leaves */
.faq_donate__leaf-left,
.faq_donate__leaf-right {
  display: none;
  position: absolute;
  width: 8rem;
  height: 12rem;
  opacity: 0.5;
}

@media (min-width: 1024px) {

  .faq_donate__leaf-left,
  .faq_donate__leaf-right {
    display: block;
  }
}

.faq_donate__leaf-left {
  left: -1rem;
  bottom: 0;
}

.faq_donate__leaf-right {
  right: -1rem;
  top: 2.5rem;
  transform: scaleX(-1);
}

/* ===== #donate_loi_cam_on ===== */
#donate_loi_cam_on {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#donate_loi_cam_on .dlc-card {
  border-radius: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  #donate_loi_cam_on .dlc-card {
    padding: 3.5rem;
  }
}

#donate_loi_cam_on .dlc-glow {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  opacity: 0.3;
  filter: blur(48px);
  background: oklch(0.82 0.18 85 / 0.6);
  pointer-events: none;
}

#donate_loi_cam_on .dlc-content {
  position: relative;
}

#donate_loi_cam_on .dlc-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #16a34a;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  display: block;
}

#donate_loi_cam_on .dlc-heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

@media (min-width: 768px) {
  #donate_loi_cam_on .dlc-heading {
    font-size: 2.25rem;
  }
}

#donate_loi_cam_on .dlc-desc {
  margin-top: 1rem;
  color: #6b7280;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

#donate_loi_cam_on .dlc-btn {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: #16a34a;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  box-shadow: 0 4px 14px 0 rgba(22, 163, 74, 0.35);
}

#donate_loi_cam_on .dlc-btn:hover {
  opacity: 0.9;
}

#donate_loi_cam_on .dlc-btn-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* WRAP */

.kv_faq_wrap {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.kv_faq_inner {
  position: relative;
  max-width: 900px;
  margin: auto;
  z-index: 2;
}

/* HEADER */

.kv_faq_header {
  text-align: center;
  margin-bottom: 50px;
}

.kv_faq_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #edf7ec;
  color: #3c7d3c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.kv_faq_title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* FAQ */

.kv_faq_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kv_faq_item {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #ececec;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  transition: .3s ease;
}

.kv_faq_item:hover {
  transform: translateY(-2px);
}

.kv_faq_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 30px;
  cursor: pointer;
  background-color: #118d46;
}

.kv_faq_question {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
}

.kv_faq_icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kv_faq_icon svg {
  transition: .3s ease;
}

.kv_faq_item.is-open .kv_faq_icon svg {
  transform: rotate(180deg);
}

/* BODY */

.kv_faq_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.kv_faq_item.is-open .kv_faq_body {
  max-height: 500px;
}

.kv_faq_content {
  padding: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* LEAF */

.kv_faq_leaf {
  position: absolute;
  width: 180px;
  pointer-events: none;
  opacity: .7;
}

.kv_faq_leaf_left {
  left: -60px;
  bottom: 0;
}

.kv_faq_leaf_right {
  right: -60px;
  top: 40px;
  transform: rotateY(180deg);
}

/* MOBILE */

@media(max-width:768px) {

  .kv_faq_wrap {
    padding: 70px 16px;
  }

  .kv_faq_title {
    font-size: 34px;
  }

  .kv_faq_btn {
    padding: 22px;
  }

  .kv_faq_question {
    font-size: 18px;
  }

  .kv_faq_content {
    padding: 0 22px 24px;
    font-size: 15px;
  }

  .kv_faq_leaf {
    display: none;
  }

}