:root {
  --wellness-green: #139f49;
  --wellness-green-dark: #033629;
  --wellness-green-soft: #edf8f1;
  --wellness-accent: #d2da25;
  --wellness-earth: #f4efe5;
  --wellness-text: #18352c;
  --wellness-text-soft: #4c645c;
  --wellness-border: rgba(24, 53, 44, 0.12);
  --wellness-shadow: 0 24px 54px rgba(9, 53, 40, 0.12);
  --wellness-radius: 24px;
  --wellness-container: min(1440px, calc(100vw - 48px));
}

@media (min-width: 1601px) {
  :root {
    --wellness-container: 1200px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(210, 218, 37, 0.16), transparent 30%),
    linear-gradient(180deg, #f9fcfa 0%, #f2f7f4 52%, #f9fbf9 100%);
  color: var(--wellness-text);
  font-family: "Roboto", "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--wellness-green);
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--wellness-green-dark);
}

.wellness-container {
  width: var(--wellness-container);
  margin: 0 auto;
}

.wellness-main {
  min-height: 60vh;
}

.wellness-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(249, 252, 250, 0.92);
  border-bottom: 1px solid rgba(3, 54, 41, 0.08);
}

.wellness-header__top {
  background: linear-gradient(135deg, var(--wellness-green) 0%, var(--wellness-green-dark) 100%);
  color: #fff;
  font-size: 13px;
}

.wellness-header__top-inner,
.wellness-header__main,
.wellness-footer__grid,
.wellness-footer__bottom,
.wellness-section__heading,
.wellness-hero__grid,
.wellness-promo-grid,
.wellness-content-shell,
.wellness-meta,
.wellness-branding,
.wellness-stats,
.wellness-header__actions,
.wellness-card__actions,
.wellness-hero__actions,
.wellness-hero__links {
  display: flex;
  gap: 16px;
}

.wellness-header__top-inner {
  justify-content: space-between;
  padding: 10px 0;
}

.wellness-header__top-inner p {
  margin: 0;
}

.wellness-header__top-line {
  white-space: nowrap;
}

.wellness-header__top-line-mobile {
  display: none;
}

.wellness-header__main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}

.wellness-branding {
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.wellness-branding__logo {
  display: inline-flex;
  align-items: center;
}

.wellness-branding__logo img,
.wellness-branding__logo .custom-logo {
  max-height: 82px;
  width: auto;
}

.wellness-branding--has-logo .wellness-branding__logo {
  line-height: 0;
}

.wellness-branding__text,
.wellness-branding__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--wellness-green-dark);
}

.wellness-branding__copy p {
  margin: 0;
}

.wellness-branding__tagline {
  color: var(--wellness-text-soft);
  font-size: 14px;
}

.wellness-menu-toggle {
  display: none;
  border: 1px solid var(--wellness-border);
  background: #fff;
  color: var(--wellness-green-dark);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}

.wellness-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.wellness-menu,
.wellness-menu ul,
.wellness-footer__links,
.wellness-stats {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wellness-menu {
  display: flex;
  gap: 2px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}

.wellness-menu li {
  position: relative;
}

.wellness-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--wellness-green-dark);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.wellness-menu > li.menu-item-has-children > a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.55;
}

.wellness-menu > li:hover > a,
.wellness-menu > li:focus-within > a,
.wellness-menu > .current-menu-item > a,
.wellness-menu > .current-menu-ancestor > a {
  background: rgba(19, 159, 73, 0.1);
}

.wellness-menu .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--wellness-border);
  box-shadow: var(--wellness-shadow);
  border-radius: 20px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 80;
}

.wellness-menu .sub-menu .sub-menu {
  left: 100%;
  top: -10px;
}

.wellness-menu li:hover > .sub-menu,
.wellness-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wellness-menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--wellness-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: 14px;
}

.wellness-menu .sub-menu a:hover {
  background: var(--wellness-green-soft);
}

.wellness-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, var(--wellness-green) 0%, var(--wellness-green-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(19, 159, 73, 0.2);
}

