/* Avenue Park Towers II — editorial theme aligned with villasuae.ae */

html:has(body.wasl-editorial) {
  background: #faf9f6;
  scroll-padding-top: 5rem;
}

body.wasl-editorial {
  --background: #faf9f6;
  --foreground: #1a2e1a;
  --forest: #2d4a2d;
  --forest-light: #3d6b3d;
  --forest-dark: #1a2e1a;
  --sage: #8ba888;
  --cream: #f5f0e8;
  --cream-dark: #ebe4d8;
  --gold: #b8956a;
  --gold-light: #d4b896;
  --line-soft: rgba(45, 74, 45, 0.1);
  --muted: rgba(26, 46, 26, 0.65);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  background: var(--background);
  color: var(--foreground);
  font-family: "DM Sans", system-ui, sans-serif;
}

body.wasl-editorial .label-caps {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.wasl-editorial h1,
body.wasl-editorial h2,
body.wasl-editorial h3,
body.wasl-editorial .wasl-serif {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--forest);
}

body.wasl-editorial a {
  color: var(--forest);
}

body.wasl-editorial a.wasl-btn,
body.wasl-editorial a.wasl-logo {
  text-decoration: none;
}

body.wasl-editorial a.wasl-btn-primary {
  color: #fff;
}

body.wasl-editorial a.wasl-btn-outline-light {
  color: #fff;
}

body.wasl-editorial a:hover {
  color: var(--gold);
}

/* Header */
.wasl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.wasl-header.is-scrolled,
.wasl-header.is-menu-open {
  border-bottom: 1px solid var(--line-soft);
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(12px);
}

.wasl-header.is-overlay:not(.is-scrolled):not(.is-menu-open) {
  border-bottom-color: transparent;
  background: transparent;
}

.wasl-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.wasl-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  line-height: 0;
  text-decoration: none;
}

.wasl-logo-img {
  display: block;
  height: 2.35rem;
  width: auto;
  max-width: min(52vw, 14rem);
}

@media (min-width: 640px) {
  .wasl-logo-img {
    height: 2.65rem;
  }
}

@media (min-width: 1024px) {
  .wasl-logo-img {
    height: 3rem;
    max-width: 16rem;
  }
}

.wasl-logo-img--black {
  display: none;
}

.wasl-logo-img--white {
  display: block;
}

.wasl-header.is-scrolled .wasl-logo-img--white,
.wasl-header.is-menu-open .wasl-logo-img--white,
.wasl-header:not(.is-overlay) .wasl-logo-img--white {
  display: none;
}

.wasl-header.is-scrolled .wasl-logo-img--black,
.wasl-header.is-menu-open .wasl-logo-img--black,
.wasl-header:not(.is-overlay) .wasl-logo-img--black {
  display: block;
}

.wasl-nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .wasl-nav-desktop {
    display: flex;
  }
}

.wasl-nav-desktop a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wasl-header.is-overlay:not(.is-scrolled):not(.is-menu-open) .wasl-nav-desktop a {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.wasl-header.is-overlay:not(.is-scrolled):not(.is-menu-open) .wasl-nav-desktop a:hover {
  color: #fff;
}

.wasl-header.is-overlay:not(.is-scrolled):not(.is-menu-open) .wasl-btn-primary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.wasl-header.is-overlay:not(.is-scrolled):not(.is-menu-open) .wasl-btn-primary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}

.wasl-header.is-scrolled .wasl-nav-desktop a,
.wasl-header.is-menu-open .wasl-nav-desktop a,
.wasl-header:not(.is-overlay) .wasl-nav-desktop a {
  color: rgba(26, 46, 26, 0.7);
}

.wasl-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.wasl-menu-toggle {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}

.wasl-header.is-overlay:not(.is-scrolled):not(.is-menu-open) .wasl-menu-toggle {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

@media (min-width: 1024px) {
  .wasl-menu-toggle {
    display: none;
  }
}

.wasl-nav-mobile {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: var(--background);
  padding: 1rem 1.5rem 1.25rem;
}

.wasl-header.is-menu-open .wasl-nav-mobile {
  display: block;
}

.wasl-nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(26, 46, 26, 0.8);
}

