/*
 Theme Name:   Kaia Homes
 Author:       V
 Description:  A custom classic WordPress theme.
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  Kaia Homes
 Tags:         custom-theme, classic
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fb-widget-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

html {
  position: relative;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  width: 8px;
  background: #2b120696;
}

body::-webkit-scrollbar-thumb {
  background: #a7c06b;
  border-radius: 100px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #d3fca1;
}

/*
 FOOTER START
 */

footer {
  margin-top: 3rem;
  width: 100%;
  background-color: #e62d90;
  padding: 1rem 5rem;
  font-family: "Montserrat", sans-serif;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-copyright {
  text-align: center;
  display: block;
  color: #fff;
  font-size: 14px;
}

.footer-logo-container {
  max-width: 150px;
}

.footer-logo {
  width: 100%;
  height: 100%;
}

footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.contact-us-btn-container {
  flex-grow: 1;
}

.contact-us-btn {
  padding: 13px 54px;
  font-family: "Montserrat", sans-serif;
  border-radius: 72px;
  background-color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #a7c06b;
  cursor: pointer;
}

.contact-us-btn:hover {
  background-color: #cacaca;
  color: #d5f095;
}

.back-to-top-img {
  width: 48px;
}

.back-to-top-img:hover {
  filter: invert(0.25);
}

.back-to-top-img img {
  width: 100%;
  height: 100%;
}

footer > div:last-child {
  display: flex;
  align-items: center;
  gap: 5rem;
  border-top: 1px solid rgba(220, 220, 220, 0.24);
  padding-top: 1rem;
}
.footer-socials-list {
  flex-grow: 1;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-socials-item {
  width: 32px;
}

/*
.footer-nav-list{
     display: flex;
     gap: 2rem;
     margin-right: 3rem;
     flex-wrap: wrap;
}

.footer-nav-list > a {
     text-decoration: none;
     color: #f0f0f0;
     font-size: 14px;
}

.footer-nav-list > a:hover{
     color: #A7C06B;
}
*/

.footer-nav-list ul {
  display: flex;
  gap: 2rem;
  margin-right: 3rem;
  flex-wrap: wrap;
}

.footer-nav-list ul li {
  list-style-type: none;
}

.footer-nav-list ul li a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 14px;
}

.footer-nav-list ul li a:hover {
  color: #a7c06b;
}

#footer-yt img {
  width: 36px;
}

/* mobile responsive */

@media (max-width: 768px) {
  footer {
    padding: 1rem 0;
  }

  footer > div:first-child {
    flex-direction: column;
    gap: 1.5rem;
  }

  footer > div:last-child {
    flex-direction: column-reverse;
    gap: 1.5rem;
    padding: 1rem;
  }

  .back-to-top-img {
    display: none;
  }

  .footer-nav-list ul {
    margin-right: 0;
    justify-content: center;
  }

  .contact-us-btn {
    padding: 9px 42px;
    font-size: 12px;
  }

  .footer-nav-list ul li a,
  .footer-copyright {
    font-size: 12px;
  }
}

/*
 FOOTER END
 */

.kaia-container {
  min-height: 100vh;
}

/************ Home Redesign ***********/
.home-redesign {
  font-family: "Poppins", sans-serif;
}

.home-redesign-footer {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 72px clamp(28px, 12vw, 240px) 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0) 35%
    ),
    linear-gradient(135deg, #fff7fb 0%, #fff2f8 58%, #fde9f3 100%);
  border-top-left-radius: clamp(58px, 8vw, 130px);
  border-top-right-radius: clamp(92px, 13vw, 220px);
  color: #242126;
  font-family: "Poppins", sans-serif;
}

.home-redesign-footer a {
  color: inherit;
  text-decoration: none;
}

.home-redesign-footer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(210px, 0.72fr) minmax(
      290px,
      0.9fr
    );
  gap: clamp(44px, 7vw, 116px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.home-redesign-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-redesign-footer__logo {
  display: inline-flex;
  width: min(300px, 100%);
  margin-bottom: 10px;
}

.home-redesign-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.home-redesign-footer__brand p,
.home-redesign-footer__bottom p {
  margin: 0;
}

.home-redesign-footer__description {
  max-width: 430px;
  color: #5f5a64;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}

.home-redesign-footer__group h2 {
  margin: 0 0 34px;
  color: #e62d90;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-redesign-footer__toggle {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  text-transform: inherit;
}

.home-redesign-footer__toggle-icon {
  display: none;
}

.home-redesign-footer__group h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 20px;
  background-color: rgba(230, 45, 144, 0.72);
}

.home-redesign-footer__group ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-redesign-footer__group a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #1f1c22;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.home-redesign-footer__group a:hover,
.home-redesign-footer__group a:focus-visible,
.home-redesign-footer__bottom a:hover,
.home-redesign-footer__bottom a:focus-visible {
  color: #e62d90;
}

.home-redesign-footer__group a:focus-visible,
.home-redesign-footer__bottom a:focus-visible,
.home-redesign-footer__top:focus-visible {
  outline: 2px solid rgba(230, 45, 144, 0.55);
  outline-offset: 4px;
}

.home-redesign-footer__group > ul:not(.home-redesign-footer__connect) svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: #e62d90;
  stroke-width: 2;
}

.home-redesign-footer__group--connect {
  position: relative;
  padding-left: clamp(36px, 4.5vw, 72px);
}

.home-redesign-footer__group--connect::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: rgba(230, 45, 144, 0.2);
}

.home-redesign-footer__connect {
  gap: 26px;
}

.home-redesign-footer__connect a {
  align-items: center;
  gap: 20px;
}

.home-redesign-footer__connect a > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-redesign-footer__connect strong {
  color: #242126;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.home-redesign-footer__connect small {
  color: #6b6670;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.home-redesign-footer__connect-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  color: #e62d90;
  border: 2px solid #e62d90;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.42);
}

.home-redesign-footer__connect-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.home-redesign-footer__connect-icon--filled {
  color: #fff;
  border-color: transparent;
  background: #e62d90;
  box-shadow: 0 8px 18px rgba(230, 45, 144, 0.24);
}

.home-redesign-footer__connect-icon--youtube {
  position: relative;
}

.home-redesign-footer__play-mark {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
}

.home-redesign-footer__social-mark {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.home-redesign-footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 26px 0 28px;
  border-top: 1px solid rgba(230, 45, 144, 0.14);
}

.home-redesign-footer__bottom p,
.home-redesign-footer__bottom nav {
  color: #3f3a43;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.home-redesign-footer__bottom p {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.home-redesign-footer__bottom-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background-color: #e62d90;
}

.home-redesign-footer__bottom-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}

.home-redesign-footer__bottom nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.home-redesign-footer__top {
  position: absolute;
  right: clamp(48px, 7vw, 98px);
  bottom: 76px;
  z-index: 3;
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #e62d90;
  box-shadow: 0 16px 32px rgba(102, 35, 78, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.home-redesign-footer__top:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(110, 20, 75, 0.28);
}

.home-redesign-footer__top svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.7;
}

.home-redesign-footer__flower {
  position: absolute;
  left: clamp(-92px, -5vw, -44px);
  bottom: 74px;
  z-index: 1;
  width: 250px;
  height: 276px;
  fill: none;
  stroke: rgba(230, 45, 144, 0.13);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-redesign-footer__wave {
  position: absolute;
  right: -92px;
  bottom: -96px;
  z-index: 1;
  width: min(36vw, 520px);
  height: min(28vw, 430px);
  pointer-events: none;
}

.home-redesign-footer__wave span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-top-left-radius: 100% 86%;
  background: rgba(230, 45, 144, 0.92);
}

.home-redesign-footer__wave span:nth-child(1) {
  transform: translate(14%, 13%) rotate(-16deg);
  opacity: 0.42;
}

.home-redesign-footer__wave span:nth-child(2) {
  transform: translate(25%, 19%) rotate(-18deg);
  opacity: 0.62;
}

.home-redesign-footer__wave span:nth-child(3) {
  transform: translate(36%, 24%) rotate(-20deg);
  opacity: 1;
}

@media (max-width: 1439px) and (min-width: 1024px) {
  .home-redesign-footer {
    padding: 64px clamp(36px, 7vw, 96px) 0;
  }

  .home-redesign-footer__inner {
    grid-template-columns: minmax(280px, 1.05fr) minmax(200px, 0.72fr) minmax(
        270px,
        0.9fr
      );
    gap: clamp(34px, 5vw, 78px);
  }

  .home-redesign-footer__logo {
    width: min(300px, 100%);
  }
}