.wellness-button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.wellness-button--ghost {
  background: #fff;
  color: var(--wellness-green-dark);
  border: 1px solid rgba(19, 159, 73, 0.18);
  box-shadow: none;
}

.wellness-button--ghost:hover {
  color: var(--wellness-green-dark);
}

.wellness-hero,
.wellness-page-hero,
.wellness-section {
  padding: 48px 0;
}

.wellness-hero {
  padding-top: 72px;
}

.wellness-hero--video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(540px, 72vh, 780px);
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(210, 218, 37, 0.12), transparent 28%),
    linear-gradient(135deg, #06231b 0%, #082e24 44%, #0b4232 100%);
}

.wellness-hero__background,
.wellness-hero__overlay,
.wellness-hero__glow,
.wellness-hero__video {
  position: absolute;
  inset: 0;
}

.wellness-hero__background {
  z-index: 0;
  overflow: hidden;
}

.wellness-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.02) brightness(0.7);
}

.wellness-hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 23, 18, 0.86) 0%, rgba(4, 23, 18, 0.72) 34%, rgba(4, 23, 18, 0.42) 66%, rgba(4, 23, 18, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 29, 22, 0.26) 0%, rgba(5, 29, 22, 0.58) 100%);
}

.wellness-hero__glow {
  background:
    radial-gradient(circle at 12% 22%, rgba(210, 218, 37, 0.22), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(19, 159, 73, 0.22), transparent 26%),
    radial-gradient(circle at 78% 78%, rgba(255, 255, 255, 0.08), transparent 24%);
}

.wellness-hero__grid,
.wellness-promo-grid,
.wellness-section-grid,
.wellness-post-grid,
.wellness-course-grid {
  display: grid;
  gap: 24px;
}

.wellness-hero__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: stretch;
}

.wellness-hero--video .wellness-hero__grid {
  position: relative;
  z-index: 1;
  align-items: center;
  min-height: calc(clamp(540px, 72vh, 780px) - 160px);
}

.wellness-hero__eyebrow,
.wellness-page-hero__eyebrow,
.wellness-footer__eyebrow,
.wellness-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--wellness-green);
  margin: 0 0 14px;
}

.wellness-hero h1,
.wellness-page-hero h1,
.wellness-footer h2,
.wellness-section__heading h2 {
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--wellness-green-dark);
}

.wellness-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  max-width: 10ch;
}

.wellness-hero--video .wellness-hero__eyebrow {
  color: rgba(232, 255, 242, 0.88);
}

.wellness-hero--video h1 {
  max-width: 11ch;
  color: #fff;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.wellness-hero__lead,
.wellness-page-hero__lead,
.wellness-promo p,
.wellness-card__excerpt {
  color: var(--wellness-text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.wellness-hero__panel,
.wellness-promo,
.wellness-card,
.wellness-entry,
.wellness-pagination,
.wellness-page-hero {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(3, 54, 41, 0.08);
  box-shadow: var(--wellness-shadow);
  border-radius: var(--wellness-radius);
}

.wellness-hero__panel,
.wellness-promo,
.wellness-page-hero {
  padding: 32px;
}

.wellness-hero--video .wellness-hero__lead {
  max-width: 64ch;
  color: rgba(245, 252, 248, 0.92);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.wellness-hero--video .wellness-hero__panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.wellness-hero--video .wellness-hero__panel h2,
.wellness-hero--video .wellness-hero__panel p,
.wellness-hero--video .wellness-hero__links a {
  color: #fff;
}

.wellness-hero--video .wellness-hero__links a {
  opacity: 0.92;
}

.wellness-hero--video .wellness-button {
  box-shadow: 0 18px 34px rgba(4, 24, 18, 0.28);
}

.wellness-hero--video .wellness-button--ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  backdrop-filter: blur(14px);
}

.wellness-hero--video .wellness-button--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.wellness-hero__links {
  flex-wrap: wrap;
  margin-top: 24px;
}

.wellness-hero__links a {
  text-decoration: none;
  font-weight: 700;
}

.wellness-stats {
  flex-wrap: wrap;
  margin-top: 36px;
}

.wellness-stats li {
  min-width: 170px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(3, 54, 41, 0.08);
  border-radius: 20px;
}

.wellness-hero--video .wellness-stats li {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
}

.wellness-hero--video .wellness-stats span {
  color: rgba(244, 251, 247, 0.82);
}

.wellness-stats strong {
  display: block;
  font-size: 32px;
  color: #fff;
}

.wellness-stats span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--wellness-text-soft);
}

.wellness-section__heading {
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.wellness-section__heading h2 {
  font-size: clamp(30px, 5vw, 48px);
  max-width: 16ch;
}

.wellness-section--alt .wellness-section__heading h2,
.wellness-section--news .wellness-section__heading h2 {
  max-width: 18ch;
}

.wellness-section-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wellness-post-grid,
.wellness-course-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wellness-card {
  overflow: hidden;
}

.wellness-card__image,
.wellness-entry__media img,
.wellness-card .wp-post-image,
.wellness-card__image--placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
}

.wellness-card__image--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(19, 159, 73, 0.15), rgba(210, 218, 37, 0.3));
  color: var(--wellness-green-dark);
  font-size: 48px;
  font-weight: 800;
}

