/* ABOUT PREVIEW */
.about-preview {
  background-color: #ffffff;
  border-radius: 16px;
  margin-top: 18px;
  padding: 54px 0;
}

/* Image styling */
.about-image {
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(49, 58, 68, 0.12);
  max-height: 340px;
  object-fit: cover;
  width: 100%;
}

/* Text spacing */
.about-preview p {
  margin-bottom: 12px;
}

.section-kicker {
  color: #6f8500;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  color: #313a44;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 18px;
}

.section-secondary-btn {
  border: 1px solid rgba(49, 58, 68, 0.35);
  border-radius: 999px;
  color: #313a44;
  font-weight: 750;
  padding: 11px 22px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-primary-btn {
  background-color: #cbeb00;
  border-radius: 999px;
  color: #313a44;
  font-weight: 750;
  padding: 11px 22px;
}

.section-primary-btn:hover {
  background-color: #b5d800;
  color: #313a44;
  transform: translateY(-1px);
}

.section-secondary-btn:hover {
  background-color: #313a44;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .about-preview {
    border-radius: 12px;
    padding: 38px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-actions {
    display: grid;
  }

  .section-actions .btn {
    width: 100%;
  }
}

/* Well wishers preview */
.wellwishers-section {
  background-color: #ffffff;
  border-radius: 16px;
  margin-top: 18px;
  padding: 54px 0;
}

.wellwishers-section p:not(.section-kicker) {
  color: #515b64;
  font-size: 16px;
  line-height: 1.7;
}

.wellwishers-collage {
  min-height: 430px;
  position: relative;
}

.wellwisher-img {
  border: 5px solid #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(49, 58, 68, 0.14);
  object-fit: cover;
  position: absolute;
}

.wellwisher-img-large {
  height: 330px;
  left: 34px;
  top: 48px;
  width: 58%;
}

.wellwisher-img-top {
  height: 150px;
  right: 50px;
  top: 0;
  width: 210px;
}

.wellwisher-img-right {
  height: 190px;
  right: 0;
  top: 150px;
  width: 240px;
}

.wellwisher-img-bottom {
  bottom: 0;
  height: 150px;
  left: 0;
  width: 230px;
}

.wellwisher-note {
  align-items: center;
  background-color: #313a44;
  border-radius: 14px;
  bottom: 34px;
  box-shadow: 0 14px 30px rgba(49, 58, 68, 0.16);
  color: #ffffff;
  display: flex;
  gap: 10px;
  max-width: 280px;
  padding: 14px 16px;
  position: absolute;
  right: 40px;
}

.wellwisher-note i {
  color: #cbeb00;
  font-size: 22px;
}

.wellwisher-note span {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .wellwishers-collage {
    min-height: 560px;
  }
}

@media (max-width: 767px) {
  .wellwishers-section {
    border-radius: 12px;
    padding: 38px 0;
  }

  .wellwishers-collage {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .wellwisher-img,
  .wellwisher-note {
    position: static;
  }

  .wellwisher-img {
    height: 210px;
    width: 100%;
  }

  .wellwisher-img-large {
    height: 260px;
  }

  .wellwisher-note {
    max-width: none;
  }
}