/* Editorial buttons */
.wasl-btn {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.wasl-btn-primary {
  background: var(--forest);
  color: #fff;
}

.wasl-btn-primary:hover {
  background: var(--forest-light);
  color: #fff;
}

.wasl-btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.wasl-btn-outline-light:hover,
.wasl-btn-outline-light.is-active {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.wasl-btn-xs {
  min-height: 2.25rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.625rem;
}

.wasl-header.is-scrolled .wasl-btn-outline-light,
.wasl-header:not(.is-overlay) .wasl-btn-outline-light {
  border-color: var(--forest);
  color: var(--forest);
}

.wasl-header .wasl-btn-primary.hidden-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .wasl-header .wasl-btn-primary.hidden-mobile {
    display: inline-flex;
  }
}

/* Hero */
.wasl-hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
}

.wasl-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 8rem;
  background: linear-gradient(180deg, rgba(26, 46, 26, 0.72) 0%, transparent 100%);
  pointer-events: none;
}

.wasl-hero--sub {
  min-height: 60vh;
}

.wasl-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
}

.wasl-hero-gradient-r {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(26, 46, 26, 0.94) 0%,
    rgba(26, 46, 26, 0.78) 38%,
    rgba(26, 46, 26, 0.42) 62%,
    rgba(26, 46, 26, 0.12) 100%
  );
}

.wasl-hero-gradient-t {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(26, 46, 26, 0.55) 0%,
    rgba(26, 46, 26, 0.15) 28%,
    transparent 48%,
    rgba(26, 46, 26, 0.82) 100%
  );
}

.wasl-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 80rem;
  margin: 0 auto;
  padding: 28vh 1.5rem 4rem;
}

.wasl-hero--sub .wasl-hero-inner {
  padding-top: 7rem;
  justify-content: flex-end;
}

.wasl-hero-eyebrow {
  color: var(--gold-light);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

body.wasl-editorial .wasl-hero h1,
body.wasl-editorial .wasl-hero--sub h1 {
  margin-top: 1rem;
  max-width: 14ch;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.wasl-hero-sub {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}

.wasl-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.wasl-hero .wasl-btn-outline-light {
  background: rgba(26, 46, 26, 0.5);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.wasl-hero .wasl-btn-outline-light:hover,
.wasl-hero .wasl-btn-outline-light.is-active {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  color: #fff;
}

.wasl-hero-scroll {
  position: relative;
  z-index: 2;
  margin-top: 1.75rem;
  width: fit-content;
}

@media (min-width: 768px) {
  .wasl-hero-scroll {
    margin-top: 2rem;
  }
}

@media (max-width: 479px) {
  .wasl-hero-scroll {
    display: none;
  }
}

.wasl-hero-scroll p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.wasl-hero-scroll span {
  display: block;
  width: 1px;
  height: 2.5rem;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.4);
}

/* Highlights */
.wasl-highlights {
  border-block: 1px solid var(--line-soft);
  background: var(--cream);
  padding: 3rem 0;
}

.wasl-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .wasl-highlights-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.wasl-highlight-item {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.5rem;
}

.wasl-highlight-item .label-caps {
  color: rgba(26, 46, 26, 0.5);
}

.wasl-highlight-item p:last-child {
  margin-top: 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--forest);
}

/* Sections */
.wasl-section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .wasl-section {
    padding: 6rem 0;
  }
}

.wasl-section--cream {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
}

.wasl-section-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wasl-section .label-caps {
  color: var(--gold);
}

.wasl-section h2 {
  margin-top: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.wasl-prose {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(26, 46, 26, 0.75);
}

.wasl-prose p + p {
  margin-top: 1rem;
}

.wasl-prose a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.wasl-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
  font-size: 0.9375rem;
}

.wasl-subnav a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Video embed */
.wasl-video-block {
  padding: 0 0 3rem;
  margin-top: -1rem;
}

.wasl-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 1rem;
  background-color: var(--forest-dark);
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 40px rgba(26, 46, 26, 0.12);
}

.wasl-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 145%;
  border: 0;
  transform: translate(-50%, -50%);
}

