ul {
  padding: 0;
  margin: 0;
}

.hero {
  margin-bottom: 30px;
}

.hero > h1 {
  width: 100%;
  font-family: "Cormorant SC", serif;
  font-weight: 600;
  margin-bottom: 15px;
}

.wedding-date-txt {
  font-size: 0.95rem;
}

.content-wrapper-ctr {
  display: flex;
  justify-content: center;
  padding-inline: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 550px;
}

.rsvp-group {
  display: inline-flex;
  gap: 0.5rem;
}

.rsvp-group input[type="radio"] {
  display: none;
}

.rsvp-btn {
  padding: 0.5rem 1rem;
  border: 2px solid #ccc;
  background: white;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.rsvp-btn:hover {
  border-color: #888;
}

.rsvp-group input[type="radio"]:checked + .rsvp-btn {
  background: #222;
  color: white;
  border-color: #222;
}

.display-name-wrapper {
  width: 100%;
}

.display-name {
  padding-right: 5px;
  font-size: 0.85rem;
}

.invite {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

.optional-email-ctr {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-bottom: 15px;
}

.optional-email-ctr > input {
  padding-top: 10px;
  padding-bottom: 10px;
}

.submit-btn {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 15px;
  color: white;
  background: black;
}
