*,
*::before,
*::after {
  box-sizing: border-box;
}

.registry-section {
  background-color: #ffffff;
  color: #ffffff;
  padding: 60px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.registry-section__hero {
  max-width: 720px;
  margin-bottom: 40px;
}

.registry-section__heading {
  font-size: 2.5rem;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.registry-section__subheading {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 24px;
}

.registry-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid #fdfdfd;
  background: transparent;
  color: #fdfdfd;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease,
    transform 0.1s ease;
}

.registry-section__cta:hover {
  background-color: #fdfdfd;
  color: #153c36;
  transform: translateY(-1px);
}

.registry-section__cta-arrow {
  font-size: 1.1rem;
}

.registry-section__cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
}

.registry-card {
  background-color: #ffffff;
  width: 340px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  text-align: left;
  color: #222222;
}

.registry-card__image-wrapper {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.registry-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.registry-card__body {
  padding: 22px 24px 20px;
}

.registry-card__title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 600;
}

.registry-card__description {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #555555;
  margin-bottom: 18px;
  text-align: center;
}

.registry-card__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  border-radius: 999px;
  border: 1.5px solid #111111;
  background-color: #ffffff;
  color: #111111;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease,
    transform 0.1s ease;
}

.registry-card__button:hover {
  background-color: #111111;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .registry-section__heading {
    font-size: 2rem;
  }

  .registry-card {
    width: 100%;
    max-width: 420px;
  }
}