.wellness-card__body {
  padding: 24px;
}

.wellness-card__title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.wellness-card__title a {
  text-decoration: none;
  color: var(--wellness-green-dark);
}

.wellness-card__meta {
  margin: 0 0 10px;
  color: var(--wellness-text-soft);
  font-size: 14px;
}

.wellness-card__price {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 800;
  color: var(--wellness-green-dark);
}

.wellness-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(19, 159, 73, 0.1);
  color: var(--wellness-green-dark);
  text-decoration: none;
  font-weight: 700;
}

.wellness-card__link:hover {
  background: rgba(19, 159, 73, 0.16);
  color: var(--wellness-green-dark);
}

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

.wellness-promo--accent {
  background: linear-gradient(135deg, rgba(19, 159, 73, 0.08), rgba(210, 218, 37, 0.12));
}

.wellness-page-hero {
  margin-top: 40px;
}

.wellness-breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-size: 14px;
  color: var(--wellness-text-soft);
}

.wellness-breadcrumbs a {
  text-decoration: none;
}

.wellness-meta {
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--wellness-text-soft);
  font-size: 14px;
}

.wellness-content-shell {
  display: block;
}

.wellness-entry {
  overflow: hidden;
}

.wellness-entry__media img {
  width: 100%;
  aspect-ratio: 2.1 / 1;
  object-fit: cover;
}

.wellness-entry__content {
  padding: 32px;
}

.wellness-entry__content p,
.wellness-entry__content li,
.wellness-entry__content blockquote,
.wellness-entry__content td {
  color: var(--wellness-text);
  line-height: 1.8;
  font-size: 17px;
}

.wellness-entry__content h2,
.wellness-entry__content h3,
.wellness-entry__content h4 {
  color: var(--wellness-green-dark);
  margin-top: 28px;
}

.wellness-entry__content ul,
.wellness-entry__content ol {
  margin-left: 20px;
}

.wellness-entry__content table {
  width: 100%;
  border-collapse: collapse;
}

.wellness-entry__content table td,
.wellness-entry__content table th {
  border: 1px solid var(--wellness-border);
  padding: 10px 12px;
}

.wellness-entry__content .elementor {
  margin: -8px 0;
}

.wellness-entry__content .elementor-section {
  margin-bottom: 18px;
}

.wellness-entry__content .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0;
}

.wellness-entry__content .elementor-widget-text-editor,
.wellness-entry__content .elementor-widget-image {
  margin-bottom: 16px;
}

.wellness-pagination {
  margin-top: 24px;
  padding: 24px;
}

