.ls-home { background: var(--scenic-bg); }
.ls-wrap { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

.ls-banner {
  width: 100%;
  overflow: hidden;
  background: #dceee0;
}
.ls-home-carousel { position: relative; height: clamp(500px, 56vh, 620px); overflow: hidden; }
.ls-banner__image {
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;
  background:
    var(--hero-bg, linear-gradient(135deg, #27633d, #8bbb68 48%, #c9d7c3 49%, #6fa3b1));
}
.ls-banner__image.is-active {
  opacity: 1;
  pointer-events: auto;
}
.ls-banner__image::after {
  content: none;
  position: absolute;
  right: calc((100% - min(1200px, calc(100% - 32px))) / 2);
  bottom: 22px;
  color: rgba(255,255,255,.75);
}
.ls-banner__copy {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: clamp(130px, 16vh, 190px);
  color: #fff;
}
.ls-banner__copy > * {
  width: fit-content;
  max-width: min(760px, 100%);
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(15,61,46,.5);
  backdrop-filter: blur(2px);
}
.ls-banner__copy span { color: #f7d77e; font-size: 18px; font-weight: 700; }
.ls-banner__copy h1 { margin: 10px 0 12px; font-size: clamp(36px, 4.8vw, 58px); letter-spacing: 0; line-height: 1.1; overflow-wrap: anywhere; }
.ls-banner__copy p { margin: 0; font-size: clamp(18px, 2.2vw, 26px); overflow-wrap: anywhere; }
.ls-banner__copy em {
  display: none;
  margin-top: 22px;
  padding: 8px 24px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  color: #fff;
  font-style: normal;
}
.ls-banner-dots {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.ls-banner-dots button {
  flex: 0 0 14px;
  min-width: 14px !important;
  min-height: 14px !important;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  appearance: none;
  background: rgba(255,255,255,.55);
  line-height: 0;
  font-size: 0;
}
.ls-banner-dots button.is-active { background: #399658; }

.ls-news-band {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 214, 115, .14), transparent 24%),
    radial-gradient(circle at 82% 34%, rgba(84, 177, 106, .12), transparent 28%),
    linear-gradient(180deg, #fbfdf7, #edf8ec 70%, #f6fbf4);
  border-bottom: 1px solid rgba(184, 211, 184, .65);
}
.ls-news-grid {
  display: grid;
  grid-template-columns: minmax(470px, 520px) minmax(600px, 1fr);
  gap: 24px;
  min-height: 170px;
  padding: 34px 0 38px;
}
.ls-weather {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-height: 150px;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.48), rgba(245,252,243,.26)),
    radial-gradient(circle at 10% 20%, rgba(255,214,115,.12), transparent 32%),
    radial-gradient(circle at 86% 28%, rgba(76,175,80,.10), transparent 34%);
  color: #399658;
  border: 1px solid rgba(151, 191, 151, .38);
  box-shadow: 0 10px 28px rgba(46,125,50,.05), inset 0 0 0 1px rgba(255,255,255,.24);
  backdrop-filter: blur(5px);
}
.weather-forecast-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: #27633d;
}
.weather-forecast-head strong {
  position: relative;
  padding-left: 14px;
  color: #1d6d3c;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .5px;
}
.weather-forecast-head strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 4px;
  height: 1.05em;
  border-radius: 999px;
  background: linear-gradient(#f1bd52, #2e8a4c);
}
.weather-forecast-head span { color: #666; font-size: 13px; }
.weather-forecast-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.weather-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
  min-height: 150px;
  padding: 12px 10px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,.46);
  border: 1px solid rgba(211, 229, 211, .62);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
  text-align: center;
}
.weather-day .weather-orb {
  width: 48px;
  height: 40px;
}
.weather-day .weather-orb span {
  left: 7px;
  top: 6px;
  width: 26px;
  height: 26px;
}
.weather-day .weather-orb i {
  right: 3px;
  bottom: 12px;
  width: 32px;
  height: 16px;
  box-shadow: -11px -4px 0 2px #fff, 0 2px 8px rgba(46,125,50,.16);
}
.weather-day .weather-rainy::after {
  left: 16px;
  bottom: 1px;
  width: 3px;
  height: 10px;
  box-shadow: 9px 3px 0 #6aa6c8, 18px 0 0 #6aa6c8;
}
.weather-loading {
  min-height: 120px;
  display: grid;
  place-items: center;
  color: #27633d;
  font-weight: 700;
}
.weather-orb {
  position: relative;
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
}
.weather-orb span {
  position: absolute;
  left: 18px;
  top: 15px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ffc107;
  box-shadow: 0 0 24px rgba(255,193,7,.42);
  animation: sunPulse 2.4s ease-in-out infinite;
}
.weather-orb i {
  position: absolute;
  right: 10px;
  bottom: 25px;
  width: 70px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  box-shadow: -24px -8px 0 4px #fff, 0 4px 14px rgba(46,125,50,.18);
}
.weather-cloudy span { display: none; }
.weather-rainy span { background: #8bbbd2; box-shadow: 0 0 20px rgba(139,187,210,.45); }
.weather-rainy::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: 6px;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: #6aa6c8;
  box-shadow: 18px 4px 0 #6aa6c8, 36px 0 0 #6aa6c8;
}
.weather-info strong {
  display: block;
  color: #27633d;
  font-size: 17px;
  line-height: 1.3;
}
.weather-info b {
  display: block;
  margin: 4px 0 5px;
  color: #9a6c3b;
  font-size: 20px;
  line-height: 1.15;
  white-space: nowrap;
}
.weather-info p {
  display: -webkit-box;
  margin: 0 auto;
  max-width: 14em;
  overflow: hidden;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@keyframes sunPulse { 50% { transform: scale(1.08); } }
.ls-weather-card {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}
.ls-weather-card strong { font-size: 24px; color: #27633d; }
.ls-hotline-card {
  min-height: 76px;
  position: relative;
  padding-left: 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 42px 50%, rgba(255,193,7,.28), transparent 34px),
    linear-gradient(100deg, #ffffff, #eef8ef 55%, #dfeedd);
}
.ls-hotline-card::before {
  content: "☎";
  position: absolute;
  left: 26px;
  top: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #399658;
  color: #fff;
  font-size: 25px;
}
.ls-hotline-card i {
  display: block;
  color: #9a6c3b;
  font-style: normal;
  font-size: 14px;
}
.ls-hotline-card strong {
  display: block;
  color: #27633d;
  font-size: 28px;
  line-height: 1.15;
}
.ls-hotline-card span { color: #666; }
.ls-news-tabs {
  position: relative;
  padding: 12px 0 4px;
  min-width: 0;
}
.ls-tabs__head {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  margin-bottom: 10px;
  border-bottom: 0;
}
.ls-tabs__head span {
  color: #aeb8ae;
  font-size: 18px;
}
.ls-tab,
.ls-tab-head button {
  border: 0;
  background: transparent;
  color: #59635c;
  font-size: 20px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: color .18s ease;
}
.ls-tab.active,
.ls-tab:hover,
.ls-tab-head button.is-active { color: #278142; font-weight: 700; }
.ls-tab-head span { color: #999; margin: 0 10px; }
.ls-tabs__body {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(154, 177, 154, .35);
}
.ls-news-item {
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(154, 177, 154, .32);
  color: #1f2f28;
  font-size: 16px;
}
.ls-news-item .title {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ls-news-item .ls-pin {
  display: inline-block;
  margin-right: 5px;
  color: #d63b2a;
  font-style: normal;
  font-weight: 800;
}
.ls-news-item:hover .title { color: #278142; }
.ls-news-item:hover .ls-pin { color: #c72d20; }
.ls-news-item time {
  color: #9fa7a1;
  text-align: right;
  font-size: 13px;
}
.ls-news-empty {
  margin: 18px 0;
  color: #7b857e;
}
.ls-news-tabs li {
  min-height: 42px;
  border-bottom: 1px solid #e3e3e3;
  font-size: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  align-items: center;
  gap: 14px;
}
.ls-news-tabs li a { display: block; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.ls-news-tabs time { color: #b2b2b2; text-align: right; font-size: 14px; }
.ls-more { float: right; margin-top: 10px; color: #9a6c3b; font-size: 16px; }
.is-hidden { display: none !important; }

.ls-guide {
  height: 668px;
  padding-top: 58px;
  background:
    radial-gradient(circle at 18% 26%, rgba(255,193,7,.16), transparent 23%),
    radial-gradient(circle at 78% 34%, rgba(76,175,80,.16), transparent 25%),
    linear-gradient(180deg, #fbfdf7, #edf8ec 54%, #f8fbf7);
}
.ls-section-heading {
  width: 540px;
  max-width: 86%;
  margin: 0 auto 34px;
  position: relative;
  text-align: center;
  color: #399658;
}
.ls-section-heading::before,
.ls-section-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 145px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8a35d);
}
.ls-section-heading::before { right: calc(50% + 110px); }
.ls-section-heading::after { left: calc(50% + 110px); transform: scaleX(-1); }
.ls-section-heading span {
  display: block;
  color: #c09a52;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.ls-section-heading h2 {
  margin: 2px 0 0;
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 400;
  color: #399658;
  letter-spacing: 0;
  text-shadow: 0 1px 0 #fff;
  overflow-wrap: anywhere;
}
.ls-section-heading--light { margin-bottom: 24px; }
.ls-section-heading--light h2 { color: #327b45; }
.ls-more-img {
  float: right;
  margin-top: 10px;
  width: 79px;
  height: 31px;
  line-height: 31px;
  border: 1px solid #d8c08a;
  border-radius: 999px;
  color: #9a6c3b;
  text-align: center;
  font-size: 13px;
}
.ls-skew-gallery {
  width: 1150px;
  max-width: 100%;
  height: 390px;
  margin: 0 auto;
  position: relative;
  padding-left: 4px;
}
.ls-skew-gallery a {
  display: block;
  float: left;
  width: 205px;
  height: 360px;
  margin-right: 21px;
  position: relative;
  overflow: hidden;
  transform: skewX(-12deg);
  background:
    linear-gradient(135deg, rgba(46,125,50,.35), rgba(255,193,7,.12)),
    linear-gradient(135deg, #cddfc8, #8ab475);
  box-shadow: 0 10px 24px rgba(46,125,50,.16);
}
.ls-skew-gallery a:nth-child(even) { margin-top: -40px; background: linear-gradient(135deg, #a9c99d, #d4bd7a); }
.ls-skew-gallery a:last-child { margin-right: 0; }
.ls-skew-gallery a::before {
  content: "";
  position: absolute;
  inset: -20px;
  transform: skewX(12deg) scale(1.1);
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.45), transparent 24%), linear-gradient(135deg, #315d3c, #88b56c);
  background: var(--card-bg, radial-gradient(circle at 30% 20%, rgba(255,255,255,.45), transparent 24%), linear-gradient(135deg, #315d3c, #88b56c));
  transition: 1s ease;
}
.ls-skew-gallery a:hover::before { transform: skewX(12deg) scale(1.3); }
.ls-skew-gallery a.has-image::before { display: none; }
.ls-skew-gallery .guide-card-image {
  position: absolute;
  inset: -20px;
  z-index: 1;
  display: block;
  transform: skewX(12deg) scale(1.1);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 1s ease;
}
.ls-skew-gallery a:hover .guide-card-image { transform: skewX(12deg) scale(1.3); }
.ls-skew-gallery a.has-image::after,
.ls-moment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,61,46,0), rgba(15,61,46,.48));
  pointer-events: none;
}
.ls-skew-gallery span {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  transform: translateX(-50%) skewX(12deg);
  width: 120px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.ls-ticket-ad {
  display: block;
  width: min(1200px, calc(100% - 32px));
  margin: 20px auto 34px;
}
.ls-ticket-ad img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(15,61,46,.14);
}

.ls-moments {
  padding: 36px 0 46px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,193,7,.13), transparent 23%),
    radial-gradient(circle at 80% 42%, rgba(76,175,80,.12), transparent 28%),
    linear-gradient(180deg, #f9fcf5, #edf8ec 64%, #f8fbf7);
}
.ls-moment-grid {
  display: grid;
  grid-template-columns: 445px 1fr;
  grid-template-rows: 270px 270px;
  gap: 10px;
}
.ls-moment-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #91b276, #d7c37c);
  color: #fff;
}
.ls-moment-card--large { grid-row: span 2; }
.ls-photo-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.8);
  background:
    linear-gradient(135deg, rgba(15,61,46,.15), rgba(15,61,46,.05)),
    linear-gradient(135deg, #2e6a44, #9fbf72);
}
.ls-moment-card:nth-child(2) .ls-photo-placeholder { background: linear-gradient(135deg, #9bc587, #d59c9c); }
.ls-moment-card:nth-child(3) .ls-photo-placeholder { background: linear-gradient(135deg, #6a9971, #78b7c9); }
.ls-moment-card .intro {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -68%;
  z-index: 2;
  min-height: 100%;
  padding: 30px;
  background: rgba(15,61,46,.72);
  transition: .45s ease;
}
.ls-moment-card:not(.ls-moment-card--large) .intro {
  bottom: -62%;
  padding-top: 22px;
}
.ls-moment-card:hover .intro { bottom: 0; }
.ls-moment-card h3 { margin: 0 0 10px; font-size: clamp(24px, 2.6vw, 30px); line-height: 1.25; overflow-wrap: anywhere; }
.ls-moment-card p { margin: 0; font-size: 18px; line-height: 1.55; overflow-wrap: anywhere; }

.ls-projects {
  margin-top: 10px;
  padding: 42px 0 46px;
  background:
    radial-gradient(circle at 20% 12%, rgba(255,193,7,.12), transparent 24%),
    radial-gradient(circle at 82% 42%, rgba(76,175,80,.10), transparent 30%),
    linear-gradient(180deg, #f8fcf4, #eef8ec 66%, #f8fbf7);
  overflow: hidden;
}
.ls-project-marquee {
  overflow: hidden;
  border-radius: 8px;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.ls-project-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: projectMarquee 34s linear infinite;
}
.ls-project-marquee:hover .ls-project-track { animation-play-state: paused; }
.ls-project-card {
  width: 280px;
  height: 178px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(184, 211, 184, .72);
  box-shadow: 0 14px 30px rgba(46,125,50,.08);
  color: var(--green-900);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ls-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(46,125,50,.14);
}
.ls-project-card .media {
  min-height: 100%;
  height: 100%;
  border-radius: 0;
}
.ls-project-card span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  max-width: calc(100% - 28px);
  padding: 7px 12px;
  border-radius: 4px;
  background: rgba(15, 61, 46, .72);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.ls-project-card p {
  display: none;
}
@keyframes projectMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

html[lang="en"] .ls-section-heading,
html[lang="ja"] .ls-section-heading,
html[lang="ko"] .ls-section-heading { width: min(720px, 92%); }
html[lang="en"] .ls-section-heading::before,
html[lang="ja"] .ls-section-heading::before,
html[lang="ko"] .ls-section-heading::before { right: calc(50% + 180px); }
html[lang="en"] .ls-section-heading::after,
html[lang="ja"] .ls-section-heading::after,
html[lang="ko"] .ls-section-heading::after { left: calc(50% + 180px); }
html[lang="en"] .ls-skew-gallery span,
html[lang="ja"] .ls-skew-gallery span,
html[lang="ko"] .ls-skew-gallery span { font-size: 20px; width: 150px; }

@media (max-width: 1199px) {
  .ls-news-grid, .ls-moment-grid { grid-template-columns: 1fr; }
  .weather-forecast-list { grid-template-columns: repeat(3, minmax(180px, 1fr)); }
  .ls-project-card { width: 250px; }
  .ls-moment-grid { grid-template-rows: repeat(3, 260px); }
  .ls-moment-card--large { grid-row: auto; }
  .ls-guide { height: auto; padding-bottom: 40px; }
  .ls-skew-gallery { height: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ls-skew-gallery a { float: none; width: auto; margin: 0 !important; transform: none; }
  .ls-skew-gallery span { transform: translateX(-50%); }
}
@media (max-width: 767px) {
  .ls-home-carousel,
  .ls-banner__image { height: 360px; }
  .ls-banner__copy {
    left: 16px;
    right: 16px;
    bottom: 48px;
  }
  .ls-banner__copy span { font-size: 13px; }
  .ls-banner__copy h1 { font-size: 30px; line-height: 1.18; }
  .ls-banner__copy p { font-size: 15px; line-height: 1.5; }
  .ls-banner__copy > * {
    max-width: 100%;
    padding-inline: 10px;
  }
  .ls-news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ls-weather {
    min-height: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .weather-forecast-head { flex-direction: column; align-items: flex-start; gap: 2px; }
  .weather-forecast-list { grid-template-columns: 1fr; }
  .weather-info strong { font-size: 17px; }
  .weather-info b { font-size: 22px; }
  .weather-info p { font-size: 14px; }
  .ls-tabs__head {
    gap: 8px;
    align-items: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
  }
  .ls-tabs__head button { font-size: 16px; flex: 0 0 auto; }
  .ls-news-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .ls-guide { padding: 48px 0 36px; }
  .ls-section-heading::before,
  .ls-section-heading::after { display: none; }
  .ls-skew-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ls-skew-gallery a {
    height: 190px;
    border-radius: 6px;
  }
  .ls-skew-gallery a::before,
  .ls-skew-gallery .guide-card-image {
    transform: none;
    inset: 0;
  }
  .ls-skew-gallery a:hover::before,
  .ls-skew-gallery a:hover .guide-card-image { transform: scale(1.05); }
  .ls-skew-gallery span {
    bottom: 18px;
    width: auto;
    min-width: 120px;
    padding: 10px 14px;
    font-size: 18px;
  }
  .ls-ticket-ad img {
    min-height: 96px;
    object-fit: cover;
  }
  .ls-projects { padding: 30px 0 34px; }
  .ls-project-card {
    width: 230px;
    height: 154px;
  }
  .ls-project-card .media { min-height: 100%; }
  .ls-project-card span { font-size: 18px; }
  .ls-moment-grid {
    grid-template-rows: none;
    gap: 14px;
  }
  .ls-moment-card,
  .ls-moment-card--large {
    min-height: 220px;
    height: 220px;
  }
  .ls-moment-card .intro,
  .ls-moment-card:not(.ls-moment-card--large) .intro {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .ls-moment-card h3 { font-size: 23px; }
  .ls-moment-card p { font-size: 14px; }
  .ls-play-tabs { grid-template-columns: repeat(2, 1fr); }
  .ls-play-stage a { padding: 58px 28px; }
}

@media (max-width: 420px) {
  .ls-home-carousel,
  .ls-banner__image { height: 270px; }
  .ls-banner__copy h1 { font-size: 26px; }
  .ls-weather { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .ls-news-item { grid-template-columns: 1fr; }
  .ls-news-item time { justify-self: start; }
  .ls-project-card { width: 86vw; max-width: 230px; }
  .ls-play-tabs { grid-template-columns: 1fr; }
}
