/* ==========================================================================
   LandingPage.css — Landing/Home page
   --------------------------------------------------------------------------
      Contents: Tokens • Global wrappers • Hero/news carousel • Project description • Planning slider • News split section • Contact form • Responsive • Dev utilities
   Notes: Keep selector order—several blocks intentionally override earlier ones at smaller breakpoints.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */

:root {
  --page-max: 1200px;
  --page-pad: clamp(16px, 3vw, 48px);

  --h1: clamp(24px, 2.4vw, 44px);
  --h2: clamp(20px, 2vw, 36px);
  --p: clamp(14px, 1.1vw, 18px);

  --radius-lg: 25px;
  --shadow-sm: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
}


/* --------------------------------------------------------------------------
   Global wrappers / overflow management
   -------------------------------------------------------------------------- */

.page-wrap {
  background-color: white;
  overflow-x: hidden;
  overflow-y: visible;
}

.project-description {
  position: relative;
}


/* --------------------------------------------------------------------------
   Hero header + news carousel
   -------------------------------------------------------------------------- */

.landing-page-header-div,


/* --------------------------------------------------------------------------
   Project description section + decorative creatures
   -------------------------------------------------------------------------- */

.project-description-parent,


/* --------------------------------------------------------------------------
   Mid-page split news section
   -------------------------------------------------------------------------- */

.news-section,


/* --------------------------------------------------------------------------
   Contact section + form
   -------------------------------------------------------------------------- */

.contact-us-section {
  overflow-x: clip;
  overflow-y: visible;

}

.landing-page-header-div {
  background-position: center;
  background-repeat: no-repeat;
  height: auto;
  width: 100%;
  background-color: #FFF1E1;
  position: relative;
  padding-bottom: 5%;
}

/* Background pattern is purely decorative and should not intercept pointer events. */

.background-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0
}

/* Decorative separator used at the top of sections. */

.decorative-bar {
  width: 100%;
  height: 4px;
  background-color: #FFF1E1;
  margin-bottom: 4px;
}


/* Carousel layout */

.news-caroussel {
  width: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  z-index: 2;

  padding-left: clamp(10px, 2vw, 32px);
  padding-right: clamp(10px, 2vw, 32px);

  top: clamp(16px, 2vw, 40px);
  box-sizing: border-box;
}

.news-caroussel-inner {
  flex: 0 1 auto;
  width: min(var(--page-max), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
}

.arrow {
  position: relative;
  transform: none;

  flex: 0 0 auto;
  width: clamp(64px, 5.5vw, 110px);
  height: clamp(64px, 5.5vw, 110px);

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(2px);
  z-index: 5;
}

.arrow-left {
  left: auto;
}

.arrow-right {
  right: auto;
}

.arrow img {
  width: 70%;
  height: auto;

  transform: scale(1.35);
  transform-origin: center;
}

.arrow.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}


/* Carousel content (image + text) */

.news-content {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
  margin: 0;
}

.news-content-image {
  aspect-ratio: 4 / 3;
  flex: 1 1 52%;
  min-width: 0;
  position: relative;
}

.news-content-details {
  flex: 1 1 48%;
  min-width: 0;
  margin-top: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.shadow-shape {
  position: relative;
  width: 80%;
  height: auto;
  opacity: 1;
  left: 0;
}


.news-caroussel .carousel-state {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.news-caroussel .carousel-slide {
  display: none;
}

.news-caroussel .arrow-state {
  display: none;
}

/* Labels behave like buttons */
.news-caroussel label.arrow,
.news-caroussel .slider-buttons label.slider-dot {
  cursor: pointer;
  user-select: none;
}

/* Active dot marker without JS */
.news-caroussel .slider-buttons label.slider-dot::after {
  content: '';
  position: absolute;
  width: clamp(9px, 0.9vw, 12px);
  height: clamp(9px, 0.9vw, 12px);
  background-color: #FF2D55;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

/* Show the active slide */
#hero-slide-0:checked~.news-caroussel-inner .slide-0 {
  display: block;
}

#hero-slide-1:checked~.news-caroussel-inner .slide-1 {
  display: block;
}

#hero-slide-2:checked~.news-caroussel-inner .slide-2 {
  display: block;
}

