/* Shared presentation layer for Westhome service pages. */
body.westhome-service-page {
  background: #f5f8f1;
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="Section"] {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(139, 169, 93, 0.14), transparent 32rem),
    linear-gradient(180deg, #f8faf5 0%, #eef5e7 100%);
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="Container"] {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px !important;
  margin-inline: auto !important;
  padding-block: clamp(44px, 7vw, 88px) !important;
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="SectionHeading"] {
  max-width: 850px;
  margin-inline: auto !important;
  font-size: clamp(2rem, 4.5vw, 3.75rem) !important;
  line-height: 1.08 !important;
  text-wrap: balance;
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="Grid"] {
  align-items: stretch !important;
  gap: clamp(22px, 4vw, 48px);
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="ContentCard"],
body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="ContentBasic"] {
  height: 100%;
  padding: clamp(24px, 4vw, 48px) !important;
  border: 1px solid rgba(78, 111, 39, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(30, 57, 20, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="ContentCardText"],
body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="ContentText"] {
  line-height: 1.75 !important;
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="Image"] {
  width: 100%;
  border-radius: 24px !important;
  box-shadow: 0 20px 44px rgba(25, 52, 15, 0.2);
  transition: transform 500ms ease, box-shadow 500ms ease;
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="Image"]:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 26px 58px rgba(25, 52, 15, 0.26);
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux$="Button"] {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux$="Button"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(45, 84, 24, 0.2);
}

body.westhome-service-page.westhome-motion-ready .westhome-service-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--westhome-reveal-delay, 0ms);
}

body.westhome-service-page.westhome-motion-ready .westhome-service-reveal.westhome-service-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="Container"] {
    width: min(100% - 22px, 1180px);
    padding-block: 36px !important;
  }

  body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="ContentCard"],
  body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="ContentBasic"] {
    padding: 22px !important;
    border-radius: 18px;
  }

  body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="Image"] {
    border-radius: 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.westhome-service-page .westhome-service-reveal,
  body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="Image"],
  body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux$="Button"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Shared service layout: descriptive content left, focused call-to-action right. */
body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="SectionHeading"] {
  font-size: clamp(1.8rem, 3.25vw, 2.85rem) !important;
  line-height: 1.15 !important;
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="Grid"] {
  display: grid !important;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 1fr) !important;
  gap: clamp(14px, 2vw, 24px) !important;
  align-items: stretch !important;
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="GridCell"] {
  width: auto !important;
  max-width: none !important;
  flex-basis: auto !important;
}

body.westhome-service-page [data-ux="ContentCard"] {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  height: auto !important;
  min-height: 0;
  text-align: center;
}

body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="GridCell"]:last-child {
  align-self: start;
  height: auto !important;
  min-height: 0 !important;
}

body.westhome-service-page [data-ux="SectionHeading"],
body.westhome-service-page [data-ux="ContentHeading"],
body.westhome-service-page [data-ux="ContentCardHeading"] {
  text-align: center !important;
}

body.westhome-service-page [data-ux="ContentText"],
body.westhome-service-page [data-ux="ContentCardText"] {
  width: 100%;
  text-align: left !important;
}

.westhome-nurse-led-label {
  display: table;
  margin: 0 auto 18px;
  padding: 7px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: linear-gradient(100deg, #96738f 0%, #c47f86 52%, #c7a35f 100%);
  box-shadow: 0 7px 18px rgba(104, 70, 91, 0.18);
  color: #ffffff;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2px;
  text-align: center;
}

@media (max-width: 767px) {
  body.westhome-service-page .widget-content:not(.westhome-additional-content-spacer) [data-ux="Grid"] {
    grid-template-columns: 1fr !important;
  }
}