@media (max-width: 1023px) {
  .home-redesign-footer {
    padding: 56px 28px 0;
    border-top-left-radius: 56px;
    border-top-right-radius: 96px;
  }

  .home-redesign-footer__inner {
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.85fr);
    gap: 48px 56px;
    align-items: start;
  }

  .home-redesign-footer__brand {
    grid-column: 1 / -1;
  }

  .home-redesign-footer__logo {
    width: min(300px, 100%);
  }

  .home-redesign-footer__group--connect {
    padding-left: clamp(34px, 6vw, 58px);
  }

  .home-redesign-footer__group--connect::before {
    display: block;
    top: 0;
  }

  .home-redesign-footer__wave {
    width: 390px;
    height: 330px;
  }

  .home-redesign-footer__top {
    right: 28px;
    bottom: 40%;
  }
}

@media (max-width: 767px) {
  .home-redesign-footer {
    padding: 42px 22px 0;
    border-top-left-radius: 36px;
    border-top-right-radius: 66px;
  }

  .home-redesign-footer__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-redesign-footer__brand {
    gap: 0;
  }

  .home-redesign-footer__logo {
    width: 250px;
    margin-bottom: 8px;
  }

  .home-redesign-footer__description {
    font-size: 15px;
    line-height: 1.65;
  }

  .home-redesign-footer__group {
    border-top: 1px solid rgba(230, 45, 144, 0.14);
  }

  .home-redesign-footer__group h2 {
    margin: 0;
    font-size: 17px;
  }

  .home-redesign-footer__group h2::after {
    display: none;
  }

  .home-redesign-footer__toggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    align-items: center;
    color: #e62d90;
    cursor: pointer;
  }

  .home-redesign-footer__toggle-icon {
    display: inline-flex;
    color: #e62d90;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .home-redesign-footer__group.is-open .home-redesign-footer__toggle-icon {
    transform: rotate(45deg);
  }

  .home-redesign-footer__group ul {
    display: none;
    padding: 0 0 22px;
  }

  .home-redesign-footer__group.is-open ul {
    display: flex;
  }

  .home-redesign-footer__group a {
    font-size: 16px;
  }

  .home-redesign-footer__group ul,
  .home-redesign-footer__connect {
    gap: 20px;
  }

  .home-redesign-footer__group--connect {
    padding-left: 0;
  }

  .home-redesign-footer__group--connect::before {
    display: none;
  }

  .home-redesign-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 0;
    padding: 20px 70px 24px 0;
    border-top: 1px solid rgba(230, 45, 144, 0.14);
  }

  .home-redesign-footer__bottom p,
  .home-redesign-footer__bottom nav {
    font-size: 14px;
  }

  .home-redesign-footer__bottom nav {
    width: 100%;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .home-redesign-footer__top {
    right: 22px;
    bottom: 172px;
    width: 48px;
    height: 48px;
  }

  .home-redesign-footer__flower {
    left: -112px;
    bottom: 210px;
    width: 210px;
    height: 232px;
  }

  .home-redesign-footer__wave {
    right: -160px;
    bottom: -96px;
    width: 330px;
    height: 300px;
  }
}

.home-redesign-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #f7f7f7;
}

.home-redesign-hero::before,
.home-redesign-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.home-redesign-hero::before {
  background: radial-gradient(
    ellipse 54% 50% at 19% 46%,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.92) 34%,
    rgba(255, 255, 255, 0.58) 58%,
    rgba(255, 255, 255, 0.18) 76%,
    rgba(255, 255, 255, 0) 100%
  );
}

.home-redesign-hero::after {
  display: none;
}

.home-redesign-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-redesign-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 56px clamp(24px, 5vw, 90px) 64px;
}

.home-redesign-hero h1 {
  max-width: 60%;
  margin: 0;
  color: #111;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.home-redesign-hero h1 span,
.home-redesign-hero h1 em {
  display: block;
}

.home-redesign-hero h1 em {
  color: #e93a8b;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
}

.home-redesign-hero p {
  max-width: 28%;
  margin: 28px 0 0;
  color: #252525;
  font-size: 17px;
  line-height: 1.65;
}

.home-redesign-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}

.home-redesign-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 230px;
  min-height: 56px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 7px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.home-redesign-hero__button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  stroke-width: 2;
}

.home-redesign-hero__button:hover {
  transform: translateY(-2px);
}

.home-redesign-hero__button--primary {
  background-color: #e93a8b;
  color: #fff;
  box-shadow: 0 12px 26px rgba(233, 58, 139, 0.2);
}

.home-redesign-hero__button--primary:hover {
  background-color: #d92f7d;
  color: #fff;
}

.home-redesign-hero__button--secondary {
  background-color: rgba(255, 255, 255, 0.55);
  border-color: rgba(17, 17, 17, 0.35);
  color: #171717;
}

.home-redesign-hero__button--secondary:hover {
  border-color: #e93a8b;
  color: #e93a8b;
}

@media (max-width: 900px) {
  .home-redesign-hero {
    height: calc(100vh - 78px);
    min-height: 620px;
    align-items: center;
  }

  .home-redesign-hero::before {
    background: radial-gradient(
      ellipse 76% 46% at 16% 48%,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.92) 34%,
      rgba(255, 255, 255, 0.52) 58%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .home-redesign-hero::after {
    display: none;
  }

  .home-redesign-hero__video {
    object-position: 58% bottom;
  }

  .home-redesign-hero__content {
    padding: 42px 20px;
  }

  .home-redesign-hero h1 {
    max-width: 88%;
    font-size: 38px;
  }

  .home-redesign-hero p {
    max-width: 62%;
    font-size: 15px;
    line-height: 1.55;
  }

  .home-redesign-hero__actions {
    gap: 14px;
  }
}

/* Kaia Homes Tarlac portable flyer viewer */
.pfv-viewer.kaia-tarlac-flyer,
.pfv-viewer.kaia-tarlac-flyer .pfv-modal {
  --pfv-accent: #e62d90;
  --pfv-accent-contrast: #ffffff;
  --pfv-text: #242126;
  --pfv-radius: 18px;
}

.pfv-viewer.kaia-tarlac-flyer .pfv-button--cta {
  color: #ffffff;
  background: #5a275b;
  border-color: #5a275b;
}

@media (max-width: 560px) {
  .home-redesign-hero {
    height: calc(100vh - 78px);
    min-height: 560px;
  }

  .home-redesign-hero::before {
    background: radial-gradient(
      ellipse 118% 44% at 14% 48%,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.92) 36%,
      rgba(255, 255, 255, 0.48) 62%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .home-redesign-hero h1 {
    max-width: 88%;
    font-size: 31px;
  }

  .home-redesign-hero p {
    max-width: 88%;
    margin-top: 18px;
  }

  .home-redesign-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
  }

  .home-redesign-hero__button {
    width: auto;
    min-width: 0;
    min-height: 50px;
    padding: 12px 18px;
    font-size: 13px;
    border-radius: 6px;
  }

  .home-redesign-hero__button--primary {
    min-width: 180px;
  }

  .home-redesign-hero__button--secondary {
    min-width: 135px;
    background-color: rgba(255, 255, 255, 0.72);
  }
}

.home-redesign-communities {
  position: relative;
  z-index: 3;
  margin-top: -86px;
  padding: 0 clamp(20px, 8vw, 140px) 72px;
}

.home-redesign-communities__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(170px, 0.72fr);
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(28, 28, 28, 0.14);
}

.home-redesign-communities__header,
.home-redesign-communities__dots {
  display: none;
}

.home-redesign-community-card {
  position: relative;
  min-width: 0;
  color: #1f1f1f;
  text-decoration: none;
  background-color: #fff;
  border-right: 1px solid rgba(30, 30, 30, 0.08);
}

.home-redesign-community-card__image {
  position: relative;
  aspect-ratio: 1.9 / 1;
  margin: 16px 16px 0;
  overflow: hidden;
  border-radius: 6px;
  background-color: #f3f3f3;
}

.home-redesign-community-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    filter 0.28s ease;
}

