.wishas {
  width: 100%;
  min-height: 100vh;
  padding: 4rem 8rem;
  background-color: var(--ivory);
  position: relative;
  text-align: center;
}

.wishas div:nth-of-type(1) h2,
.wishas div:nth-of-type(2) h2 {
  font-size: var(--fontSize-heading-base);
  font-family: var(--sacramento);
  font-weight: 400;
  color: var(--maroon-700);
}

.wishas div:nth-of-type(1) > p {
  font-size: 1rem;
  line-height: 1.75rem;
}

.wishas div:nth-of-type(1) > div {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.wishas div:nth-of-type(1) > div figure {
  width: 24rem;
  text-align: center;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  background: var(--paper);
  border: var(--gold-border);
  box-shadow: var(--shadow-md);
}

.wishas div:nth-of-type(1) > div figure img {
  width: 10rem;
  height: 3rem;
  object-fit: contain;
  margin-bottom: 1rem;
}

.wishas div:nth-of-type(1) > div figure figcaption {
  line-height: 1.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.wishas div:nth-of-type(1) > div figure button {
  padding: 0.45rem 1.2rem;
  border: 1px solid var(--maroon-700);
  background-color: transparent;
  color: var(--maroon-700);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition-small);
}

.wishas div:nth-of-type(1) > div figure button:hover {
  background-color: var(--maroon-700);
  color: var(--ivory);
}

/* form section */
.wishas div:nth-of-type(2) {
  margin-top: 2rem;
  background: var(--paper);
  /* border: var(--gold-border); */
  box-shadow: var(--shadow-md);
  border-radius: 14px;
  padding: 2rem 4rem 4rem;
}

.wishas div:nth-of-type(2) > form {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}

.wishas div:nth-of-type(2) > form label {
  display: block;
  margin-top: 1.4rem;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--maroon-700);
}

.wishas div:nth-of-type(2) > form input,
.wishas div:nth-of-type(2) > form select,
.wishas div:nth-of-type(2) > form textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: var(--gold-border);
  background: var(--ivory);
  font-family: var(--sans);
  transition: var(--transition-small);
}

.wishas div:nth-of-type(2) > form input:focus,
.wishas div:nth-of-type(2) > form select:focus,
.wishas div:nth-of-type(2) > form textarea:focus {
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(169, 132, 47, 0.12);
}

.wishas div:nth-of-type(2) > form textarea {
  min-height: 6rem;
}

.wishas div:nth-of-type(2) > form button {
  width: 100%;
  color: var(--ivory);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--maroon-700);
  padding: 0.75rem 0;
  border-radius: 40px;
  margin-top: 1.2rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-small);
}

.wishas div:nth-of-type(2) > form button:hover {
  background: var(--maroon-800);
}

/* comment list section — NO border, just shadow + enough padding */
.wishas div:nth-of-type(3) {
  margin-top: 2rem;
  background: var(--paper);
  box-shadow: var(--shadow-md);
  border-radius: 14px;
  padding: 2.5rem 3rem;
}

.wishas div:nth-of-type(3) > p:nth-of-type(1) {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--gold-700);
  margin-bottom: 0.5rem;
}

.wishas div:nth-of-type(3) hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-400),
    transparent
  );
}

.wishas div:nth-of-type(3) ul {
  margin-top: 1.4rem;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 1rem;
  min-height: 26rem;
  max-height: 30rem;
  overflow-y: hidden;
}

.wishas div:nth-of-type(3) ul li {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 1rem;
}

.wishas div:nth-of-type(3) ul li div:nth-of-type(1) {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.wishas div:nth-of-type(3) ul li div:nth-of-type(2) {
  margin: 0.3rem 0 0;
  padding: 0;
  text-align: start;
  box-shadow: none;
}

.wishas div:nth-of-type(3) ul li div:nth-of-type(2) h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--maroon-700);
}

.wishas div:nth-of-type(3) ul li div:nth-of-type(2) p:nth-of-type(1) {
  font-size: 0.6rem;
  font-weight: 300;
  line-height: 1rem;
  color: var(--gold-700);
}

.wishas div:nth-of-type(3) ul li div:nth-of-type(2) p:nth-of-type(2) {
  margin-top: 0.4rem;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.4rem;
}

.wishas div:nth-of-type(3) .button-grup {
  margin: 1rem auto 0;
  border: 1px solid var(--gold-400);
  border-radius: 4px;
  background-color: var(--paper);
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishas div:nth-of-type(3) .button-grup > span {
  background: var(--maroon-700);
  color: var(--ivory);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.wishas div:nth-of-type(3) .button-grup button {
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  color: var(--maroon-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  transition: var(--transition-small);
}

.wishas div:nth-of-type(3) .button-grup button:hover {
  color: var(--gold-700);
}

.wishas svg:nth-of-type(1) {
  position: absolute;
  z-index: -10;
  top: -12rem;
  left: 0;
  right: 0;
}

.wishas svg:nth-of-type(2) {
  position: absolute;
  z-index: -10;
  left: 0;
  right: 0;
  bottom: -15rem;
}