/* Show the correct arrows for the active slide */
#hero-slide-0:checked~.arrow-left-0 {
  display: flex;
}

#hero-slide-0:checked~.arrow-right-0 {
  display: flex;
}

#hero-slide-1:checked~.arrow-left-1 {
  display: flex;
}

#hero-slide-1:checked~.arrow-right-1 {
  display: flex;
}

#hero-slide-2:checked~.arrow-left-2 {
  display: flex;
}

#hero-slide-2:checked~.arrow-right-2 {
  display: flex;
}

/* Mark the active dot */
#hero-slide-0:checked~.news-caroussel-inner .slider-buttons label[for="hero-slide-0"]::after {
  opacity: 1;
}

#hero-slide-1:checked~.news-caroussel-inner .slider-buttons label[for="hero-slide-1"]::after {
  opacity: 1;
}

#hero-slide-2:checked~.news-caroussel-inner .slider-buttons label[for="hero-slide-2"]::after {
  opacity: 1;
}

/* Hide Learn More completely when the slide has no news id */
.learn-more-button.is-hidden {
  display: none;
}

/* Slider image mask: requires the SVG/PNG mask asset to exist at /assets/img/slider-image.png.
   -webkit-mask-* is included for Safari/WebKit. */

.news-image {
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mask-image: url('/assets/img/slider-image.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url('/assets/img/slider-image.png');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}


/* Carousel dots */

.slider-buttons {
  display: flex;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  width: auto;
}

.slider-buttons .slider-dot {
  width: clamp(18px, 1.4vw, 22px);
  height: clamp(18px, 1.4vw, 22px);
  border-radius: 50%;
  display: inline-block;

  border: 2px solid #FF8D28;
  background-color: #FF968040;

  position: relative;
  text-decoration: none;
}

.slider-buttons .slider-dot.is-active::after {
  content: '';
  position: absolute;
  width: clamp(9px, 0.9vw, 12px);
  height: clamp(9px, 0.9vw, 12px);
  background-color: #FF2D55;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider-buttons input[type='radio'] {
  display: none;
}

.slider-buttons label {
  width: clamp(18px, 1.4vw, 22px);
  height: clamp(18px, 1.4vw, 22px);
  border-width: 2px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid #FF8D28;
  background-color: #FF968040;
}

.slider-buttons input[type='radio']:checked+label::after {
  content: '';
  position: absolute;
  width: clamp(9px, 0.9vw, 12px);
  height: clamp(9px, 0.9vw, 12px);
  background-color: #FF2D55;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* Carousel typography */

.slider-texts h1 {
  font-size: var(--h1);
  color: #FF2D55;
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  line-height: 1.15;
}

.slider-texts p {
  font-size: var(--p);
  color: #000000;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.35;
  text-align: justify;
  text-justify: inter-word;
}


/* CTA */

.learn-more-button button {
  background-color: #FFCC00;
  color: black;
  border: none;
  padding: 14px clamp(22px, 4vw, 70px);
  font-size: clamp(14px, 1vw, 16px);
  border-radius: 999px;
  cursor: pointer;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
}

.co-funded-logo img {
  max-width: 50%;
  margin-top: 30px;
}

.project-description-parent {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 60px);

  position: relative;
  overflow: visible !important;
  overflow-x: clip;
  overflow-y: visible;

  --creatureW: clamp(180px, 22vw, 360px);
  --overhang: clamp(60px, 6vw, 140px);
  --creatureTop: clamp(110px, 14vw, 210px);

  padding: 0;
}

.project-description-bleed .red-creature,
.project-description-bleed .phone-creature {
  position: absolute;
  top: var(--creatureTop);
  width: var(--creatureW);
  height: auto;
}

.project-description-bleed .red-creature {
  left: calc(-1 * var(--overhang));
}

.project-description-bleed .phone-creature {
  right: calc(-1 * var(--overhang));
  transform: rotate(-15deg);
  transform-origin: center;
}

.project-description-bleed .red-creature img,
.project-description-bleed .phone-creature img {
  width: 100%;
  height: auto;
  display: block;
}

.project-description {
  width: min(var(--page-max), 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;
  z-index: 2;

  padding: 0 var(--page-pad);
  padding-left: clamp(16px, 8vw, 160px);
  padding-right: clamp(16px, 8vw, 160px);
  box-sizing: border-box;
}

.project-description-bleed {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  height: 100%;

  pointer-events: none;
  z-index: 1;

  overflow: visible;
}

.project-description-logo {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 25px;

  position: relative;
  z-index: 2;
}

.project-description-logo img {
  width: 20%;
}

.project-description h1 {
  font-size: var(--h1);
  color: #FF2D55;
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  line-height: 1.15;
  position: relative;
  z-index: 2;
}

.project-description p {
  font-size: clamp(13px, 1vw, 16px);
  color: #404040;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  max-width: 70ch;
  margin-bottom: clamp(14px, 2vw, 28px);
  position: relative;
  z-index: 2;
}

.project-details-image-div {
  position: relative;
  width: 100%;
  margin-top: clamp(18px, 2.6vw, 42px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-details-shape {
  position: absolute;
  width: 50%;
  height: auto;
  z-index: 1;
  opacity: 1;
}

.project-details-image {
  position: relative;
  width: 40%;
  height: auto;
  z-index: 1;
  opacity: 1;
}


/* --------------------------------------------------------------------------
   Planning slider
   -------------------------------------------------------------------------- */

.planning-div {
  width: 100%;
  margin-top: clamp(34px, 4.8vw, 74px);
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--page-pad);
  box-sizing: border-box;
}

.planning-div h1 {
  margin: 0;
}

.planning-div p {
  max-width: 70ch;
  margin: 12px auto 0 auto;
  text-align: center;
}

.planning-slider {
  width: min(1034px, 100%);
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;

  --trackH: clamp(12px, 1.6vw, 16px);
  --dot: clamp(26px, 3.2vw, 32px);
  --ring: clamp(4px, 0.7vw, 5px);
  --trackInset: calc((var(--dot) / 2) + var(--ring) + 6px);
  --labelSize: clamp(12px, 1.4vw, 19px);
  --labelGap: 8px;

  padding-bottom: calc(var(--labelGap) + var(--labelSize) + 6px);
  box-sizing: border-box;
}

.planning-track {
  position: absolute;

  left: var(--trackInset, calc(var(--dot) / 2));
  right: var(--trackInset, calc(var(--dot) / 2));

  top: calc((var(--dot) / 2) - (var(--trackH) / 2));
  height: var(--trackH);

  background: rgba(120, 120, 128, 0.16);
  border-radius: 999px;
  overflow: hidden;
  z-index: 1;
}

.planning-track-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width 0.35s ease;
}

.planning-points {
  position: relative;
  z-index: 2;
}

.planning-point-container {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;

  transform: translateX(-50%);
}

.planning-point-container:nth-child(1) {
  left: var(--trackInset);
}

.planning-point-container:nth-child(2) {
  left: calc(var(--trackInset) + ((100% - (2 * var(--trackInset))) * 0.25));
}

.planning-point-container:nth-child(3) {
  left: calc(var(--trackInset) + ((100% - (2 * var(--trackInset))) * 0.5));
}

.planning-point-container:nth-child(4) {
  left: calc(var(--trackInset) + ((100% - (2 * var(--trackInset))) * 0.75));
}

.planning-point-container:nth-child(5) {
  left: calc(var(--trackInset) + ((100% - (2 * var(--trackInset))) * 1));
}

.planning-point {
  width: var(--dot);
  height: var(--dot);
  border-radius: 50%;
  background: #FAFAFA;
  border: var(--ring) solid #E5E5E6;
  box-sizing: border-box;
  cursor: default;
}

.planning-point.is-done {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

.planning-point.is-current {
  background: #E5E5E6;
  border-color: #E5E5E6;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.06);
}

.planning-point-inner {
  position: absolute;
  width: var(--inner);
  height: var(--inner);
  border-radius: 50%;

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.planning-point-label {
  margin-top: var(--labelGap);
  font-family: "Fredoka One", "Fredoka", sans-serif;
  font-weight: 400;
  font-size: var(--labelSize);
  line-height: 23px;
  text-align: center;
  white-space: nowrap;
}

.news-section {
  width: 100%;
  margin-top: 60px;
  background-color: #FFF1E1;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  min-height: 400px;
}

.news-section-image {
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  box-sizing: border-box;
  margin-right: 0;
}

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

.news-section-text {
  flex: 1 1 50%;
  font-size: 18px;
  color: #000000;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5%;
  padding-left: 50px;
  height: 100% !important;
  box-sizing: border-box;
  overflow: auto;
}

.news-section-text h1,
.news-section-text h2,
.news-section-text p {
  max-width: 100%;
  word-wrap: break-word;
}

.news-section-text h1 {
  font-size: var(--h1);
  color: #FF2D55;
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  line-height: normal;
}

.news-section-text h2 {
  font-size: var(--h2);
  color: #404040;
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  line-height: normal;
}

.news-section-text p {
  font-size: var(--p);
  line-height: 1.4;
  color: #404040;
  font-family: "Fredoka", sans-serif;
  text-align: justify;
  text-justify: inter-word;
}

.contact-us-section {
  position: relative;
  width: 100%;
  background: url('/assets/img/background-pattern.png');
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 4vw, 60px);

  padding: clamp(32px, 5vw, 70px) var(--page-pad);
  padding-bottom: clamp(50px, 6vw, 90px);
  box-sizing: border-box;
}

.contact-us-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.93);
  pointer-events: none;
  z-index: 0;
}

.contact-us-section>* {
  position: relative;
  z-index: 1;
}

.contact-us-section h1 {
  font-size: var(--h1);
  color: #FF2D55;
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  line-height: normal;
}

.contact-us-section p {
  font-size: var(--p);
  color: #404040;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.contact-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.contact-container {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;

  z-index: 2;
}

.form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.form-row input,
textarea {
  background-color: #FFF1E1;
  border: 0px solid #FFCC00;
  border-radius: 22px;
  font-size: clamp(14px, 1vw, 16px);
  padding: 20px;
  color: black;
  font-family: "Inter", sans-serif;
}

.contact-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  width: 100%;
}

.contact-actions button {
  background-color: #FFCC00;
  color: black;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  width: 100%;
}

.left-image,
.right-image {
  flex: 0 0 auto;
  width: clamp(120px, 18vw, 260px);
  align-self: center;
  margin: 0;
  z-index: 1;
  pointer-events: none;
}

.left-image img,
.right-image img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 0;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #999999;
  opacity: 1;
}