.home-redesign-community-card:hover .home-redesign-community-card__image > img {
  transform: scale(1.04);
  opacity: 0.32;
  filter: saturate(0.9);
}

.home-redesign-community-card__logo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background-color: rgba(255, 255, 255, 0.52);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.home-redesign-community-card__logo img {
  width: min(78%, 190px);
  height: auto;
  max-height: 78%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.home-redesign-community-card:hover .home-redesign-community-card__logo,
.home-redesign-community-card:focus-visible
  .home-redesign-community-card__logo {
  opacity: 1;
  transform: translateY(0);
}

.home-redesign-community-card:focus-visible {
  outline: 3px solid rgba(233, 58, 139, 0.35);
  outline-offset: 3px;
}

.home-redesign-community-card__status {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 4px 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 4px;
  background-color: #24c94f;
}

.home-redesign-community-card__status--completed {
  background-color: #3a8dff;
}

.home-redesign-community-card__status--sold-out,
.home-redesign-community-card__status--soldout {
  background-color: #e93a8b;
}

.home-redesign-community-card__body {
  padding: 16px 18px 20px;
}

.home-redesign-community-card__body h2 {
  margin: 0;
  color: #1f1f1f;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.home-redesign-community-card__body p {
  margin: 6px 0 0;
  color: #5f5f5f;
  font-size: 14px;
  line-height: 1.35;
}

.home-redesign-community-card--view-all {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-height: 100%;
  padding: 32px 34px;
  background:
    radial-gradient(
      circle at 46px 58px,
      rgba(233, 58, 139, 0.11),
      transparent 32px
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 239, 246, 0.96)
    );
  border-right: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.home-redesign-community-card--view-all:hover,
.home-redesign-community-card--view-all:focus-visible {
  transform: translateY(-4px);
  background:
    radial-gradient(
      circle at 46px 58px,
      rgba(233, 58, 139, 0.2),
      transparent 36px
    ),
    linear-gradient(135deg, rgba(255, 250, 253, 1), rgba(255, 229, 241, 1));
  box-shadow: 0 18px 36px rgba(233, 58, 139, 0.18);
}

.home-redesign-community-card--view-all
  span:not(.home-redesign-community-card__pin),
.home-redesign-community-card--view-all .home-redesign-community-card__arrow {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.home-redesign-community-card--view-all:hover
  span:not(.home-redesign-community-card__pin),
.home-redesign-community-card--view-all:focus-visible
  span:not(.home-redesign-community-card__pin) {
  color: #e93a8b;
}

.home-redesign-community-card__pin {
  width: 28px;
  height: 28px;
  background-color: #e93a8b;
  transition: transform 0.25s ease;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 10c0 4.99-5.54 10.19-7.4 11.78a1 1 0 0 1-1.2 0C9.54 20.19 4 14.99 4 10a8 8 0 0 1 16 0'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 10c0 4.99-5.54 10.19-7.4 11.78a1 1 0 0 1-1.2 0C9.54 20.19 4 14.99 4 10a8 8 0 0 1 16 0'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.home-redesign-community-card--view-all:hover
  .home-redesign-community-card__pin,
.home-redesign-community-card--view-all:focus-visible
  .home-redesign-community-card__pin {
  transform: translateY(-3px) scale(1.08);
}

.home-redesign-community-card__arrow {
  width: 21px;
  height: 21px;
  color: #1f1f1f;
  stroke-width: 2;
}

.home-redesign-community-card--view-all:hover
  .home-redesign-community-card__arrow,
.home-redesign-community-card--view-all:focus-visible
  .home-redesign-community-card__arrow {
  color: #e93a8b;
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .home-redesign-communities {
    margin-top: 0;
    padding: 28px 24px 56px;
    overflow: visible;
    background-color: #fff;
  }

  .home-redesign-communities__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 520px;
    margin: 0 auto 18px;
    padding: 0;
  }

  .home-redesign-communities__header h2 {
    margin: 0;
    color: #171717;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
  }

  .home-redesign-communities__header a {
    color: #e93a8b;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
  }

  .home-redesign-communities__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .home-redesign-communities__inner::-webkit-scrollbar {
    display: none;
  }

  .home-redesign-community-card {
    width: 100%;
    scroll-snap-align: none;
    overflow: hidden;
    border-right: 0;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(22, 22, 22, 0.12);
  }

  .home-redesign-community-card__image {
    aspect-ratio: 1.65 / 1;
    margin: 0;
    border-radius: 0;
  }

  .home-redesign-community-card__status {
    top: 9px;
    left: 9px;
    font-size: 9px;
    border-radius: 5px;
  }

  .home-redesign-community-card__body {
    padding: 14px 12px 16px;
  }

  .home-redesign-community-card__body h2 {
    font-size: 16px;
  }

  .home-redesign-community-card__body p {
    font-size: 14px;
  }

  .home-redesign-communities__dots {
    display: none;
  }

  .home-redesign-communities__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    background-color: #cfcfcf;
    border-radius: 999px;
    cursor: pointer;
    transition:
      width 0.2s ease,
      background-color 0.2s ease,
      transform 0.2s ease;
  }

  .home-redesign-communities__dots button:hover,
  .home-redesign-communities__dots button:focus-visible {
    background-color: rgba(233, 58, 139, 0.55);
    transform: scale(1.12);
  }

  .home-redesign-communities__dots button:focus-visible {
    outline: 2px solid rgba(233, 58, 139, 0.35);
    outline-offset: 3px;
  }

  .home-redesign-communities__dots .is-active {
    width: 14px;
    background-color: #e93a8b;
  }

  .home-redesign-community-card--view-all {
    display: none;
  }
}

@media (max-width: 560px) {
  .home-redesign-communities {
    padding: 24px 20px 52px;
  }

  .home-redesign-communities__header,
  .home-redesign-communities__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.home-redesign-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.35fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  padding: 8px clamp(24px, 8vw, 140px) 92px;
  overflow: hidden;
  background-color: #fff;
}

.home-redesign-story__content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.home-redesign-story__eyebrow {
  margin: 0 0 18px;
  color: #e93a8b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.home-redesign-story h2 {
  margin: 0;
  color: #121212;
  font-size: clamp(42px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-redesign-story h2 em {
  display: block;
  color: #e93a8b;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
}

.home-redesign-story__content > p:not(.home-redesign-story__eyebrow) {
  margin: 22px 0 0;
  color: #2d2d2d;
  font-size: 19px;
  line-height: 1.7;
}

.home-redesign-story__media {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 8.8;
  border-radius: 8px;
  background-color: #161616;
  box-shadow: 0 18px 44px rgba(22, 22, 22, 0.12);
}

.home-redesign-story__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.32s ease,
    filter 0.32s ease;
}

.home-redesign-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  transition: background 0.32s ease;
}

.home-redesign-story__media:hover img,
.home-redesign-story__media:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.home-redesign-story__media:hover::after,
.home-redesign-story__media:focus-visible::after {
  background: rgba(0, 0, 0, 0.08);
}

.home-redesign-story__play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition:
    transform 0.24s ease,
    background-color 0.24s ease;
}

.home-redesign-story__play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
  fill: currentColor;
}

.home-redesign-story__media:hover .home-redesign-story__play,
.home-redesign-story__media:focus-visible .home-redesign-story__play {
  background-color: rgba(233, 58, 139, 0.86);
  transform: translate(-50%, -50%) scale(1.06);
}

.home-redesign-story__flower {
  position: absolute;
  right: -56px;
  bottom: -70px;
  z-index: 1;
  width: 220px;
  height: 245px;
  fill: none;
  stroke: rgba(233, 58, 139, 0.16);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .home-redesign-story {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 24px 68px;
  }

  .home-redesign-story__content {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
  }

  .home-redesign-story__eyebrow {
    font-size: 13px;
  }

  .home-redesign-story h2 {
    font-size: 38px;
  }

  .home-redesign-story__content > p:not(.home-redesign-story__eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }

  .home-redesign-story__media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .home-redesign-story {
    padding: 44px 24px 60px;
  }

  .home-redesign-story h2 {
    font-size: 26px;
  }

  .home-redesign-story__content > p:not(.home-redesign-story__eyebrow) {
    font-size: 15px;
  }

  .home-redesign-story__play {
    width: 58px;
    height: 58px;
  }

  .home-redesign-story__play svg {
    width: 24px;
    height: 24px;
  }
}