/* Cards grid */
.wasl-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .wasl-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.wasl-card {
  border: 1px solid var(--line-soft);
  background: #fff;
  padding: 1.75rem;
}

.wasl-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.wasl-reference {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
  color: rgba(26, 46, 26, 0.65);
}

/* Gallery */
.wasl-gallery .wasl-prose {
  max-width: 48rem;
}

.wasl-gallery-feature {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--line-soft);
  background: var(--cream-dark);
}

.wasl-gallery-feature img,
.wasl-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wasl-gallery-feature figcaption,
.wasl-gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.5rem 1rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(26, 46, 26, 0.82));
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wasl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

@media (min-width: 1024px) {
  .wasl-gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }
}

.wasl-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-soft);
  background: var(--cream-dark);
}

.wasl-gallery-item img {
  transition: transform 0.45s ease;
}

.wasl-gallery-item:hover img {
  transform: scale(1.02);
}

/* Download panel */
.wasl-download-panel {
  padding: 3rem 0;
}

.wasl-download-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.wasl-download-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .wasl-download-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.wasl-summary-table {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.wasl-summary-table th,
.wasl-summary-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.wasl-summary-table tr:last-child th,
.wasl-summary-table tr:last-child td {
  border-bottom: 0;
}

.wasl-summary-table th {
  width: 42%;
  background: var(--cream);
  font-weight: 500;
  color: var(--forest);
}

.wasl-summary-table td {
  color: rgba(26, 46, 26, 0.75);
}

.wasl-form-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line-soft);
  background: #fff;
  padding: 1.75rem;
}

.wasl-form-card h3 {
  font-size: 1.75rem;
}

.wasl-form-card .form-lead {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(26, 46, 26, 0.65);
}

body.wasl-editorial .wasl-form-card .form {
  background: transparent;
  padding: 0;
  margin-top: 1.5rem;
}

body.wasl-editorial .wasl-form-card .field span {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 46, 26, 0.6);
}

body.wasl-editorial .wasl-form-card .field > input {
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid rgba(45, 74, 45, 0.15);
  background: var(--background);
  color: var(--foreground);
  padding: 0.85rem 1rem;
  font-size: 0.9375rem;
  border-radius: 0.35rem;
  box-sizing: border-box;
  min-height: 2.75rem;
}

body.wasl-editorial .wasl-form-card .phone-row {
  display: grid;
  grid-template-columns: minmax(7.25rem, auto) 1fr;
  gap: 0.5rem;
  align-items: stretch;
  margin-top: 0.5rem;
}

body.wasl-editorial .wasl-form-card .phone-row .country-picker {
  display: flex;
  align-self: stretch;
}

body.wasl-editorial .wasl-form-card .country-picker-trigger,
body.wasl-editorial .wasl-form-card .phone-row input[type="tel"] {
  margin-top: 0;
  width: 100%;
  min-height: 2.75rem;
  height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid rgba(45, 74, 45, 0.15);
  border-radius: 0.35rem;
  background: var(--background);
  color: var(--foreground);
  font-size: 0.9375rem;
  box-sizing: border-box;
}

body.wasl-editorial .wasl-form-card .country-picker-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  cursor: pointer;
}

body.wasl-editorial .wasl-form-card .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 9999px;
  background: var(--forest);
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

body.wasl-editorial .wasl-form-card .btn-primary:hover {
  background: var(--forest-light);
  color: #fff;
}

body.wasl-editorial .wasl-form-card .form-disclaimer {
  color: rgba(26, 46, 26, 0.62);
  text-align: left;
  margin-top: 1rem;
}

body.wasl-editorial .wasl-form-card .form-disclaimer a {
  color: var(--forest);
}

/* FAQ */
.wasl-faq dl {
  margin-top: 2rem;
  border-block: 1px solid var(--line-soft);
}

.wasl-faq dt {
  padding-top: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--forest);
}

.wasl-faq dd {
  padding-bottom: 1.5rem;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(26, 46, 26, 0.7);
}

/* Register CTA */
.wasl-register-cta {
  border-top: 1px solid var(--line-soft);
  background: var(--cream);
  padding: 4rem 0;
}