.wellness-footer {
  margin-top: 40px;
  padding: 36px 0 18px;
  background: linear-gradient(135deg, #063a2d 0%, #0a5642 100%);
  color: #fff;
}

.wellness-footer h2,
.wellness-footer h3,
.wellness-footer a,
.wellness-footer li,
.wellness-footer p {
  color: #fff;
}

.wellness-footer a:hover {
  color: #e8fff2;
}

.wellness-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.wellness-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}

.wellness-footer__logo .custom-logo-link,
.wellness-footer__logo .custom-logo {
  display: block;
}

.wellness-footer__logo img {
  max-width: 170px;
  height: auto;
}

.wellness-footer__column h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.2;
}

.wellness-footer__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.wellness-footer__nav,
.wellness-footer__meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wellness-footer__nav {
  display: grid;
  gap: 8px;
}

.wellness-footer__nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
}

.wellness-footer__nav--docs {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wellness-footer__meta {
  display: grid;
  gap: 10px;
}

.wellness-footer__meta li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wellness-footer__meta li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.wellness-footer__meta span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wellness-footer__meta strong,
.wellness-footer__meta a {
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.wellness-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

.wellness-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.wellness-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wellness-footer__bottom-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.wellness-site-footer {
  margin-top: 36px;
  padding: 28px 0 16px;
  background: linear-gradient(135deg, #063a2d 0%, #0a5642 100%);
  color: #fff;
}

.wellness-site-footer a,
.wellness-site-footer h2,
.wellness-site-footer h3,
.wellness-site-footer p,
.wellness-site-footer li,
.wellness-site-footer strong,
.wellness-site-footer span {
  color: #fff;
}

.wellness-site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.85fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: start;
}

.wellness-site-footer__grid > * {
  min-width: 0;
}

.wellness-site-footer__eyebrow {
  margin: 0 0 8px;
  color: var(--wellness-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wellness-site-footer__title {
  margin: 0 0 6px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
}

.wellness-site-footer__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
  max-width: 32ch;
}

.wellness-site-footer__heading {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.2;
}

.wellness-site-footer__list,
.wellness-site-footer__meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wellness-site-footer__list {
  display: grid;
  gap: 6px;
}

.wellness-site-footer__list a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
}

.wellness-site-footer__list a:hover {
  color: #fff;
}

.wellness-site-footer__meta {
  display: grid;
  gap: 8px;
}

.wellness-site-footer__meta li {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wellness-site-footer__meta li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.wellness-site-footer__meta span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wellness-site-footer__meta strong,
.wellness-site-footer__meta a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.wellness-site-footer__meta--inline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 14px;
}

.wellness-site-footer__meta--inline li {
  padding: 0;
  border-bottom: 0;
}

.wellness-site-footer__meta--inline .wellness-site-footer__meta-item--bank {
  grid-column: 1 / -1;
}

.wellness-site-footer__contact-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wellness-site-footer__contact-item {
  min-width: 0;
}

.wellness-site-footer__contact-item span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wellness-site-footer__contact-item strong,
.wellness-site-footer__contact-item a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.wellness-site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wellness-site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.wellness-site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wellness-site-footer__legal a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.4;
}

.wellness-page-hero--404,
.wellness-page-hero--course {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(3, 54, 41, 0.08);
  border-radius: 34px;
  box-shadow: var(--wellness-shadow);
  padding: 42px 0;
}

.wellness-course-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 380px);
  gap: 34px;
  align-items: center;
}

.wellness-course-hero__content {
  min-width: 0;
}

.wellness-page-hero--course .wellness-page-hero__lead {
  max-width: 40ch;
}

.wellness-course-hero__media {
  justify-self: end;
  width: 100%;
}

.wellness-course-hero__frame {
  position: relative;
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(155deg, rgba(19, 159, 73, 0.12), rgba(210, 218, 37, 0.24));
  border: 1px solid rgba(19, 159, 73, 0.12);
  box-shadow: 0 28px 48px rgba(3, 54, 41, 0.14);
}