.home-redesign-reviews {
  --customer-reviews-text: #242126;
  --customer-reviews-muted: #6c6670;
  position: relative;
  width: 100%;
  padding: 84px 0 88px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--kaia-theme-reviews-background-start, #fff9fc) 0%,
    var(--kaia-theme-reviews-background-end, #fff) 100%
  );
  color: var(--customer-reviews-text);
}

.home-redesign-reviews__header {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 46px;
  text-align: center;
}

.home-redesign-reviews__eyebrow {
  margin: 0 0 17px;
  color: var(--customer-reviews-accent, #e93a8b);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.home-redesign-reviews__header h2 {
  margin: 0;
  color: #151515;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.home-redesign-reviews__header h2 em {
  display: block;
  color: var(--customer-reviews-accent, #e93a8b);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
}

.home-redesign-reviews__intro {
  margin: 21px auto 0;
  color: #4f4a52;
  font-size: 17px;
  line-height: 1.65;
}

.home-redesign-reviews__cta-wrap {
  margin-top: 42px;
  text-align: center;
}

.home-redesign-reviews__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 13px 25px;
  border: 1.5px solid var(--customer-reviews-accent, #e93a8b);
  border-radius: 7px;
  background: #fff;
  color: var(--customer-reviews-accent, #e93a8b);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.home-redesign-reviews__cta:hover,
.home-redesign-reviews__cta:focus-visible {
  background: var(--customer-reviews-accent, #e93a8b);
  color: #fff;
  transform: translateY(-2px);
}

.home-redesign-reviews__cta:focus-visible {
  outline: 3px solid var(--customer-reviews-accent, #e93a8b);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .home-redesign-reviews {
    padding: 64px 0 70px;
  }

  .home-redesign-reviews__header {
    margin-bottom: 36px;
  }

  .home-redesign-reviews__header h2 {
    font-size: 38px;
  }

  .home-redesign-reviews__intro {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .home-redesign-reviews {
    padding: 52px 0 58px;
  }

  .home-redesign-reviews__header {
    width: min(100% - 40px, 500px);
    margin-bottom: 30px;
  }

  .home-redesign-reviews__eyebrow {
    margin-bottom: 13px;
    font-size: 11px;
  }

  .home-redesign-reviews__header h2 {
    font-size: 29px;
  }

  .home-redesign-reviews__intro {
    margin-top: 16px;
    font-size: 14px;
  }

  .home-redesign-reviews__cta-wrap {
    margin-top: 32px;
  }
}

.home-redesign-updates {
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  padding: 72px clamp(24px, 8vw, 140px);
  background:
    radial-gradient(
      circle at 12% 35%,
      rgba(233, 58, 139, 0.09),
      transparent 280px
    ),
    linear-gradient(90deg, rgba(255, 247, 251, 1), rgba(255, 252, 254, 1));
}

.home-redesign-updates__content {
  max-width: 560px;
}

.home-redesign-updates__eyebrow {
  margin: 0 0 28px;
  color: #e93a8b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.home-redesign-updates h2 {
  margin: 0;
  color: #151515;
  font-size: clamp(44px, 4.6vw, 72px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.home-redesign-updates__content > p:not(.home-redesign-updates__eyebrow) {
  max-width: 470px;
  margin: 24px 0 0;
  color: #555;
  font-size: 17px;
  line-height: 1.65;
}

.home-redesign-updates__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  margin-top: 34px;
  padding: 14px 28px;
  color: #e93a8b;
  text-decoration: none;
  border: 1.5px solid #e93a8b;
  border-radius: 7px;
  background-color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.home-redesign-updates__button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background-color: #e93a8b;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.home-redesign-updates__button:hover,
.home-redesign-updates__button:focus-visible {
  color: #fff;
  background-color: #e93a8b;
  transform: translateY(-2px);
}

.home-redesign-updates__button:hover span,
.home-redesign-updates__button:focus-visible span {
  color: #e93a8b;
  background-color: #fff;
}

.home-redesign-updates__embed {
  justify-self: stretch;
  display: flex;
  justify-content: center;
  min-height: 560px;
  padding: 0;
  overflow: visible;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

.home-redesign-updates__embed .fb-page,
.home-redesign-updates__embed .fb-page span,
.home-redesign-updates__embed .fb-page iframe {
  width: 100% !important;
  max-width: 760px !important;
  min-height: 530px !important;
}

@media (max-width: 900px) {
  .home-redesign-updates {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 52px 24px;
    text-align: center;
  }

  .home-redesign-updates__content {
    max-width: 520px;
    margin: 0 auto;
  }

  .home-redesign-updates__eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .home-redesign-updates h2 {
    font-size: 34px;
  }

  .home-redesign-updates__content > p:not(.home-redesign-updates__eyebrow) {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .home-redesign-updates__embed {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .home-redesign-updates {
    padding: 44px 20px;
  }

  .home-redesign-updates h2 {
    font-size: 26px;
  }

  .home-redesign-updates__content > p:not(.home-redesign-updates__eyebrow) {
    font-size: 14px;
  }

  .home-redesign-updates__button {
    min-height: 48px;
    margin-top: 24px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .home-redesign-updates__embed {
    min-height: 420px;
    padding: 10px;
  }
}

.su-post-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.su-post-comments-link {
  display: none;
}

/************ News Page ***********/
.news-page {
  overflow: hidden;
  background: #fff;
  color: #111827;
  font-family: "Poppins", sans-serif;
}

.news-page a {
  color: inherit;
  text-decoration: none;
}

.news-page__hero {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 30%,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0) 34%
    ),
    linear-gradient(105deg, #fff7fb 0%, #fffafd 45%, #fde8f4 100%);
  border-bottom: 1px solid rgba(230, 45, 144, 0.07);
}

.news-page__hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  max-width: 1280px;
  min-height: 250px;
  margin: 0 auto;
  padding: 46px clamp(24px, 5vw, 72px);
}

.news-page__heading {
  max-width: 520px;
  padding-left: 28px;
  border-left: 4px solid #e93a8b;
}

.news-page__heading h1 {
  margin: 0;
  color: #121826;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.news-page__heading p {
  max-width: 470px;
  margin: 18px 0 0;
  color: #5a5f6b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.news-page__flower {
  position: absolute;
  z-index: 1;
  width: 150px;
  height: 168px;
  fill: none;
  stroke: rgba(233, 58, 139, 0.14);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.news-page__flower--left {
  left: -44px;
  bottom: -28px;
}

.news-page__flower--right {
  right: 18%;
  top: 62px;
  width: 112px;
  height: 124px;
}

.news-page__wave {
  position: absolute;
  right: -118px;
  bottom: -210px;
  z-index: 1;
  width: min(40vw, 520px);
  height: min(36vw, 480px);
  pointer-events: none;
}

.news-page__wave span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-top-left-radius: 100% 88%;
  background: rgba(233, 58, 139, 0.9);
}

.news-page__wave span:nth-child(1) {
  transform: translate(-30%, -20%);
  opacity: 0.24;
}

.news-page__wave span:nth-child(2) {
  transform: translate(-13%, -9%);
  opacity: 0.44;
}

.news-page__wave span:nth-child(3) {
  transform: translate(4%, 2%);
  opacity: 0.86;
}

.news-page__content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px clamp(20px, 4vw, 48px) 72px;
}

.news-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 28px;
}

.news-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(47, 24, 40, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.news-card:hover,
.news-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(233, 58, 139, 0.18);
  box-shadow: 0 18px 38px rgba(47, 24, 40, 0.13);
}

.news-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.2;
  overflow: hidden;
  background: #f6edf2;
}

.news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.news-card:hover .news-card__media img,
.news-card:focus-within .news-card__media img {
  transform: scale(1.035);
}

.news-card__body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px 28px 24px;
}

.news-card__category {
  position: absolute;
  top: -16px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 56px);
  min-height: 28px;
  padding: 6px 14px;
  overflow: hidden;
  border-radius: 6px;
  background: #ffe8f3;
  color: #e81783;
  box-shadow: 0 5px 14px rgba(202, 31, 122, 0.13);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-card h2 {
  margin: 0;
  color: #111827;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0;
}

.news-card h2 a {
  transition: color 0.2s ease;
}

.news-card h2 a:hover,
.news-card h2 a:focus-visible {
  color: #e81783;
}

.news-card h2 a:focus-visible,
.news-card__media:focus-visible,
.news-card__link:focus-visible,
.news-page__pagination a:focus-visible {
  outline: 2px solid rgba(233, 58, 139, 0.45);
  outline-offset: 4px;
}

.news-card__body > p {
  margin: 10px 0 0;
  color: #3f4652;
  font-size: 15px;
  line-height: 1.55;
}

.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 26px;
}

.news-card__footer time {
  color: #111827;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.news-page .news-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 0 0 auto;
  color: #e81783;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.2s ease;
}

.news-page .news-card__link:hover,
.news-page .news-card__link:focus-visible {
  color: #c71970;
}

.news-page .news-card__link svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.4;
}

.news-page__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.news-page__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(233, 58, 139, 0.18);
  border-radius: 6px;
  background: #fff;
  color: #242126;
  font-size: 13px;
  font-weight: 700;
}

.news-page__pagination .current,
.news-page__pagination a:hover {
  border-color: #e93a8b;
  background: #e93a8b;
  color: #fff;
}

.news-page__empty {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 28px;
  text-align: center;
}

.news-page__empty h2 {
  margin: 0;
  color: #111827;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
}

.news-page__empty p {
  margin: 12px 0 0;
  color: #5a5f6b;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .news-page__hero,
  .news-page__hero-inner {
    min-height: 220px;
  }

  .news-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-page__wave {
    right: -170px;
    bottom: -190px;
    width: 420px;
    height: 390px;
  }
}

@media (max-width: 680px) {
  .news-page__hero,
  .news-page__hero-inner {
    min-height: 210px;
  }

  .news-page__hero-inner {
    padding: 36px 22px;
  }

  .news-page__heading {
    max-width: 100%;
    padding-left: 18px;
    border-left-width: 3px;
  }

  .news-page__heading h1 {
    font-size: 32px;
  }

  .news-page__heading p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .news-page__flower--left {
    left: -72px;
    bottom: -48px;
  }

  .news-page__flower--right {
    display: none;
  }

  .news-page__wave {
    right: -218px;
    bottom: -172px;
    width: 350px;
    height: 315px;
  }

  .news-page__content {
    padding: 26px 18px 54px;
  }

  .news-page__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card__media {
    aspect-ratio: 16 / 8;
  }

  .news-card__body {
    padding: 32px 22px 22px;
  }

  .news-card__category {
    left: 22px;
    max-width: calc(100% - 44px);
  }

  .news-card h2 {
    font-size: 18px;
  }

  .news-card__body > p {
    font-size: 14px;
  }

  .news-card__footer {
    align-items: flex-start;
    gap: 14px;
  }
}

/************ Single News ***********/
.news-single {
  background:
    radial-gradient(circle at 86% 18%, rgba(233, 58, 139, 0.06), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fff 62%, #fff8fb 100%);
  color: #111827;
  font-family: "Poppins", sans-serif;
}

.news-single a {
  color: inherit;
  text-decoration: none;
}

.news-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 44px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px clamp(20px, 4vw, 48px) 72px;
}

.news-single__article {
  min-width: 0;
}

.news-single__header h1 {
  max-width: 720px;
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
}

.news-single__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
}

.news-single__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #5e6673;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.news-single__meta span,
.news-single__share {
  display: inline-flex;
  align-items: center;
}

.news-single__meta span {
  gap: 7px;
}

.news-single__meta svg {
  width: 15px;
  height: 15px;
  color: #e81783;
  stroke-width: 2;
}

.news-single__share {
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}

.news-single__share a,
.news-single__share button {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e93a8b;
  color: #fff;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.news-single__share a:hover,
.news-single__share a:focus-visible,
.news-single__share button:hover,
.news-single__share button:focus-visible {
  background: #c71970;
  color: #fff;
  transform: translateY(-1px);
}

.news-single__share a:first-of-type span {
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.news-single__share-x {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.news-single__share svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.3;
}

.news-single__featured {
  width: 100%;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 8px;
  background: #f6edf2;
  box-shadow: 0 16px 34px rgba(47, 24, 40, 0.1);
}

.news-single__featured img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.1;
  height: auto;
  object-fit: cover;
}

.news-single__content {
  margin-top: 30px;
  color: #2f3440;
  font-size: 15px;
  line-height: 1.78;
}

.news-single__content > * {
  margin-top: 0;
  margin-bottom: 18px;
}

.news-single__content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.news-single__content figure,
.news-single__content .wp-caption {
  width: 100% !important;
  max-width: 100%;
}

.news-single__content img + i {
  display: block;
  margin-top: 8px;
}

.news-single__content h2,
.news-single__content h3,
.news-single__content h4 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #e81783;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.news-single__content h2 {
  font-size: 22px;
}

.news-single__content h3 {
  font-size: 18px;
}

.news-single__content p:first-child {
  color: #111827;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}

.news-single__content ul,
.news-single__content ol {
  display: grid;
  gap: 6px;
  margin: 12px 0 22px;
  padding: 0;
  list-style: none;
}

.news-single__content li {
  position: relative;
  padding-left: 25px;
}

.news-single__content li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid #e81783;
  border-radius: 50%;
  background: #fff;
}

.news-single__content li::after {
  content: "";
  position: absolute;
  top: calc(0.62em + 3px);
  left: 4px;
  width: 5px;
  height: 3px;
  border-left: 2px solid #e81783;
  border-bottom: 2px solid #e81783;
  transform: rotate(-45deg);
}

.news-single__content a {
  color: #d70b7b;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(215, 11, 123, 0.3);
  text-underline-offset: 3px;
}

.news-single__cta {
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 100%, rgba(233, 58, 139, 0.18), transparent 36%),
    linear-gradient(135deg, #fff1f8 0%, #fff8fb 100%);
}

.news-single__cta h2,
.news-single-widget h2 {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.news-single__cta p {
  margin: 6px 0 0;
  color: #616977;
  font-size: 12px;
  line-height: 1.55;
}

.news-single__cta a,
.news-single-widget__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-top: 12px;
  padding: 8px 17px;
  border-radius: 5px;
  background: #e93a8b;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.news-single__cta a:hover,
.news-single__cta a:focus-visible,
.news-single-widget__button:hover,
.news-single-widget__button:focus-visible {
  background: #c71970;
  color: #fff;
  transform: translateY(-1px);
}

.news-single__cta--inline {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  margin-top: 34px;
  padding: 26px;
}

.news-single__cta-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #ffe0ef;
  color: #e81783;
}

.news-single__cta-icon svg {
  width: 21px;
  height: 21px;
}

.news-single__post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(233, 58, 139, 0.18);
}

.news-single__post-nav a {
  color: #e81783;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.news-single__post-nav-link--previous::before {
  content: "< ";
}

.news-single__post-nav-link--next::after {
  content: " >";
}

.news-single__post-nav a:hover,
.news-single__post-nav a:focus-visible {
  color: #c71970;
}

.news-single__sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.news-single-widget {
  padding: 22px;
  border: 1px solid rgba(233, 58, 139, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(47, 24, 40, 0.07);
}

.news-single-recent {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.news-single-recent__item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.news-single-recent__image {
  display: block;
  width: 68px;
  aspect-ratio: 1 / 0.72;
  overflow: hidden;
  border-radius: 5px;
  background: #f6edf2;
}

.news-single-recent__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-single-recent__content {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.news-single-recent__content strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-single-recent__content time {
  color: #6b7280;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

.news-single-recent__item:hover strong,
.news-single-recent__item:focus-visible strong {
  color: #e81783;
}

.news-single-widget__button {
  width: 100%;
  margin-top: 18px;
  border: 1px solid #e93a8b;
  background: #fff;
  color: #e81783;
}

.news-single-widget__button:hover,
.news-single-widget__button:focus-visible {
  border-color: #c71970;
  background: #c71970;
}

.news-single__empty {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.news-single__empty h1 {
  margin: 0;
  font-size: 34px;
}

.news-single__empty a {
  display: inline-flex;
  margin-top: 18px;
  color: #e81783;
  font-weight: 800;
}

.news-single a:focus-visible,
.news-single button:focus-visible {
  outline: 2px solid rgba(233, 58, 139, 0.45);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .news-single__layout {
    grid-template-columns: 1fr;
    max-width: 760px;
    gap: 36px;
  }

}

@media (max-width: 640px) {
  .news-single__layout {
    padding: 34px 18px 56px;
  }

  .news-single__header h1 {
    font-size: 30px;
  }

  .news-single__meta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-single__featured img {
    aspect-ratio: 16 / 9.3;
  }

  .news-single__content {
    font-size: 14px;
    line-height: 1.7;
  }

  .news-single__content p:first-child {
    font-size: 15px;
  }

  .news-single__cta--inline {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .news-single__post-nav {
    align-items: flex-start;
    flex-direction: column;
  }

}

/************ Header Styles ***********/
.site-header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid #eee;
  font-family: "Poppins", sans-serif;
}

.site-header .container {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 30px;
  gap: 16px;
  box-sizing: border-box;
}

/* Header Logo */
.site-logo img {
  height: 54px;
}

.site-logo > a:focus-visible,
.site-logo:focus-visible {
  outline: none !important;
}

.site-logo,
.mobile-site-logo {
  max-width: 125px;
  max-height: 52.25px;
}
.site-logo img,
.mobile-site-logo img {
  width: 100%;
  height: 100%;
}

/* Navigation */
#main-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
#main-navigation ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(16px, 2vw, 36px);
}

#main-navigation li {
  list-style: none;
}

#main-navigation a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
}

#main-navigation a:hover {
  color: #e93a8b;
}

#get-in-touch-btn {
  padding: 10px 20px;
  background-color: #e93a8b;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
}

#get-in-touch-btn:hover {
  background-color: #d32f7a;
}

