/* ── Shared section container ── */
.thankyou-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 1rem auto 1.5rem;
  max-width: 800px;
}

/* ── Sponsors ── */
.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-card a {
  display: block;
  line-height: 0;
}

.sponsor-logo {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  background-color: #ffffff;
  padding: 0.6rem;
  border-radius: 12px;
  box-sizing: border-box;
}

/* Individual sponsors (no logo) */
.individual-sponsors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin: 0.75rem auto 0;
  max-width: 800px;
}

.individual-sponsor {
  color: #f5c842;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

/* ── Vendors ── */
.vendor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 220px;
}

.vendor-logo {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: contain;
  background-color: #ffffff;
  padding: 0.6rem;
  border-radius: 12px;
}

.vendor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.vendor-name {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
}

.vendor-type {
  color: #f5c842;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vendor-contact {
  color: #cccccc;
  font-size: 0.9rem;
}

.vendor-link {
  color: #7eb3ff;
  font-size: 0.9rem;
  text-decoration: underline;
}

.vendor-link:hover {
  color: #f5c842;
}

/* ── Churches ── */
.church-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333333;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 220px;
}

.church-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.church-name {
  color: #7eb3ff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: underline;
}

.church-name.no-link {
  color: #f5c842;
  text-decoration: none;
}

.church-name:hover {
  color: #f5c842;
}

.church-note {
  color: #cccccc;
  font-size: 0.9rem;
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .thankyou-section {
    flex-direction: column;
    align-items: center;
  }

  .church-card {
    width: 100%;
    max-width: 100%;
  }
}