.wellness-course-hero__frame::after {
  content: "";
  position: absolute;
  inset: auto 24px -18px;
  height: 28px;
  border-radius: 999px;
  background: rgba(19, 159, 73, 0.14);
  filter: blur(18px);
  z-index: 0;
}

.wellness-course-hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 0.74;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 36px rgba(3, 54, 41, 0.18);
}

.wellness-stats--course strong .amount,
.wellness-stats--course strong .price {
  color: inherit;
}

.wellness-404-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--wellness-border);
  border-radius: 30px;
  padding: 30px 34px;
  box-shadow: var(--wellness-shadow);
}

.wellness-404-card__copy h2 {
  margin: 0 0 10px;
  color: var(--wellness-green-dark);
}

.wellness-404-card__copy p {
  margin: 0;
  color: var(--wellness-text-soft);
}

.wellness-404-card__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.wellness-course-shell #learn-press-course,
.single-lp_course .course-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.single-lp_course .course-content,
.single-lp_course .entry-content-left,
.single-lp_course .lp-entry-content {
  min-width: 0;
}

.single-lp_course .course-detail-info {
  display: none;
}

.single-lp_course #learn-press-course-tabs,
.single-lp_course #respond,
.single-lp_course .related-post-wrap.related_course {
  background: #fff;
  border: 1px solid var(--wellness-border);
  border-radius: 30px;
  box-shadow: var(--wellness-shadow);
}

.single-lp_course #learn-press-course-tabs {
  padding: 26px 28px 30px;
}

.single-lp_course .wrapper-course-nav-tabs {
  border-bottom: 1px solid rgba(3, 54, 41, 0.08);
  margin-bottom: 26px;
  padding-bottom: 18px;
}

.single-lp_course .learn-press-nav-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-lp_course .learn-press-nav-tabs li {
  margin: 0;
}

.single-lp_course .learn-press-nav-tabs label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(19, 159, 73, 0.08);
  color: var(--wellness-green-dark);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.single-lp_course .learn-press-nav-tabs li.active label,
.single-lp_course .learn-press-nav-tabs label:hover {
  background: linear-gradient(135deg, var(--wellness-green) 0%, var(--wellness-green-dark) 100%);
  color: #fff;
}

.single-lp_course .course-tab-panels {
  color: var(--wellness-text);
}

.single-lp_course .course-tab-panels p,
.single-lp_course .course-tab-panels li,
.single-lp_course .course-tab-panels td {
  font-size: 17px;
  line-height: 1.8;
  color: var(--wellness-text);
}

.single-lp_course .course-tab-panels h2,
.single-lp_course .course-tab-panels h3,
.single-lp_course .course-tab-panels h4 {
  color: var(--wellness-green-dark);
}

.single-lp_course .course-tab-panels a[href*="/product/"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wellness-green) 0%, var(--wellness-green-dark) 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(19, 159, 73, 0.2);
}

.single-lp_course .course-tab-panels a[href*="/product/"]:hover {
  color: #fff;
}

.single-lp_course .lp-sidebar-col {
  width: 100%;
}

.single-lp_course .widget-area {
  position: sticky;
  top: 120px;
}

.single-lp_course .course-sidebar-preview {
  display: grid;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--wellness-border);
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--wellness-shadow);
}

.single-lp_course .course-sidebar-preview .post-thumbnail img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(3, 54, 41, 0.16);
}

.single-lp_course .lp_sidebar_wrap.lp__widget:empty {
  display: none;
}

.single-lp_course .edubin-course-info {
  background: linear-gradient(180deg, #fff 0%, var(--wellness-green-soft) 100%);
  border: 1px solid rgba(19, 159, 73, 0.12);
  border-radius: 24px;
  padding: 22px;
}

.single-lp_course .ld-segment-title {
  margin: 0 0 18px;
  font-size: 24px;
  color: var(--wellness-green-dark);
}

.single-lp_course .course-info-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-lp_course .course-info-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(3, 54, 41, 0.08);
}

.single-lp_course .course-info-list li:last-child {
  border-bottom: 0;
}