#main-navigation a {
  position: relative;
}

#main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background-color: #e93a8b;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

#main-navigation .current-menu-item > a {
  color: #e93a8b;
}

#main-navigation a:hover::after,
#main-navigation .current-menu-item > a,
#main-navigation .current-menu-item > a::after,
#main-navigation .current_page_item > a::after,
#main-navigation .current-menu-ancestor > a::after {
  color: #e93a8b;
  transform: scaleX(1);
}

.mobile-menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 10001;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-left: auto;
  background-color: #e93a8b;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mobile-menu-toggle span + span {
  margin-top: 6px;
}

.mobile-menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  width: min(88vw, 340px);
  height: 100vh;
  padding: 70px 24px 34px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: -18px 0 36px rgba(82, 43, 63, 0.12);
  transform: translateX(100%);
  visibility: hidden;
  transition:
    transform 0.3s ease,
    visibility 0.3s ease;
}

.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-drawer__logo {
  max-width: 128px;
  margin: 0 0 32px;
}

.mobile-drawer__logo img {
  width: 100%;
  height: auto;
}

.mobile-drawer__nav {
  margin-bottom: 28px;
}

.mobile-drawer__menu {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-drawer__menu li {
  position: relative;
  list-style: none;
  border-bottom: 1px solid rgba(29, 29, 29, 0.08);
}

.mobile-drawer__menu li:last-child {
  border-bottom: 0;
}

.mobile-drawer__menu a {
  display: flex;
  align-items: center;
  min-height: 57px;
  gap: 13px;
  padding: 0 42px 0 14px;
  color: #2b2b2b;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 4px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.mobile-drawer__menu a::before {
  display: none;
}

.mobile-drawer__menu a::after {
  display: none;
}

.mobile-drawer__icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: #e93a8b;
}

