/* ==========================================================
   Beauty Stars Section
   Structure: Container → Layout → Typography → Button → RWD
   ========================================================== */

/* Container card */
.beauty-stars-section .post-container {
  background-color: #ffbbe4;
  padding: 2rem;
  border-radius: 2rem;
}

/* Main layout wrapper */
.beauty-stars-section .post-container .beauty-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
}

/* Typography */
.beauty-stars-section .post-container .beauty-content .description span {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.beauty-stars-section .post-container .beauty-content p {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Logo image */
.beauty-stars-section .post-container .beauty-content .logo-1 {
  width: 80%;
  margin: 0.3rem 0 1rem; /* top / left-right / bottom */
}

/* CTA button */
.beauty-stars-section .post-container .beauty-content .button {
  display: inline-block; /* replaces fit-content more safely */
  background-color: #fff;
  padding: 1rem 3.5rem;
  border-radius: 4rem;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ==========================================================
   Responsive (<= 768px)
   ========================================================== */
@media (max-width: 768px) {
  .beauty-stars-section .post-container {
    padding: 1.5rem;
  }

  .beauty-stars-section .post-container .beauty-content {
    flex-direction: column;
    text-align: center;
    padding-right: 0;
    gap: 1rem;
  }

  .beauty-stars-section .post-container .beauty-content .logo-1 {
    width: 100%;
  }

  /* Center the CTA when stacked */
  .beauty-stars-section .post-container .beauty-content .button {
    margin-inline: auto;
  }
}

/* ==========================================================
   Hover (only on devices that actually support hover)
   ========================================================== */
@media (hover: hover) {
  .beauty-stars-section .post-container .beauty-content .button:hover {
    background-color: #ffd6eb;
  }
}