.single-lp_course .course-info-list i {
  color: var(--wellness-green);
  font-size: 18px;
  margin-top: 3px;
}

.single-lp_course .course-info-list .label {
  display: block;
  margin-bottom: 4px;
  color: var(--wellness-text-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.single-lp_course .course-info-list .value,
.single-lp_course .course-info-list .value a,
.single-lp_course .course-info-list .course-price {
  color: var(--wellness-green-dark);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.single-lp_course .lp-course-buttons {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.single-lp_course .lp-course-buttons > div {
  display: block !important;
}

.single-lp_course .lp-course-buttons .lp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.single-lp_course .lp-course-buttons .course-btn-extra,
.single-lp_course .lp-course-buttons .course-btn-extra:hover {
  background: linear-gradient(135deg, var(--wellness-green) 0%, var(--wellness-green-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(19, 159, 73, 0.22);
}

.single-lp_course .lp-course-buttons .lp-button-wishlist-action {
  background: #fff;
  color: var(--wellness-green-dark);
  border: 1px solid rgba(19, 159, 73, 0.18);
}

.single-lp_course .entry-post-share,
.single-lp_course .lp__widget > .widget.edubin-course-widget {
  background: #fff;
  border: 1px solid var(--wellness-border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(3, 54, 41, 0.08);
}

.single-lp_course .share-label,
.single-lp_course .widget-title {
  margin-bottom: 14px;
  color: var(--wellness-green-dark);
  font-size: 20px;
  font-weight: 800;
}

.single-lp_course .share-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.single-lp_course .share-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.single-lp_course .share-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(19, 159, 73, 0.1);
  color: var(--wellness-green-dark);
}

.single-lp_course .widget.edubin-course-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-lp_course .widget.edubin-course-widget li + li {
  margin-top: 10px;
}

.single-lp_course .widget.edubin-course-widget a {
  text-decoration: none;
  font-weight: 600;
}

.single-lp_course .related-post-wrap.related_course {
  margin-top: 36px;
  padding: 28px;
}

.single-lp_course .related-post-title-wrap {
  margin-bottom: 22px;
}

.single-lp_course .related-title {
  margin: 0;
  color: var(--wellness-green-dark);
  font-size: 30px;
}

.single-lp_course .related_course .edubin-course {
  height: 100%;
  border: 1px solid var(--wellness-border);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 28px rgba(3, 54, 41, 0.08);
}

.single-lp_course .related_course .course__content {
  padding: 18px;
}

.single-lp_course #respond {
  margin-top: 26px;
  padding: 26px 28px;
}

.single-lp_course #respond .edubin-title {
  color: var(--wellness-green-dark);
}

.single-lp_course .edubin-comment-form .form-control {
  border: 1px solid rgba(3, 54, 41, 0.12);
  border-radius: 18px;
  min-height: 52px;
  padding: 14px 16px;
  box-shadow: none;
}

.single-lp_course .edubin-comment-form textarea.form-control {
  min-height: 170px;
}

.single-lp_course .edubin-comment-btn {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wellness-green) 0%, var(--wellness-green-dark) 100%);
  color: #fff;
  font-weight: 700;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  margin-top: 24px;
}

.woocommerce .products .product,
.woocommerce-page .products .product {
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--wellness-shadow);
}

.woocommerce div.product div.images img,
.woocommerce div.product div.summary {
  border-radius: 24px;
}

.learn-press-breadcrumb,
.edubin-page-title-area {
  display: none !important;
}

@media (max-width: 1200px) {
  .wellness-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wellness-post-grid,
  .wellness-course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wellness-course-shell #learn-press-course,
  .single-lp_course .course-summary,
  .wellness-course-hero,
  .wellness-404-card {
    grid-template-columns: 1fr;
  }

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

  .wellness-footer__column--brand {
    grid-column: 1 / -1;
  }

  .wellness-header__actions {
    display: none;
  }

  .wellness-course-hero__media {
    justify-self: start;
    max-width: 360px;
  }

  .wellness-site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wellness-site-footer__brand {
    grid-column: 1 / -1;
  }

  .wellness-site-footer__meta--inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wellness-site-footer__contact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1280px) {
  .wellness-header__main {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .wellness-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .wellness-nav {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
  }

  .wellness-nav.is-open {
    display: block;
  }

  .wellness-menu {
    display: block;
    margin-top: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 20px;
    box-shadow: var(--wellness-shadow);
  }

  .wellness-menu .sub-menu,
  .wellness-menu .sub-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    margin: 8px 0 0 12px;
    box-shadow: none;
    border-radius: 16px;
  }
}

@media (max-width: 960px) {
  .wellness-hero__grid,
  .wellness-promo-grid,
  .wellness-footer__grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .wellness-header__top {
    font-size: clamp(8px, 2.2vw, 10px);
  }

  .wellness-header__top .wellness-container {
    width: calc(100vw - 24px);
  }

  .wellness-header__top-inner {
    justify-content: center;
    flex-wrap: nowrap;
    padding: 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .wellness-header__top-inner::-webkit-scrollbar {
    display: none;
  }

  .wellness-header__top-line-desktop {
    display: none;
  }

  .wellness-header__top-line-mobile {
    display: inline;
  }

  .wellness-branding__logo img,
  .wellness-branding__logo .custom-logo {
    max-height: 68px;
  }

  .wellness-section__heading {
    align-items: start;
  }

  .single-lp_course .widget-area {
    position: static;
  }

  .wellness-footer__top {
    grid-template-columns: 1fr;
  }

  .wellness-footer__bottom-links {
    width: 100%;
    justify-content: flex-start;
  }

  .wellness-site-footer__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wellness-site-footer__brand {
    grid-column: auto;
  }

  .wellness-site-footer__meta--inline {
    grid-template-columns: 1fr;
  }

  .wellness-site-footer__contact-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .wellness-site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .wellness-header__top-inner,
  .wellness-section__heading,
  .wellness-footer__bottom {
    flex-direction: column;
  }

  .wellness-header__top-inner {
    flex-direction: row;
  }

  .wellness-hero--video {
    min-height: auto;
    padding: 72px 0 48px;
  }

  .wellness-hero--video .wellness-hero__grid {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .wellness-hero,
  .wellness-page-hero,
  .wellness-section {
    padding: 32px 0;
  }

  .wellness-section-grid,
  .wellness-post-grid,
  .wellness-course-grid {
    grid-template-columns: 1fr;
  }

  .single-lp_course #learn-press-course-tabs,
  .single-lp_course #respond,
  .single-lp_course .related-post-wrap.related_course,
  .wellness-404-card {
    padding: 22px;
  }

  .single-lp_course .learn-press-nav-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wellness-entry__content,
  .wellness-page-hero,
  .wellness-hero__panel,
  .wellness-promo {
    padding: 22px;
  }

  .wellness-card__body {
    padding: 20px;
  }

  .wellness-footer {
    padding-top: 30px;
  }

  .wellness-footer__top {
    gap: 18px;
    padding-bottom: 16px;
  }

  .wellness-footer__column h3 {
    margin-bottom: 12px;
  }

  .wellness-site-footer {
    padding-top: 24px;
  }

  .wellness-site-footer__grid {
    gap: 16px;
  }

  .wellness-site-footer__title {
    font-size: 22px;
  }

  .wellness-site-footer__bottom,
  .wellness-site-footer__legal {
    gap: 8px;
  }

  .wellness-hero--video {
    padding: 46px 0 36px;
  }

  .wellness-hero--video .wellness-hero__overlay {
    background:
      linear-gradient(180deg, rgba(4, 23, 18, 0.78) 0%, rgba(4, 23, 18, 0.48) 28%, rgba(4, 23, 18, 0.78) 100%),
      linear-gradient(90deg, rgba(4, 23, 18, 0.76) 0%, rgba(4, 23, 18, 0.6) 100%);
  }

  .wellness-hero--video .wellness-stats li {
    min-width: calc(50% - 8px);
  }
}