.mobile-drawer__menu li:first-child > a::before,
.mobile-drawer__menu .menu-item-home > a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m3 11 9-8 9 8'/%3E%3Cpath d='M5 10v10h5v-6h4v6h5V10'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m3 11 9-8 9 8'/%3E%3Cpath d='M5 10v10h5v-6h4v6h5V10'/%3E%3C/svg%3E");
}

.mobile-drawer__menu li:nth-child(2) > a::before,
.mobile-drawer__menu .menu-item-object-community > a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.mobile-drawer__menu li:nth-child(3) > a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.68 0C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.68 0C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.mobile-drawer__menu li:nth-child(4) > a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 17h5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 17h5'/%3E%3C/svg%3E");
}

.mobile-drawer__menu li:nth-child(5) > a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8 9.69a16 16 0 0 0 6 6l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8 9.69a16 16 0 0 0 6 6l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.mobile-drawer__menu li:nth-child(6) > a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3Crect width='20' height='14' x='2' y='6' rx='2'/%3E%3Cpath d='M2 12h20'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3Crect width='20' height='14' x='2' y='6' rx='2'/%3E%3Cpath d='M2 12h20'/%3E%3C/svg%3E");
}

.mobile-drawer__menu .menu-item-has-children::after,
.mobile-drawer__menu li:nth-child(2)::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 14px;
  color: #2d2d2d;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.mobile-drawer__menu a:hover,
.mobile-drawer__menu .current-menu-item > a,
.mobile-drawer__menu .current_page_item > a,
.mobile-drawer__menu .current-menu-ancestor > a {
  color: #e93a8b;
  background-color: rgba(233, 58, 139, 0.07);
}

.mobile-drawer__cta {
  display: block;
  margin: auto 0 32px;
  padding: 14px 18px;
  background-color: #e93a8b;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(233, 58, 139, 0.24);
}

.mobile-drawer__footer {
  position: relative;
  min-height: 120px;
  padding-top: 34px;
  text-align: center;
  border-top: 1px solid rgba(29, 29, 29, 0.1);
}

.mobile-drawer__footer p {
  margin: 0 0 12px;
  color: #252525;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.mobile-drawer__flower {
  position: absolute;
  left: -82px;
  bottom: -46px;
  width: 150px;
  height: 160px;
  fill: none;
  stroke: rgba(233, 58, 139, 0.2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-drawer__socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.mobile-drawer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: #fff;
  text-decoration: none;
  background-color: #e93a8b;
  border-radius: 999px;
}

.mobile-drawer__socials a:first-child span {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.mobile-drawer__socials a:last-child span {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}

.mobile-menu-is-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  /* tablet */
  #main-navigation {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .site-header .container {
    max-width: 100%;
    height: 78px;
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  /* mobile */
}

#mobile-nav {
  display: none;
}

.mobile-nav-list {
  display: none;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding: 2rem 1.5rem;
  background-color: rgba(243, 160, 170, 0.95);
  border-radius: 8px;
}

