.hive-section {
  background: linear-gradient(120deg, #fceafd 60%, #ffe6f5 100%);
  padding: 56px 0 44px 0;
  text-align: center;
  font-family: 'Poppins', Arial, sans-serif;
}

.hive-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.7rem;
  margin-bottom: 40px;
  color: #3d1c3e;
  letter-spacing: -1px;
}

.hive-cards-row {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 10px 5vw 20px 5vw;
  justify-content: flex-start;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 40px;
}
.hive-cards-row::-webkit-scrollbar {
  display: none;
}

.exact-card {
  width: 240px;
  background: rgba(255, 251, 255, 0.98);
  border-radius: 24px;
  box-shadow: 0 3px 18px 0 rgba(197,143,203,0.08), 0 2px 16px 0 rgba(255,182,230,0.11);
  border: 2px solid #ffe6f5;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
  max-width: 240px;
  flex: 0 0 240px;
}
.exact-card-img {
  width: 192px;
  height: 250px;
  margin-top: 18px;
  border-radius: 18px 18px 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 3px 10px #ffd6f5 inset;
  display: block;
}
.exact-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}
.exact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #3d1c3e;
  font-weight: 700;
  margin-bottom: 9px;
  text-align: center;
  letter-spacing: 0.01em;
}
.exact-card-desc {
  font-family: 'Poppins', 'Nunito', Arial, sans-serif;
  font-size: 1.15rem;
  color: #3d1c3e;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 0;
  line-height: 1.32;
}

.hive-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hive-cta-btn {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(90deg, #ffb6e6 0%, #c79ee7 100%);
  color: #3d1c3e;
  font-family: 'Poppins', 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  border-radius: 19px;
  box-shadow: 0 2px 18px 0 rgba(247,89,197,0.10);
  text-decoration: none;
  letter-spacing: 0.06em;
  margin-top: 12px;
  transition: background 0.18s, box-shadow 0.18s, color 0.12s;
  border: none;
  outline: none;
  cursor: pointer;
}
.hive-cta-btn:hover {
  background: linear-gradient(90deg, #f759c5 0%, #c79ee7 90%);
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(197,143,203,0.15), 0 2.5px 18px 0 rgba(255,182,230,0.25);
}

/* Mobile Responsive */
@media (max-width: 700px) {
  .hive-section {
    padding: 28px 0 18px 0;
  }
  .hive-heading {
    font-size: 1.35rem;
    margin-bottom: 18px;
  }
  .hive-cards-row {
    gap: 13px;
    padding: 5px 2vw 12px 2vw;
    margin-bottom: 18px;
  }
  .exact-card {
    width: 76vw;
    min-width: 76vw;
    max-width: 94vw;
    border-radius: 14px;
    padding-bottom: 16px;
		padding-top: 16px;
  }
  .exact-card-img {
    width: 80%;
    height: 300px;
    min-height: 70px;
    border-radius: 9px 9px 0 0;
    margin-top: 9px;
  }
  .exact-card-content { margin-top: 13px; }
  .exact-card-title { font-size: 20px; margin-bottom: 4px; }
  .exact-card-desc { font-size: 0.97rem; }
  .hive-cta-btn {
    font-size: 0.96rem;
    padding: 10px 15px;
    border-radius: 11px;
  }
}
