.hero-section {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero-slider,
.hero-slider__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 3860 / 2160;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  background-color: #1b89d2;
}

.hero-slide__link,
.hero-slide__picture,
.hero-slide__image,
.hero-slide__video {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide__link {
  cursor: pointer;
}

.hero-slide__image,
.hero-slide__video {
  object-fit: cover;
  object-position: center;
}

.hero-slide__video {
  background: #1b89d2;
}

.hero-slide__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 76px;
  height: 76px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.hero-slide__play:hover,
.hero-slide__play:focus-visible {
  border-color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  transform: translate(-50%, -50%) scale(1.06);
}

.hero-slide__play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #ffffff;
}

.hero-video-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero-video-modal,
.hero-video-modal[hidden] {
  display: none;
}

body.has-hero-video-modal .hero-video-modal {
  display: grid;
}

.hero-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 16, 26, 0.82);
}

.hero-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 92vw);
  background: #000000;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.hero-video-modal__video {
  display: block;
  width: 100%;
  max-height: 78vh;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.hero-video-modal__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.hero-video-modal__close::before,
.hero-video-modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #ffffff;
}

.hero-video-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-video-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero-video-modal__close:hover,
.hero-video-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

body.has-hero-video-modal {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide__video {
    animation: none;
  }
}

.hero-section__pager {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 4;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.hero-slider__dot.is-active {
  background: #fff;
}

.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
  transform: scale(1.35);
  background: rgba(255, 255, 255, 0.82);
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-50%);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-slider__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero-slider__arrow--prev {
  left: 28px;
}

.hero-slider__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.hero-slider__arrow--next {
  right: 28px;
}

.hero-slider__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.intro-section {
  background: #fff;
}

.intro-section__inner {
  max-width: 930px;
  text-align: center;
}

.intro-section p {
  margin: 0;
  font-size: 18px;
  line-height: 2.1;
  color: #333f50;
}

.intro-section p + p {
  margin-top: 28px;
}

.intro-section__closing {
  position: relative;
  padding-bottom: 28px;
}

.intro-section__closing::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 96px;
  height: 1px;
  background: #33A4C0;
  transform: translateX(-50%);
}

.gallery-strip {
  padding-top: 0;
}

.gallery-strip__slider {
  position: relative;
  padding: 0 54px;
}

.gallery-strip__viewport {
  overflow: hidden;
}

.gallery-strip__track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.gallery-strip__slider.is-static {
  padding: 0;
}

.gallery-strip__slider.is-static .gallery-strip__track {
  justify-content: center;
}

.gallery-strip__slider.is-static .gallery-strip__arrow {
  display: none;
}

.gallery-strip__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #b7c9d8;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-strip__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.gallery-strip__arrow--prev {
  left: 0;
}

.gallery-strip__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.gallery-strip__arrow--next {
  right: 0;
}

.gallery-strip__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.gallery-strip__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.gallery-strip__arrow:not(:disabled):hover,
.gallery-strip__arrow:not(:disabled):focus-visible {
  transform: translateY(-50%) scale(1.08);
}

.thumb-card {
  position: relative;
  flex: 0 0 calc((100% - 90px) / 4);
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.thumb-card__image,
.thumb-card__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.thumb-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.thumb-card__play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #ffffff;
}

.thumb-card--video {
  appearance: none;
}

.thumb-card:hover,
.thumb-card:focus-visible {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 48px rgba(26, 61, 94, 0.18);
  filter: saturate(1.08);
}

.thumb-card:hover .thumb-card__image,
.thumb-card:focus-visible .thumb-card__image,
.thumb-card:hover .thumb-card__video,
.thumb-card:focus-visible .thumb-card__video {
  transform: scale(1.04);
}

.thumb-card--video:hover .thumb-card__play,
.thumb-card--video:focus-visible .thumb-card__play {
  background: rgba(0, 0, 0, 0.52);
  transform: translate(-50%, -50%) scale(1.08);
}