.mobile-nav-list > li {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.mobile-nav-list > li a {
  color: #ffffff;
}

/* from Additional CSS  -start-*/

.nav-list ul > li {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-list ul > li a {
  color: rgba(99, 64, 58, 0.9);
}

.nav-list ul > li:hover a {
  color: #8a9856;
}

.menu-item-69 a {
  pointer-events: none;
}

#mobile-nav {
  display: none;
  width: 100%;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  box-shadow: 0 0 4px 1px rgba(190, 130, 130, 0.25);
  position: relative;
}

.mobile-nav-list {
  position: absolute;
  top: 3rem;
  right: 10%;
}

.hamburger {
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  background-color: #6c363b;
  height: 2.5px;
  transition: all 0.25s ease-in-out;
}

.hamburger span:first-child {
  width: 100%;
}
.hamburger span:nth-child(2) {
  width: 65%;
  align-self: end;
}
.hamburger span:last-child {
  width: 100%;
}

.mobile-nav-list.open {
  display: flex;
}

.hamburger.open span:first-child {
  transform: rotate(45deg) translate(10px, 5px);
  transition: 0.25s;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transition: 0.25s;
}
.hamburger.open span:last-child {
  transform: rotate(-45deg) translate(10px, -5px);
  transition: 0.25s;
}

.hamburger span:first-child {
  transform: none;
  transition: 0.5s;
}
.hamburger span:nth-child(2) {
  opacity: 1;
  transition: 0.5s;
}
.hamburger span:last-child {
  transform: none;
  transition: 0.5s;
}

/* Single Community Template Styles START*/
.community-container {
  font-family: "Inter", sans-serif;
}

.community-hero {
  /* background: url('./assets/DJI_0221.JPG'); -> inline style (for ACF)*/
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  position: relative;
}

.community-hero video {
  position: absolute;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.community-hero__details {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.community-hero--tarlac .community-hero__details {
  inset: 0;
  transform: none;
  display: block;
}

.community-hero--tarlac .community-logobox {
  position: absolute;
  top: auto;
  right: clamp(1.5rem, 5vw, 6rem);
  bottom: clamp(2rem, 5vh, 4rem);
  width: min(230px, calc(100vw - 3rem));
  padding: 1rem;
}

.community-hero--tarlac .community-hero__subdetails {
  position: absolute;
  top: clamp(5rem, 10vh, 7rem);
  left: 50%;
  transform: translateX(-50%);
}

.community-logobox {
  max-width: 300px;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px 8px rgba(0, 0, 0, 0.178);
}

.community-logobox img {
  width: 100%;
  height: 100%;
}

.community-hero__subdetails {
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  backdrop-filter: blur(5px);
  padding: 1rem 3rem;
  gap: 3rem;
  border-radius: 8px;
}

.community-hero__subdetails > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.community-hero__subdetails > div > h6 {
  text-transform: uppercase;
  font-size: 16px;
}

.community-hero__subdetails > div > p {
  font-size: 14px;
}

.communnity-gmaps-container {
  height: 400px;
  /* border-bottom: 8px solid #f54fa7a6; */
}

.communnity-gmaps-container iframe {
  width: 100%;
  height: 100%;
}

.community-overview-container {
  margin: 3rem auto;
  max-width: 1000px;
}

.community-overview-container > h2 {
  text-align: center;
  color: #202122;
}

.community-overview-container > div {
  text-align: justify;
  margin-top: 2rem;
  color: #2e2e2e;
}

.community-featured-video-container {
  /* background: url('./assets/kaiahomes-video-banner.jpg'); -> inline style (for ACF)*/
  background-size: cover;
  padding: 200px 0;
  position: relative;
}

.community-featured-video-container > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.cfv-play-btn {
  transition: 0.15s ease-in-out;
}

.cfv-play-btn:hover {
  transform: scale(1.25);
  filter: invert(1);
  transition: 0.5s ease-in-out;
}

.community-featured-video-container > div > p {
  text-align: center;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 500;
}

.community-sdp-section {
  margin: 3rem auto;
}

.community-sdp-section > h2 {
  text-align: center;
  text-transform: uppercase;
}

.community-sdp-img-container {
  margin: 3rem;
}

.community-sdp-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* */

@media (max-width: 1000px) {
  .community-overview-container {
    padding: 1.5rem;
  }

  .community-hero--tarlac .community-logobox {
    top: auto;
    bottom: 2rem;
  }
}

@media (max-width: 848px) {
  .community-hero__subdetails {
    flex-direction: column;
    gap: 1rem;
  }

  .community-hero--tarlac .community-logobox {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    width: min(155px, calc(100vw - 2rem));
    padding: 1rem;
  }

  .community-hero--tarlac .community-hero__subdetails {
    top: 4.5rem;
  }
}

/* */

.community-house-model-section {
  margin: 3rem 0.5rem;
}

.community-site-updates-section {
  margin: 3rem 0.5rem;
}

.community-house-model-section > h2 {
  text-align: center;
}

.hm-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.site-updates-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.hm-content-details {
  text-align: center;
  font-size: 14px;
  padding: 2rem 0rem;
  color: #50301d;
}

.site-updates-container .hm-content-slider > h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.community-house-model-section .hm-content-slider {
  max-width: 700px;
  width: 100%;
}

.site-updates-container .hm-content-slider {
  max-width: 700px;
  width: 100%;
}

.n2-ss-slide .n2-ow .n2-ss-slide-15 .n2-ss-slide-active {
  width: auto !important;
}

div#n2-ss-1 .nextend-thumbnail-horizontal .n2-align-content-start {
  gap: 0.15rem;
}

.community-container h2 {
  color: #5a275b;
}

.hm-content-wrapper > div > a:first-child {
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: rgba(1, 1, 1, 0);
  color: #e62d90;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 800;
  transform: scale(1.05);
  transition: 0.2s ease-in-out;
  font-size: 18px;
}

.hm-content-wrapper > div > a:first-child:hover {
  background-color: #e62d90;
  color: #fff;
  transition: 0.2s ease-in-out;
  font-weight: 500;
  transform: scale(1);
  border-radius: 100px;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.reserve-btn {
  font-family: "Montserrat", sans-serif;
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #a7c06b;
  color: #fff;
  padding: 0.6rem 1.75rem;
  border-radius: 100px;
  font-size: 12px;
  transition: 0.2s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0);
}

.reserve-btn:hover {
  transition: 0.1s ease-in-out;
  color: #a7c06b;
  background-color: #fff;
  border: 1px solid #a7c06b;
}

div#n2-ss-5 .nextend-thumbnail-horizontal .n2-align-content-start {
  gap: 0.2rem;
}

.hm-content-wrapper > div:first-child {
  background-color: #e83795;
  height: 466px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 3rem;
}

.menu-item-55 a {
  pointer-events: none;
}

/* Single Community Template Styles END*/

@media (max-width: 900px) {
  .site-updates-container {
    flex-direction: column;
  }

  .hm-content-wrapper {
    flex-direction: column-reverse;
  }

  .site-updates-container .hm-content-slider {
    /*width: auto;*/
  }

  .hm-content-wrapper > div:first-child {
    height: auto;
    width: 100%;
  }
}

@media (max-width: 800px) {
  #mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: #fff;
  }

  #main-nav {
    display: none;
  }

  .community-featured-video-container > div > p {
    font-size: 18px;
  }
}