.form-row input::-webkit-input-placeholder,
.form-row textarea::-webkit-input-placeholder {
  color: #999999;
}

.form-row input:-ms-input-placeholder,
.form-row textarea:-ms-input-placeholder {
  color: #999999;
}

.form-row input::-ms-input-placeholder,
.form-row textarea::-ms-input-placeholder {
  color: #999999;
}


/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media screen and (max-aspect-ratio: 16/9) {
  .landing-page-header-div {
    background-size: cover;
  }
}

@media (min-width: 1600px) {
  .landing-page-header-div {
    padding-top: clamp(18px, 1.2vw, 42px);
  }

  .news-caroussel {
    padding-left: clamp(24px, 3vw, 110px);
    padding-right: clamp(24px, 3vw, 110px);
    column-gap: clamp(18px, 2vw, 48px);
  }

  :root {
    --page-max: 1320px;
  }
}

/* Desktop (e.g., 1440px wide): add breathing room under the navbar */
@media (min-width: 1200px) and (max-width: 1599px) {
  .landing-page-header-div {
    padding-top: clamp(16px, 1.2vw, 28px);
  }
}


@media only screen and (max-width: 1024px) {
  .news-section {
    flex-direction: column;
    min-height: auto;
  }

  .news-section-image,
  .news-section-text {
    flex: none;
    width: 100%;
    height: auto;
  }

  .news-section-text {
    padding: 20px;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .news-content {
    gap: 16px;
  }

  .news-content-image {
    flex: 1 1 48%;
  }

  .news-content-details {
    flex: 1 1 52%;
  }
}

@media (max-width: 1024px) and (min-width: 721px) {
  .news-caroussel {
    top: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    column-gap: 18px;
  }

  .slider-buttons {
    margin-top: 6px;
    margin-bottom: 18px;
  }

  .landing-page-header-div {
    padding-bottom: 18px;
  }
}

@media (max-width: 720px) {

  .project-description-bleed {
    display: none;
  }

  .news-caroussel-inner {
    width: calc(100% - (var(--page-pad) * 2));
  }

  .news-content {
    flex-direction: column;
    align-items: stretch;
  }

  .news-content-image,
  .news-content-details {
    width: 100%;
  }

  .news-content-details {
    text-align: center;
  }

  .co-funded-logo img {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .red-creature,
  .phone-creature {
    display: none;
  }
}

/* Tablet range (≈721–900px): reduce decorative creature footprint.
   We size via CSS variables (containers) instead of overriding <img> widths.
   This avoids the case where the image shrinks but the absolutely-positioned
   container still overlaps the text column. */
@media (max-width: 900px) and (min-width: 721px) {
  .project-description-parent {
    /* Smaller creatures + more negative overhang so they stay outside the text column. */
    --creatureW: clamp(120px, 20vw, 170px);
    --overhang: clamp(100px, 12vw, 170px);
  }
}

@media (max-width: 520px) {

  .news-caroussel {
    position: relative;
    padding-left: 64px;
    padding-right: 64px;
    justify-content: center;
  }

  .news-caroussel-inner {
    width: 100%;
    position: relative;
  }

  .slider-buttons {
    position: absolute;
    top: 14px;

    left: 50%;
    right: auto;
    transform: translateX(-50%);

    margin: 0;
    z-index: 6;

    justify-content: flex-start;
    width: auto;
  }

  .news-content {
    padding-top: 44px;
  }

  .news-content-image {
    margin: 0;
  }

  .news-caroussel .arrow {
    position: absolute;
    top: 235px;
    transform: translateY(-50%);
    z-index: 5;

    width: 44px;
    height: 44px;
  }

  .news-caroussel .arrow-left {
    left: 10px;
  }

  .news-caroussel .arrow-right {
    right: 10px;
  }

  .news-content-details {
    align-items: center;
    text-align: center;
  }

  .project-description h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .project-description p,
  .planning-div p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .red-creature,
  .phone-creature,
  .left-image,
  .right-image {
    display: none;
  }

  .planning-slider {
    padding-bottom: calc(var(--labelGap) + (var(--labelSize) * 2.8) + 10px);
  }

  .planning-point-label {
    white-space: normal;
    max-width: 70px;
    line-height: 1.05;
    overflow-wrap: anywhere;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .planning-slider .slider-point-label {
    white-space: normal;
    max-width: 70px;
  }

  .contact-us-section {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  .slider-texts p {
    text-align: justify;
    text-justify: inter-word;
  }

}


@media (max-width: 420px) {
  .planning-slider {
    padding-bottom: calc(var(--labelGap) + (var(--labelSize) * 3.2) + 12px);
  }

  .planning-slider .slider-point-label {
    white-space: normal;
    max-width: 70px;
    font-size: 11px;
    line-height: 1.05;
  }
}

@media (max-width: 340px) {
  .planning-slider .slider-point-label {
    max-width: 58px;
  }

  .planning-point-label {
    max-width: 58px;
  }

  .news-caroussel .arrow {
    top: 220px;
  }
}


/* --------------------------------------------------------------------------
   Dev / QA utilities (remove if not used in production)
   -------------------------------------------------------------------------- */

.toast-test-row {
  width: 100%;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.toast-test-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;

  background: #ffcc00;
  color: #172a2d;

  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 14px;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.toast-test-btn--error {
  background: #172a2d;
  color: #fff1e1;
  border: 2px solid rgba(255, 45, 85, 0.55);
}