.thumb-card--harbor {
  background: linear-gradient(135deg, #d6c796, #f2e8c1 55%, #8ba9bf);
}

.thumb-card--map {
  background: linear-gradient(135deg, #e8e7d7, #f8f6ec 45%, #bdd5ea 46%, #d6ece7);
}

.thumb-card--plan {
  background: linear-gradient(135deg, #f3d468, #70cbdf 42%, #a6d65e 68%, #f8cf5f);
}

.thumb-card--night {
  background: linear-gradient(135deg, #ffd4bb, #3f78a8 46%, #132f53);
}

.about-section {
  display: flex;
  align-items: center;
  min-height: calc(100vw * 730 / 1920);
  padding-bottom: 108px;
  background-color: #ffffff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-heading--about {
  margin-bottom: 100px;
}

.section-heading--access,
.section-heading--activities,
.section-heading--news {
  margin-bottom: 42px;
}

.about-section__grid {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.feature-tile {
  text-align: center;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-tile:hover,
.feature-tile:focus-visible {
  transform: translateY(-6px);
}

.feature-tile:hover .feature-tile__icon,
.feature-tile:focus-visible .feature-tile__icon {
  transform: scale(1.04);
}

.feature-tile__icon {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 240px;
  margin: 0 auto 12px;
  transition: transform 0.28s ease;
}

.feature-tile__icon img {
  width: 100%;
  height: auto;
}

.feature-tile h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: #FF9C3F;
  line-height: 1.2;
  letter-spacing: 6px;
}

.access-section {
  display: flex;
  align-items: center;
  min-height: calc(100vw * 760 / 1920);
  background-color: #ffffff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.access-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  width: 100%;
  max-width: 1030px;
  margin: 100px  auto 0;

}

.access-card {
  display: block;
  color: inherit;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.access-card:hover,
.access-card:focus-visible {
  transform: translateY(-6px);
}

.access-card:hover .access-card__icon,
.access-card:focus-visible .access-card__icon {
  transform: translateY(-4px);
}

.access-card__icon {
  width: min(180px, 100%);
  margin: 0 auto 14px;
  transition: transform 0.3s ease;
}

.access-card__icon img {
  width: 100%;
  height: auto;
}

.access-card__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5765;
}

.access-section__actions,
.news-section__actions {
  margin-top: 60px;
  text-align: center;
}

.activities-section__actions .button,
.news-section__actions .button,
.investment-section__actions .button {
  min-width: 156px;
  height: 46px;
  padding: 0 28px;
  border: 1px solid #595959;
  border-radius: 10px;
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 44px;
}

.activities-section__actions .button:hover,
.activities-section__actions .button:focus-visible,
.news-section__actions .button:hover,
.news-section__actions .button:focus-visible,
.investment-section__actions .button:hover,
.investment-section__actions .button:focus-visible {
  /*background: #cdcdcd;*/
  /*border-color: #4c4c4c;*/
  /*color: #151515;*/
}

.activities-section {
  background: #F3F9FF;
}

.activities-slider {
  position: relative;
  padding: 0 120px;
  margin-top: 100px;
  margin-bottom: 60px;
}

.activities-slider__viewport {
  overflow: hidden;
}

.activities-slider__track {
  display: flex;
  gap: 60px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.activities-slider--empty {
  padding: 0;
}

.activities-slider--empty .activities-slider__track {
  display: flex;
  justify-content: center;
}

.activities-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  color: #7c8896;
  font-size: 16px;
  text-align: center;
}

.activities-empty p {
  margin: 0;
}

.event-card {
  flex: 0 0 calc((100% - 120px) / 3);
  background: #fff;
  /* box-shadow: 0 12px 26px rgba(26, 61, 94, 0.18); */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover,
.event-card:focus-visible {
  transform: translateY(-8px);
  /*box-shadow: 0 18px 34px rgba(26, 61, 94, 0.24);*/
}

.event-card:hover .event-card__poster,
.event-card:focus-visible .event-card__poster {
  transform: scale(1.02);
}

.event-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.event-card__poster {
  aspect-ratio: 1 / 1;
  background-color: #eaf4fb;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

.event-card__body {
  padding: 16px 18px 14px;
}

.event-card__date {
  margin: 10px 0 0;
  color: #7c8896;
  font-size: 12px;
}

.activities-section .event-card h3 {
  color: #2d8db8;
  font-size: 18px;
  line-height: 1.45;
}

.activities-section .event-card p {
  font-size: 13px;
  line-height: 1.75;
}

.activities-slider__arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #b7c9d8;
  transform: translateY(-50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.activities-slider__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.activities-slider__arrow--prev {
  left: -10px;
}

.activities-slider__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.activities-slider__arrow--next {
  right: -10px;
}

.activities-slider__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.activities-slider__arrow:disabled {
  opacity: 0.35;
}

.activities-slider--empty .activities-slider__arrow {
  display: none;
}

.activities-slider__arrow:not(:disabled):hover,
.activities-slider__arrow:not(:disabled):focus-visible {
  transform: translateY(-50%) scale(1.08);
}

.event-card h3,
.news-card h3,
.news-section__lead-body h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.5;
}

.event-card p,
.news-card p,
.news-section__lead-body p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.9;
}

.news-section {
  background-image: linear-gradient(180deg, #ffffff, #fbfcfe);
  background-position: center, center;
  background-size: cover, auto;
  background-repeat: no-repeat;
}

.news-section__lead {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
}

.news-section__lead-media,
.news-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.news-section__lead-media:hover,
.news-section__lead-media:focus-visible,
.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-8px);
  /*box-shadow: 0 24px 48px rgba(26, 61, 94, 0.16);*/
}

.news-section__lead-media {
  width: 100%;
  max-width: 890px;
  aspect-ratio: 890 / 500;
  min-height: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, #547db9, #9fd2f3 54%, #d7edf6);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.kicker {
  margin: 0 0 10px;
  color: #6a87b1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.news-section__lead-body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0px 40px;
}

.news-section__lead-body .kicker {
  display: none;
}

.news-section__lead-body h3 {
  margin: 0;
  color: #111111;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
}

.news-section__lead-body p {
  margin-top: 26px;
  color: #5e5e5e;
  font-size: 18px;
  line-height: 1.75;
}

.news-section__lead-body .text-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #191919;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-section__lead-body .text-link::after {
  content: "\2192";
  font-size: 26px;
  line-height: 1;
}

.news-section__lead-body .text-link:hover,
.news-section__lead-body .text-link:focus-visible {
  color: #000000;
}

.news-section__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card__image {
  width: 100%;
  max-width: 565px;
  aspect-ratio: 565 / 315;
  margin: 0 auto 18px;
  border-radius: 4px;
  background-color: #eaf4fb;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news-card:hover .news-card__image,
.news-card:focus-visible .news-card__image {
  filter: saturate(1.08);
}

.news-card--sea h3,
.news-card--sand h3,
.news-card--sunset h3 {
  margin-bottom: 14px;
  color: #111111;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card__date {
  margin: 0;
  color: #1f1f1f;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-card__arrow {
  margin-top: 12px;
  display: inline-flex;
  color: #111111;
  font-size: 28px;
  line-height: 1;
}

.news-card__arrow:hover,
.news-card__arrow:focus-visible {
  color: #000000;
}

.home-page section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.home-page .hero-section {
  opacity: 1;
  transform: none;
}

.home-page section.is-visible {
  opacity: 1;
  transform: translateY(0);
}



.investment-section {
  background: #ffffff;
}

.section-heading--investment {
  margin-bottom: 34px;
}

.investment-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.investment-card {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-card__link {
  display: block;
}

.investment-card:hover,
.investment-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(41, 66, 98, 0.2);
}

.investment-card__media {
  width: 100%;
  aspect-ratio:865/380;
  background-color: #eaf4fb;
  background-size: cover;
  background-position: center;
}

.investment-section__grid .activities-empty {
  grid-column: 1 / -1;
}

.activities-section__actions,
.investment-section__actions {
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 1100px) {
  .home-page .nsw-section-title__icon {
    width: 76px;
  }

  .home-page .nsw-section-title__text {
    margin-right: -8px;
    font-size: 38px;
    letter-spacing: 8px;
  }

  .about-section__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
  }

  .feature-tile h3 {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .news-section__lead-body {
    padding: 38px 30px 32px;
  }

  .news-section__lead-body h3 {
    font-size: 36px;
  }

  .news-section__lead-body p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
  }

  .news-section__lead-body .text-link {
    margin-top: 22px;
  }

  .hero-slider__arrow {
    width: 40px;
    height: 40px;
  }

  .hero-slide__play {
    width: 64px;
    height: 64px;
  }

  .hero-slide__play-icon {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 19px;
  }

  .hero-slider__arrow--prev {
    left: 16px;
  }

  .hero-slider__arrow--next {
    right: 16px;
  }

  .news-section__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip__slider {
    padding: 0 46px;
  }

  .thumb-card {
    flex-basis: calc((100% - 60px) / 3);
  }

  .about-section__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .about-section__grid .feature-tile {
    flex: 1 1 0;
    min-width: 0;
  }

  .access-section__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .access-card__icon {
    width: min(118px, 100%);
  }

  .feature-tile h3 {
    font-size: 16px;
    line-height: 1.3;
    word-break: break-word;
  }

  .access-card__subtitle {
    font-size: 13px;
    line-height: 1.6;
    word-break: break-word;
  }

  .activities-slider {
    padding: 0 34px;
  }

  .activities-slider .event-card {
    flex-basis: calc((100% - 26px) / 2);
  }

  .news-section__lead {
    grid-template-columns: 1fr;
  }

  .news-card--sea h3,
  .news-card--sand h3,
  .news-card--sunset h3 {
    font-size: 24px;
  }

  .news-section__actions .button,
  .investment-section__actions .button {
    min-width: 146px;
    height: 44px;
    font-size: 15px;
    line-height: 42px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .activities-slider__track {
    gap: 36px;
  }

  .activities-slider .event-card {
    flex: 0 0 calc((100% - 36px) / 2);
  }
}

@media (max-width: 640px) {
  .news-section__lead-body {
    padding: 28px 22px 24px;
  }

  .news-section__lead-body h3 {
    font-size: 24px;
    line-height: 1.3;
  }

  .news-section__lead-body p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.66;
  }

  .news-section__lead-body .text-link {
    margin-top: 16px;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .news-section__lead-body .text-link::after {
    font-size: 22px;
  }

  .news-card--sea h3,
  .news-card--sand h3,
  .news-card--sunset h3 {
    font-size: 20px;
    line-height: 1.35;
  }

  .news-card__arrow {
    margin-top: 10px;
    font-size: 24px;
  }

  .news-section__actions .button,
  .investment-section__actions .button {
    min-width: 132px;
    height: 40px;
    padding: 0 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 38px;
  }

  .section-heading--about {
    margin-bottom: 28px;
  }

  .about-section {
    padding-bottom: 76px;
  }

  .home-page .nsw-section-title {
    gap: 14px;
  }

  .home-page .nsw-section-title__icon {
    width: 46px;
  }

  .home-page .nsw-section-title__text {
    margin-right: -4px;
    font-size: 28px;
    letter-spacing: 4px;
  }

  .hero-slider__arrow {
    top: auto;
    bottom: 92px;
    transform: none;
  }

  .hero-slide__play {
    width: 54px;
    height: 54px;
  }

  .hero-slide__play-icon {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .hero-video-modal {
    padding: 18px;
  }

  .hero-video-modal__dialog {
    width: 94vw;
  }

  .hero-video-modal__close {
    top: -42px;
  }

  .hero-slider__arrow--prev {
    left: 18px;
  }

  .hero-slider__arrow--next {
    right: 18px;
  }

  .intro-section p {
    font-size: 15px;
  }

  .news-section__cards {
    grid-template-columns: 1fr;
  }

  .gallery-strip__slider {
    padding: 0 36px;
  }

  .gallery-strip__track {
    gap: 18px;
  }

  .thumb-card {
    flex-basis: 100%;
  }

  .gallery-strip__arrow {
    width: 34px;
    height: 34px;
  }

  .investment-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activities-slider {
    padding: 0 24px;
  }

  .activities-slider .event-card {
    flex-basis: 100%;
  }

  .activities-slider__arrow {
    width: 34px;
    height: 34px;
  }

  .event-card__body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-section__grid {
    gap: 14px;
  }

  .access-section__grid {
    gap: 10px;
  }

  .access-card__icon {
    width: min(90px, 100%);
  }

  .feature-tile h3 {
    font-size: 13px;
    line-height: 1.35;
  }

  .access-card__subtitle {
    font-size: 11px;
    line-height: 1.5;
  }


  .event-card h3,
  .news-card h3,
  .news-section__lead-body h3 {
    font-size: 20px;
  }
}