/* from Additional CSS  -end-*/
@media (max-width: 768px) {
  .temp-home {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .slider-label {
    transform: translate(170px, 282px) translate(-50%, 250%);
  }
}

.fb-widget-container {
  text-align: center;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.fb-page {
  display: inline-block; /* Helps centering via text-align */
  max-width: 500px; /* Your preferred desktop max */
}

@media only screen and (max-width: 768px) {
  .fb-page,
  .fb-page iframe,
  .fb_iframe_widget,
  .fb_iframe_widget span,
  .fb_iframe_widget > span,
  .fb_iframe_widget iframe {
    width: 100% !important;
    max-width: 100% !important;
  }

  .fb-widget-container {
    padding: 0rem 1rem;
  }
}

.home-redesign-partners {
  padding: 72px clamp(24px, 8vw, 140px);
  background-color: #fff;
  text-align: center;
}

.home-redesign-partners h2 {
  margin: 0 0 48px;
  color: #5a275b;
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-redesign-partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.home-redesign-partners__logos img {
  display: block;
  width: auto;
  max-width: 170px;
  height: 78px;
  object-fit: contain;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  .home-redesign-partners {
    padding: 52px 24px;
  }

  .home-redesign-partners h2 {
    margin-bottom: 32px;
    font-size: 24px;
  }

  .home-redesign-partners__logos {
    justify-content: flex-start;
    gap: 28px;
    padding: 0 4px;
    overflow: hidden;
    scrollbar-width: none;
  }

  .home-redesign-partners__logos::-webkit-scrollbar {
    display: none;
  }

  .home-redesign-partners__logos img {
    flex: 0 0 auto;
    max-width: 150px;
    height: 66px;
  }
}

/* Privacy Policy Page */
.page--privacy-policy {
  margin-top: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(232, 45, 144, 0.1), transparent 28%),
    linear-gradient(180deg, #fff7fb 0%, #ffffff 28%, #ffffff 100%);
}

.privacy-policy-page {
  width: 100%;
  padding: clamp(112px, 14vw, 154px) clamp(18px, 5vw, 72px) 72px;
  font-family: "Inter", sans-serif;
  color: #2f2631;
}

.privacy-policy-page article {
  max-width: 1120px;
  margin: 0 auto;
}

.privacy-policy-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 76px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(230, 45, 144, 0.94), rgba(174, 38, 132, 0.94)),
    #e62d90;
  color: #fff;
  box-shadow: 0 28px 70px rgba(160, 36, 112, 0.22);
}

.privacy-policy-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 34px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.privacy-policy-hero p,
.privacy-policy-hero h1,
.privacy-policy-hero span {
  position: relative;
  z-index: 1;
}

.privacy-policy-hero p {
  margin: 0 0 14px;
  color: #ffe6f3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-policy-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.privacy-policy-hero span {
  display: inline-flex;
  margin-top: 22px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.page--privacy-policy .page-content {
  margin-top: 34px;
}

.privacy-policy-content {
  display: grid;
  gap: 22px;
}

.privacy-policy-content > p,
.privacy-policy-content > ul,
.privacy-policy-content > ol {
  max-width: 920px;
  margin: 0 auto;
}

.privacy-policy-content p {
  color: #554756;
  font-size: 16px;
  line-height: 1.8;
}

.privacy-policy-content .privacy-policy-lead {
  padding: 26px 30px;
  border: 1px solid rgba(230, 45, 144, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(93, 46, 74, 0.08);
  color: #423142;
  font-size: 17px;
}

.privacy-policy-content .privacy-policy-toc {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 920px;
  margin: 4px auto 10px;
  padding: 0;
  list-style: none;
}

.privacy-policy-toc li {
  padding: 14px 16px;
  border: 1px solid rgba(230, 45, 144, 0.14);
  border-radius: 14px;
  background: #fff;
  color: #5a275b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 12px 28px rgba(93, 46, 74, 0.06);
}

.privacy-policy-content h2 {
  max-width: 920px;
  margin: 34px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(230, 45, 144, 0.18);
  color: #5a275b;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.privacy-policy-content h2:first-of-type {
  margin-top: 12px;
}

.privacy-policy-content h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  background: #e62d90;
  color: #fff;
  font-size: 16px;
  vertical-align: middle;
}

.privacy-policy-content h3 {
  max-width: 920px;
  margin: 16px auto -6px;
  color: #e62d90;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.privacy-policy-content h3.privacy-policy-audience {
  display: inline-flex;
  width: fit-content;
  margin-left: max(calc((100% - 920px) / 2), 0px);
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff0f8;
  color: #b71873;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
  padding: 22px 26px 22px 46px;
  border: 1px solid rgba(90, 39, 91, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(93, 46, 74, 0.06);
}

.privacy-policy-content li {
  margin: 0;
  color: #4d414e;
  font-size: 15px;
  line-height: 1.7;
}

.privacy-policy-content li + li {
  margin-top: 8px;
}

.privacy-policy-content a {
  color: #d70b7b;
  font-weight: 700;
  text-decoration-color: rgba(215, 11, 123, 0.35);
  text-underline-offset: 3px;
}

.privacy-policy-seal,
.privacy-policy-content--editor-additions h4 + div {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(100%, 280px);
  margin: 30px auto 0;
  padding: 22px;
  border: 1px solid rgba(230, 45, 144, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(93, 46, 74, 0.08);
  text-align: center;
}

.privacy-policy-seal h4,
.privacy-policy-content--editor-additions h4 {
  max-width: 920px;
  margin: 30px auto 0;
  text-align: center;
  color: #5a275b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-policy-seal h4 {
  margin: 0;
}

.privacy-policy-seal a,
.privacy-policy-content--editor-additions h4 + div a {
  display: inline-flex;
  justify-content: center;
}

.privacy-policy-seal img,
.privacy-policy-content--editor-additions h4 + div img,
.privacy-policy-content img[src*="dp20252026"] {
  display: block;
  width: min(240px, 100%) !important;
  max-width: 240px !important;
  height: auto !important;
}

@media (max-width: 900px) {
  .privacy-policy-page {
    padding: 96px 18px 52px;
  }

  .privacy-policy-hero {
    border-radius: 22px;
    padding: 36px 24px;
  }

  .privacy-policy-content .privacy-policy-toc {
    grid-template-columns: 1fr;
  }

  .privacy-policy-content h3.privacy-policy-audience {
    margin-left: 0;
  }

  .privacy-policy-content ul,
  .privacy-policy-content ol,
  .privacy-policy-content .privacy-policy-lead {
    padding-right: 20px;
    padding-left: 24px;
  }
}

/* Kaia community galleries and Tarlac house model feature card */
.community-container {
  --kaia-pink: #e62d90;
  --kaia-plum: #5a275b;
  --kaia-green: #a7c06b;
  --kaia-cream: #fff8fc;
}

.community-container--tarlac .community-house-model-section--feature {
  max-width: 1180px;
  margin: 5rem auto;
  padding: 0 1.5rem;
}

.community-container--tarlac .community-house-model-section--feature > h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
  color: var(--kaia-plum);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.community-container--tarlac .community-house-model-section--feature > h2::before,
.community-container--tarlac .community-house-model-section--feature > h2::after {
  content: "";
  width: clamp(2rem, 5vw, 4.5rem);
  height: 2px;
  border-radius: 999px;
  background: var(--kaia-pink);
}

.community-container--tarlac .community-house-model-section--feature > h2::after {
  background: var(--kaia-green);
}

.community-container--tarlac .hm-content-wrapper {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.6fr);
  align-items: stretch;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(230, 45, 144, 0.14);
  border-radius: 24px;
  background: var(--kaia-cream);
  box-shadow: 0 24px 60px rgba(90, 39, 91, 0.18);
}

.community-container--tarlac .hm-content-wrapper .hm-content-info {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 466px;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.75rem, 3vw, 3rem);
  overflow: hidden;
  background: var(--kaia-pink);
  color: #fff;
}

.community-container--tarlac .hm-content-details {
  width: 100%;
  padding: 1.5rem 0 1.75rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  line-height: 1.65;
  letter-spacing: 0.015em;
  text-align: center;
}

.community-container--tarlac .hm-content-wrapper > .hm-content-info > a:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: none;
  transition: background-color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.community-container--tarlac .hm-content-wrapper > .hm-content-info > a:first-child:hover {
  border-color: #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  transform: translateY(-2px);
}

.community-container--tarlac .reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 46px;
  padding: 0.75rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--kaia-green);
  box-shadow: 0 10px 24px rgba(40, 26, 38, 0.24);
  color: #3e2442;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background-color 180ms ease, box-shadow 180ms ease,
    transform 180ms ease;
}

.community-container--tarlac .reserve-btn:hover {
  border-color: transparent;
  background: #c4da8b;
  box-shadow: 0 14px 28px rgba(40, 26, 38, 0.3);
  color: #3e2442;
  transform: translateY(-2px);
}

.community-container--tarlac .hm-content-slider {
  width: 100%;
  max-width: none;
  min-width: 0;
  overflow: hidden;
  background: var(--kaia-plum);
}

.community-container .hm-content-slider .nextend-thumbnail-inner {
  padding: 10px 12px !important;
  background: var(--kaia-plum) !important;
}

.community-container .hm-content-slider .nextend-thumbnail-scroller {
  gap: 0.4rem !important;
}

.community-container .hm-content-slider .n2-thumbnail-dot {
  margin: 3px !important;
  overflow: hidden;
  border-radius: 9px !important;
  opacity: 0.68 !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2) !important;
  transform: translateY(0);
  transition: opacity 180ms ease, box-shadow 180ms ease,
    transform 180ms ease !important;
}

.community-container .hm-content-slider .n2-thumbnail-dot.n2-active,
.community-container .hm-content-slider .n2-thumbnail-dot:hover,
.community-container .hm-content-slider .n2-thumbnail-dot:focus {
  opacity: 1 !important;
  box-shadow: 0 0 0 3px var(--kaia-green) !important;
  transform: translateY(-1px);
}

.community-container .hm-content-slider .n2-thumbnail-dot img {
  border-radius: 8px !important;
}

.community-container .hm-content-slider .nextend-arrow {
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  border-radius: 999px !important;
  background: rgba(90, 39, 91, 0.78) !important;
  box-shadow: 0 6px 18px rgba(44, 23, 42, 0.24) !important;
}

.community-container .hm-content-slider .nextend-arrow:hover,
.community-container .hm-content-slider .nextend-arrow:focus {
  background: var(--kaia-pink) !important;
}

@media (max-width: 900px) {
  .community-container--tarlac .community-house-model-section--feature {
    margin: 3.5rem auto;
    padding: 0 1rem;
  }

  .community-container--tarlac .hm-content-wrapper {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 20px;
  }

  .community-container--tarlac .hm-content-slider {
    order: 1;
  }

  .community-container--tarlac .hm-content-wrapper .hm-content-info {
    order: 2;
    min-height: auto;
    padding: 2.25rem 1.5rem 2.5rem;
  }

  .community-container
    .hm-content-slider
    .nextend-thumbnail-horizontal[data-hide-mobileportrait="1"] {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .community-container--tarlac .community-house-model-section--feature > h2 {
    gap: 0.55rem;
    font-size: 1.25rem;
  }

  .community-container--tarlac .community-house-model-section--feature > h2::before,
  .community-container--tarlac .community-house-model-section--feature > h2::after {
    width: 1.75rem;
  }
}