.wasl-register-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.wasl-register-cta p {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(26, 46, 26, 0.7);
}

.wasl-register-cta .wasl-btn {
  margin-top: 2rem;
}

/* Footer */
.wasl-footer {
  background: var(--forest-dark);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wasl-footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.wasl-footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .wasl-footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.wasl-footer-brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.wasl-footer-logo {
  display: inline-block;
  line-height: 0;
}

.wasl-footer-logo img {
  height: 2.75rem;
  width: auto;
  max-width: 14rem;
}

@media (min-width: 640px) {
  .wasl-footer-logo img {
    height: 3.25rem;
  }
}

.wasl-footer-tag {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
}

.wasl-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.wasl-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.wasl-footer-links a:hover {
  color: #fff;
}

.wasl-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.wasl-footer-copy {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Modal overrides on editorial pages */
body.wasl-editorial .register-modal-dialog {
  background: #fff;
  color: var(--foreground);
}

body.wasl-editorial .register-modal-title {
  color: var(--forest);
  white-space: normal;
}

body.wasl-editorial .register-modal-lead,
body.wasl-editorial .register-modal-eyebrow {
  color: rgba(26, 46, 26, 0.65);
}

body.wasl-editorial .register-modal-body .wasl-form-card {
  border: none;
  padding: 0;
}

body.wasl-editorial .register-modal-dialog .form,
body.wasl-editorial .form.form-modal {
  background: transparent;
}

body.wasl-editorial .register-modal-dialog .field span,
body.wasl-editorial .form.form-modal .field span {
  color: rgba(26, 46, 26, 0.6);
}

body.wasl-editorial .register-modal-dialog .field > input,
body.wasl-editorial .form.form-modal .field > input {
  margin-top: 0.5rem;
  min-height: 2.75rem;
  border-radius: 0.35rem;
  box-sizing: border-box;
}

body.wasl-editorial .register-modal-dialog .phone-row,
body.wasl-editorial .form.form-modal .phone-row {
  display: grid;
  grid-template-columns: minmax(7.25rem, auto) 1fr;
  gap: 0.5rem;
  align-items: stretch;
  margin-top: 0.5rem;
}

body.wasl-editorial .register-modal-dialog .phone-row input[type="tel"],
body.wasl-editorial .form.form-modal .phone-row input[type="tel"],
body.wasl-editorial .register-modal-dialog .phone-row .country-picker-trigger,
body.wasl-editorial .form.form-modal .phone-row .country-picker-trigger {
  margin-top: 0;
  min-height: 2.75rem;
  height: 2.75rem;
  box-sizing: border-box;
}

body.wasl-editorial .register-modal-dialog .form input,
body.wasl-editorial .register-modal-dialog .form .country-picker-trigger,
body.wasl-editorial .form.form-modal input,
body.wasl-editorial .form.form-modal .country-picker-trigger {
  background: #fff;
  border-color: rgba(45, 74, 45, 0.15);
  color: var(--foreground);
}

body.wasl-editorial .register-modal-dialog .btn-primary,
body.wasl-editorial .form.form-modal .btn-primary {
  background: var(--forest);
  color: #fff;
  border-radius: 9999px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

body.wasl-editorial .register-modal-dialog .btn-primary:hover,
body.wasl-editorial .form.form-modal .btn-primary:hover {
  background: var(--forest-light);
  color: #fff;
}

body.wasl-editorial .form.form-modal .form-disclaimer,
body.wasl-editorial .register-modal-dialog .form-disclaimer {
  color: rgba(26, 46, 26, 0.62);
}

body.wasl-editorial .form.form-modal .form-disclaimer a,
body.wasl-editorial .register-modal-dialog .form-disclaimer a {
  color: var(--forest);
}

body.wasl-editorial .float-register .btn,
body.wasl-editorial .float-register .btn-primary {
  border-radius: 9999px;
  background: var(--forest);
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

body.wasl-editorial .float-register .btn:hover,
body.wasl-editorial .float-register .btn-primary:hover {
  background: var(--forest-light);
  color: #fff;
}
