:root {
  --green: #00a87a;
  --green-dark: #008861;
  --mint: #b9e3c9;
  --text: #55585c;
  --muted: #8b8f94;
  --panel: #f3f3f3;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
  color: var(--text);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  border: 1px solid #eee;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  display: flex;
  height: 42px;
  justify-content: space-between;
  margin: 12px auto 0;
  max-width: 1180px;
  padding: 0 16px 0 20px;
  position: sticky;
  top: 12px;
  width: min(calc(100% - 20px), 1180px);
  z-index: 10;
}

.brand img {
  height: 22px;
  width: auto;
}

.brand {
  flex: 0 0 auto;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 48px);
  font-size: 13px;
  margin-left: auto;
}

.main-nav a {
  color: #7a7f84;
  white-space: nowrap;
}

.main-nav .active {
  color: #222;
  font-weight: 700;
}

.mini-program {
  align-items: center;
  color: var(--green);
  display: flex;
  font-size: 13px;
  gap: 6px;
  margin-left: clamp(16px, 3vw, 42px);
  white-space: nowrap;
}

.mini-program span {
  display: inline-flex;
  height: 14px;
  width: 14px;
}

.mini-program img {
  height: 100%;
  width: 100%;
}

.menu-toggle {
  display: none;
}

main {
  margin: 0 auto;
  max-width: 1180px;
  padding: 10px 10px 0;
}

.hero {
  margin-top: 0;
  position: relative;
}

.hero-media {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.hero-media img {
  width: 100%;
}

.hero-copy {
  color: #fff;
  left: 7%;
  position: absolute;
  top: 29%;
}

.hero-copy h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  margin: 0 0 24px;
}

.hero-copy p {
  font-size: clamp(16px, 2.2vw, 27px);
  font-weight: 700;
  margin: 0;
}

.what-card {
  background: #fff;
  border-radius: 8px 0 0 0;
  bottom: 0;
  min-height: 176px;
  padding: 50px 34px 28px;
  position: absolute;
  right: 0;
  width: 340px;
}

.what-card h2 {
  color: #777;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 30px;
}

.what-card ul {
  color: var(--green);
  display: flex;
  font-size: 15px;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.what-card li::before {
  content: "•";
  margin-right: 8px;
}

.slider-dots {
  align-items: center;
  display: flex;
  gap: 4px;
}

.slider-dots i {
  border-radius: 50%;
  display: block;
  height: 4px;
  width: 4px;
}

.slider-dots.light {
  bottom: 34px;
  left: 7%;
  position: absolute;
}

.slider-dots.light i {
  background: #fff;
}

.section-pad {
  padding: 78px 0 0;
}

.section-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-head h2 {
  color: #777;
  font-size: 32px;
  line-height: 1;
  margin: 0;
}

.section-head p {
  color: #777;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.space-grid {
  display: grid;
  gap: 20px;
  grid-auto-rows: 254px;
  grid-template-columns: repeat(4, 1fr);
}

.room-card {
  border-radius: 8px;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.room-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.room-card > img {
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), filter 720ms ease;
  will-change: transform;
}

.room-card.large {
  align-self: stretch;
  grid-column: 1 / span 2;
  grid-row: span 2;
}

.room-card.wide {
  grid-column: 3 / span 2;
  grid-row: 2;
}

.room-info {
  background: rgba(238, 238, 238, 0.88);
  border-radius: 8px;
  bottom: 22px;
  left: 24px;
  padding: 28px 32px 26px;
  position: absolute;
  width: calc(100% - 48px);
}

.room-info,
.room-tag {
  cursor: pointer;
  transition: background 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.room-info strong {
  color: var(--green);
  display: block;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}

.room-info strong,
.room-info p {
  transition: transform 280ms ease;
}

.room-info p {
  color: #222;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.room-info span,
.room-tag span,
.join-grid span {
  display: inline-flex;
  height: 44px;
  width: 44px;
}

.room-info span {
  position: absolute;
  right: 34px;
  top: 30px;
}

.room-info span,
.room-tag span {
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.room-info span img,
.room-tag span img {
  transition: transform 320ms ease, filter 320ms ease;
}

.room-tag {
  align-items: center;
  background: rgba(238, 238, 238, 0.9);
  border-radius: 8px;
  bottom: 20px;
  color: var(--green);
  display: flex;
  font-size: 32px;
  gap: 28px;
  left: 22px;
  line-height: 1;
  padding: 18px 22px 18px 24px;
  position: absolute;
  transition: background 280ms ease, box-shadow 280ms ease, gap 280ms ease, padding 280ms ease, transform 280ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .room-card:hover > img {
    filter: saturate(1.04);
    transform: scale(1.055);
  }

  .room-info:hover,
  .room-tag:hover {
    background: rgba(246, 246, 246, 0.94);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
  }

  .room-info:hover strong,
  .room-info:hover p {
    transform: translateX(7px);
  }

  .room-info:hover span,
  .room-tag:hover span {
    transform: translate(7px, -7px);
  }

  .room-info:hover span img,
  .room-tag:hover span img {
    filter: drop-shadow(0 8px 12px rgba(0, 168, 122, 0.22));
    transform: rotate(8deg);
  }

  .room-tag:hover {
    gap: 36px;
    padding-left: 30px;
    padding-right: 18px;
  }
}

.app-section {
  display: grid;
  gap: 0;
  grid-template-columns: 1.4fr 1fr;
}

.app-preview,
.app-copy {
  min-height: 490px;
}

.app-preview {
  align-items: flex-end;
  background: var(--mint);
  border-radius: 8px 0 0 8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.slider-dots.green {
  bottom: 19px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.app-promo-img {
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  width: 100%;
}

.slider-dots.green i {
  background: #eff9e9;
}

.app-copy {
  background: var(--panel);
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 84px;
}

.app-copy h2 {
  color: #828282;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 60px;
}

.app-copy p {
  color: #858585;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.join {
  padding-top: 104px;
  text-align: center;
}

.join-title h2 {
  color: #777;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 28px;
}

.join-title p {
  color: #9a9da0;
  font-size: 15px;
  margin: 0 0 72px;
}

.join-title span {
  background: var(--green);
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  margin-right: 20px;
  padding: 7px 20px;
}

.join-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.join-grid article {
  aspect-ratio: 303 / 254;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  text-align: left;
}

.join-grid img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.join-grid article > div {
  align-items: center;
  background: rgba(238, 238, 238, 0.88);
  border-radius: 8px;
  bottom: 12px;
  color: var(--green);
  display: flex;
  font-size: 17px;
  gap: 14px;
  justify-content: space-between;
  left: 50%;
  padding: 8px 18px 8px 34px;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 32px);
}

.join .muted {
  justify-content: center;
  margin-top: 58px;
}

.join .muted i {
  background: #ddd;
}

.site-footer {
  color: #333;
  font-size: 10px;
  margin: 110px auto 22px;
  max-width: 1180px;
  /*padding: 0 64px;*/
  width: 94%;
  position: relative;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 14px;
}

.links-left{
  display: flex;
  gap: 18px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials-items {
  background: #777;
  border-radius: 3px;
  height: 34px;
  width: 34px;
}

.socials-div-line{
  width: 1px;
  background: #dddddd;
}

.footer-line{
  height: 10px;
  border-top: 1px solid;
}

.site-footer .footer-text p {
  color: #626262;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

/* Lightweight image carousel and partner marquee */
.lite-carousel {
  isolation: isolate;
}

.lite-carousel-echo {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translate3d(-1.25%, 0, 0) scale(1.015);
  transition: opacity 620ms ease, transform 760ms ease;
  width: 100%;
  z-index: 1;
}

.lite-carousel-echo.is-revealing {
  opacity: 1;
  transform: translate3d(1.25%, 0, 0) scale(1.015);
}

.lite-carousel > .hero-copy,
.lite-carousel > .slider-dots,
.lite-carousel > .brand-hero-dots,
.lite-carousel > .contact-hero-dots {
  z-index: 2;
}

.lite-carousel-dots i,
.join .slider-dots.muted i {
  cursor: pointer;
  opacity: 0.42;
  transition: opacity 220ms ease, transform 220ms ease;
}

.lite-carousel-dots i.is-active,
.join .slider-dots.muted i.is-active {
  opacity: 1;
  transform: scale(1.38);
}

.join {
  overflow: hidden;
}

.join-grid.is-marquee {
  animation: join-marquee-right 34s linear infinite;
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.join-grid.is-marquee article {
  flex: 0 0 var(--marquee-card-width);
  width: var(--marquee-card-width);
}

.join-grid.is-marquee:hover,
.join-grid.is-marquee:focus-within {
  animation-play-state: paused;
}

@keyframes join-marquee-right {
  from {
    transform: translate3d(var(--marquee-offset), 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 720px) {
  .join-grid.is-marquee {
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .join-grid.is-marquee {
    animation: none;
  }

  .lite-carousel-echo {
    display: none;
  }
}

.page-main {
  margin: 0 auto;
  max-width: 1180px;
  padding: 10px 10px 0;
}

.page-hero {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.page-hero img {
  aspect-ratio: 183 / 50;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.page-dots {
  bottom: 28px;
  justify-content: center;
  left: 0;
  position: absolute;
  width: 100%;
}

.page-title {
  padding: 72px 0 50px;
  text-align: center;
}

.page-title h1 {
  color: var(--green);
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

.page-title p {
  color: #9ab4ab;
  font-size: 11px;
  letter-spacing: 0;
  margin: 8px 0 12px;
  text-transform: uppercase;
}

.page-title i,
.qr-panel i {
  background: var(--green);
  display: block;
  height: 2px;
  margin: 0 auto;
  width: 46px;
}

.brand-story {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.9fr 1fr;
}

.brand-story > img,
.brand-grid img,
.contact-photo {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.brand-panel,
.brand-grid article {
  border-radius: 8px;
  min-height: 242px;
  padding: 54px 42px;
}

.green-panel {
  background: linear-gradient(135deg, #0aac7d, #01845f);
  color: #fff;
}

.green-panel span,
.brand-grid h2::after {
  background: #fff;
  border-radius: 999px;
  color: var(--green);
  float: right;
  font-size: 13px;
  padding: 7px 16px;
}

.green-panel h2,
.brand-grid h2 {
  font-size: 24px;
  margin: 0 0 28px;
}

.green-panel p {
  font-size: 16px;
  margin: 0 0 34px;
}

.green-panel small,
.brand-grid p {
  font-size: 13px;
  line-height: 1.8;
}

.brand-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 1fr;
  margin-top: 58px;
}

.brand-grid article {
  background: #f4f4f4;
}

.brand-grid h2 {
  color: var(--green);
}

.brand-grid h2::after {
  background: var(--green);
  color: #fff;
  content: "品牌定位";
  font-size: 12px;
  margin-top: -4px;
}

.brand-grid h2:nth-of-type(2)::after {
  content: "品牌愿景";
}

.blank-field {
  background: #f5f5f5;
  min-height: 560px;
}

.blank-field img { 
  height: 100%;
  width: auto;
}

.news-list,
.contact-section {
  background: #f4f4f4;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 84px max(10px, calc((100vw - 1180px) / 2)) 90px;
  position: relative;
}

.watermark {
  color: rgba(0, 0, 0, 0.04);
  font-size: 88px;
  left: max(30px, calc((100vw - 1180px) / 2));
  line-height: 1;
  position: absolute;
  top: 54px;
}

.news-list h2,
.contact-section h2 {
  color: #444;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 48px;
  position: relative;
}

.news-item {
  align-items: center;
  color: #666;
  display: grid;
  gap: 18px;
  grid-template-columns: 190px 1fr 72px;
  min-height: 116px;
  padding: 22px 88px;
  position: relative;
}

.news-item span {
  font-size: 19px;
  grid-column: 2;
}

.news-item small {
  color: #9c9c9c;
  font-size: 11px;
  grid-column: 2;
}

.news-item time {
  color: #aaa;
  font-size: 13px;
  grid-column: 3;
  grid-row: 1 / span 2;
}

.news-item img {
  border-radius: 6px;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 156px;
}

.news-item:not(.featured) {
  grid-template-columns: 190px 1fr 72px;
}

.news-item:not(.featured) span,
.news-item:not(.featured) small {
  grid-column: 2;
}

.news-item.featured {
  background: #fff;
  border-radius: 8px;
  margin: 16px 0;
}

.article-head {
  padding: 132px 0 80px;
  text-align: center;
}

.article-head h1 {
  color: #555;
  font-size: 32px;
  margin: 0 0 28px;
}

.article-head time,
.article-head p {
  color: #999;
  display: block;
  font-size: 14px;
  margin: 0 0 24px;
}

.app-download {
  align-items: center;
  background: #f4f4f4;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 1.08fr 0.4fr 1fr;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 570px;
  padding: 30px max(30px, calc((100vw - 1180px) / 2));
}

.detail-phone {
  max-height: 420px;
  justify-self: center;
  width: auto;
}

.detail-phone.small {
  max-height: 350px;
}

.ghost-arrow {
  color: rgba(0, 0, 0, 0.07);
  font-size: 76px;
  justify-self: center;
}

.qr-panel {
  color: #999;
  font-size: 16px;
  text-align: center;
}

.qr-panel img {
  margin: 0 auto 44px;
  width: 260px;
}

.contact-section {
  background: #fff;
  padding-top: 42px;
}

.contact-card {
  align-items: center;
  background: #f4f4f4;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  min-height: 290px;
  padding: 42px 64px;
}

.contact-card p {
  color: #555;
  font-size: 14px;
  margin: 0 0 22px;
}

.contact-card strong {
  color: var(--green);
  display: block;
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 44px;
}

.qr-row {
  display: flex;
  gap: 22px;
}

.qr-row figure {
  margin: 0;
  text-align: center;
}

.qr-row img {
  width: 76px;
}

.qr-row figcaption {
  color: #777;
  font-size: 11px;
  margin-top: 8px;
}

.contact-photo {
  margin-left: auto;
  max-width: 330px;
}

@media (max-width: 720px) {
  .site-header {
    height: 28px;
    margin-top: 14px;
    padding: 0 9px 0 12px;
    top: 14px;
    width: calc(100% - 12px);
  }

  .brand img {
    height: 11px;
  }

  .main-nav {
    flex: 0 1 auto;
    gap: 13px;
    justify-content: center;
    margin: 0 4px 0 12px;
    overflow: visible;
  }

  .main-nav a {
    font-size: 5px;
  }

  .mini-program {
    font-size: 6px;
    gap: 4px;
    margin-left: 2px;
  }

  .mini-program span {
    height: 8px;
    width: 8px;
  }

  main {
    padding: 5px 4px 0;
  }

  .hero-copy {
    left: 7%;
    top: 27%;
  }

  .hero-copy h1 {
    font-size: 20px;
    margin-bottom: 17px;
  }

  .hero-copy p {
    font-size: 13px;
  }

  .what-card {
    min-height: 78px;
    padding: 23px 18px 16px;
    width: 149px;
  }

  .what-card h2 {
    font-size: 14px;
    margin-bottom: 17px;
  }

  .what-card ul {
    font-size: 7px;
    gap: 12px;
  }

  .what-card li::before {
    margin-right: 4px;
  }

  .slider-dots.light {
    bottom: 15px;
    left: 8%;
  }

  .slider-dots {
    gap: 3px;
  }

  .slider-dots i {
    height: 3px;
    width: 3px;
  }

  .section-pad {
    padding-top: 36px;
  }

  .section-head {
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 0 4px;
  }

  .section-head h2 {
    font-size: 16px;
    margin-top: 3px;
  }

  .section-head p {
    font-size: 6px;
    line-height: 1.75;
    width: 216px;
  }

  .space-grid {
    gap: 8px;
    grid-auto-rows: 111px;
    grid-template-columns: repeat(4, 1fr);
  }

  .room-card.large {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }

  .room-card.wide {
    grid-column: 3 / span 2;
    grid-row: 2;
  }

  .room-info {
    bottom: 8px;
    left: 14px;
    padding: 12px 18px 11px;
    width: calc(100% - 28px);
  }

  .room-info strong {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .room-info p {
    font-size: 5px;
    line-height: 1.55;
  }

  .room-info span {
    height: 20px;
    right: 18px;
    top: 16px;
    width: 20px;
  }

  .room-tag {
    bottom: 7px;
    font-size: 10px;
    gap: 7px;
    left: 7px;
    padding: 4px 7px;
  }

  .room-tag span,
  .join-grid span {
    height: 20px;
    width: 20px;
  }

  .app-section {
    grid-template-columns: 58% 42%;
    padding-top: 16px;
  }

  .app-preview,
  .app-copy {
    min-height: 186px;
  }

  .app-preview {
    padding: 0;
  }

  .slider-dots.green {
    bottom: 8px;
  }

  .app-copy {
    padding-left: 24px;
  }

  .app-copy h2 {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 34px;
  }

  .app-copy p {
    font-size: 6px;
    line-height: 1.8;
  }

  .join {
    padding-top: 35px;
  }

  .join-title h2 {
    font-size: 29px;
    margin-bottom: 17px;
  }

  .join-title p {
    font-size: 6px;
    margin-bottom: 28px;
  }

  .join-title span {
    font-size: 8px;
    margin-right: 10px;
    padding: 4px 11px;
  }

  .join-grid {
    gap: 4px;
  }

  .join-grid article > div {
    bottom: 7px;
    font-size: 8px;
    gap: 7px;
    left: 50%;
    padding: 4px 8px 4px 14px;
    width: calc(100% - 16px);
  }

  .join .muted {
    margin-top: 35px;
  }

  .site-footer {
    font-size: 5px;
    margin-top: 40px;
    padding: 0 32px;
  }

  .footer-links {
    gap: 9px;
    margin-bottom: 8px;
  }

  .page-main {
    padding: 5px 4px 0;
  }

  .page-hero img {
    aspect-ratio: 44 / 17;
  }

  .page-title {
    padding: 34px 0 28px;
  }

  .page-title h1 {
    font-size: 18px;
  }

  .page-title p {
    font-size: 6px;
    margin: 5px 0 8px;
  }

  .page-title i,
  .qr-panel i {
    width: 24px;
  }

  .brand-story,
  .brand-grid,
  .contact-card,
  .app-download {
    grid-template-columns: 1fr;
  }

  .brand-story,
  .brand-grid {
    gap: 12px;
  }

  .brand-panel,
  .brand-grid article {
    min-height: auto;
    padding: 26px 22px;
  }

  .green-panel h2,
  .brand-grid h2 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .green-panel p,
  .brand-grid p {
    font-size: 10px;
  }

  .green-panel small {
    font-size: 9px;
  }

  .green-panel span,
  .brand-grid h2::after {
    font-size: 8px;
    padding: 4px 9px;
  }

  .brand-grid {
    margin-top: 24px;
  }

  .blank-field {
    min-height: 260px;
  }

  .news-list,
  .contact-section {
    padding: 42px 20px 48px;
  }

  .watermark {
    font-size: 44px;
    left: 20px;
    top: 34px;
  }

  .news-list h2,
  .contact-section h2 {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .news-item,
  .news-item:not(.featured) {
    gap: 10px;
    grid-template-columns: 88px 1fr 42px;
    min-height: 86px;
    padding: 14px 10px;
  }

  .news-item span {
    font-size: 13px;
  }

  .news-item small {
    font-size: 8px;
  }

  .news-item time {
    font-size: 9px;
  }

  .news-item img {
    width: 78px;
  }

  .article-head {
    padding: 60px 18px 38px;
  }

  .article-head h1 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .article-head time,
  .article-head p {
    font-size: 9px;
    margin-bottom: 12px;
  }

  .app-download {
    gap: 22px;
    min-height: 0;
    padding: 30px 24px 44px;
  }

  .detail-phone,
  .detail-phone.small {
    max-height: 300px;
  }

  .ghost-arrow {
    display: none;
  }

  .qr-panel img {
    margin-bottom: 22px;
    width: 170px;
  }

  .qr-panel {
    font-size: 11px;
  }

  .contact-card {
    padding: 24px 22px;
  }

  .contact-card strong {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 26px;
  }

  .qr-row {
    flex-wrap: wrap;
    gap: 14px;
  }

  .qr-row img {
    width: 58px;
  }

  .contact-photo {
    margin: 24px auto 0;
    max-width: 100%;
  }
}

/* Brand introduction page */
.brand-page {
  color: #676767;
  max-width: 1180px;
  padding-top: 10px;
}

.brand-hero {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.brand-hero > img {
  aspect-ratio: 918 / 428;
  display: block;
  object-fit: cover;
  width: 100%;
}

.brand-hero-dots {
  bottom: 35px;
  display: flex;
  gap: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.brand-hero-dots i {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.brand-hero-dots i:first-child {
  background: #fff;
}

.brand-heading {
  color: var(--green);
  padding: 54px 0 48px;
  text-align: center;
}

.brand-heading h1 {
  font-size: 32px;
  font-weight: 500;
  margin: 0;
}

.brand-heading p {
  font-size: 12px;
  margin: 7px 0 15px;
}

.brand-heading > i {
  background: var(--green);
  display: block;
  height: 4px;
  margin: 0 auto;
  width: 48px;
}

.brand-story-section {
  align-items: start;
  display: grid;
  gap: 26px;
  grid-template-columns: 2.06fr 1fr;
}

.brand-story-panel {
  background: #00a276;
  border-radius: 30px;
  color: #fff;
  min-height: 490px;
  padding: 53px 42px 39px;
  position: relative;
}

.brand-tag {
  background: #fff;
  border-radius: 999px;
  color: #00a276;
  font-size: 17px;
  font-weight: 600;
  padding: 8px 22px;
  position: absolute;
  right: 33px;
  top: 54px;
}

.brand-story-title {
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  gap: 38px;
  margin-top: 166px;
  padding-bottom: 18px;
}

.brand-story-title h2 {
  font-size: 27px;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

.brand-story-title p {
  font-size: 20px;
  margin: 0;
}

.brand-story-copy {
  font-size: 14px;
  line-height: 1.75;
  padding-top: 57px;
}

.brand-story-copy p {
  margin: 0 0 24px;
}

.brand-story-aside img {
  border-radius: 30px;
  display: block;
  width: 100%;
}

.brand-people-icon {
  border: 1px solid #00a276;
  border-radius: 50%;
  display: block;
  height: 48px;
  margin: 52px 0 28px 10px;
  position: relative;
  width: 48px;
}

.brand-people-icon::before {
  border: 2px solid #00a276;
  border-radius: 50%;
  content: "";
  height: 9px;
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 9px;
}

.brand-people-icon::after {
  border: 2px solid #00a276;
  border-radius: 12px 12px 8px 8px;
  bottom: 8px;
  content: "";
  height: 13px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 20px;
}

.brand-story-aside p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 0 10px;
}

.brand-divider {
  background: #9b9b9b;
  height: 1px;
  margin: 67px auto 60px;
  width: 50px;
}

.brand-feature {
  background: #f5f5f5;
  border-radius: 30px;
  display: grid;
  overflow: hidden;
}

.brand-feature + .brand-feature {
  margin-top: 26px;
}

.brand-feature-mission {
  grid-template-columns: 1.25fr 1fr;
}

.brand-feature-positioning {
  grid-template-columns: 0.92fr 1.08fr;
}

.brand-feature > img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.brand-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  min-width: 0;
  padding: 40px 45px;
}

.brand-feature-copy > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.brand-feature-copy h2 {
  color: #00a276;
  font-size: 27px;
  font-weight: 400;
  margin: 0;
}

.brand-feature-copy span {
  align-self: center;
  background: #00a276;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 7px 18px;
}

.brand-feature-copy p {
  border-top: 1px solid rgba(0, 162, 118, 0.28);
  color: #00a276;
  font-size: 15px;
  grid-column: 1 / -1;
  line-height: 1.65;
  margin: 12px 0 0;
  padding-top: 14px;
}

@media (max-width: 720px) {
  .brand-page {
    padding: 5px 4px 0;
  }

  .brand-hero {
    border-radius: 14px;
  }

  .brand-hero-dots {
    bottom: 12px;
    gap: 3px;
  }

  .brand-hero-dots i {
    height: 5px;
    width: 5px;
  }

  .brand-heading {
    padding: 30px 0 26px;
  }

  .brand-heading h1 {
    font-size: 19px;
  }

  .brand-heading p {
    font-size: 8px;
    margin: 4px 0 9px;
  }

  .brand-heading > i {
    height: 2px;
    width: 27px;
  }

  .brand-story-section {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .brand-story-panel {
    border-radius: 14px;
    min-height: 0;
    padding: 24px 20px;
  }

  .brand-tag {
    font-size: 10px;
    padding: 5px 13px;
    right: 18px;
    top: 18px;
  }

  .brand-story-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 65px;
    padding-bottom: 13px;
  }

  .brand-story-title h2 {
    font-size: 18px;
  }

  .brand-story-title p {
    font-size: 12px;
  }

  .brand-story-copy {
    font-size: 10px;
    padding-top: 24px;
  }

  .brand-story-copy p {
    margin-bottom: 14px;
  }

  .brand-story-aside {
    display: grid;
    gap: 14px;
    grid-template-columns: 45% 1fr;
  }

  .brand-story-aside img {
    border-radius: 14px;
    grid-row: 1 / 3;
  }

  .brand-people-icon {
    height: 34px;
    margin: 5px 0 0;
    width: 34px;
  }

  .brand-people-icon::before {
    height: 6px;
    top: 7px;
    width: 6px;
  }

  .brand-people-icon::after {
    bottom: 5px;
    height: 9px;
    width: 14px;
  }

  .brand-story-aside p {
    font-size: 9px;
    line-height: 1.65;
    margin: 0;
  }

  .brand-divider {
    margin: 34px auto 28px;
    width: 28px;
  }

  .brand-feature,
  .brand-feature-mission,
  .brand-feature-positioning {
    border-radius: 14px;
    grid-template-columns: 1fr;
  }

  .brand-feature > img {
    height: auto;
  }

  .brand-feature-mission > img {
    order: -1;
  }

  .brand-feature-copy {
    gap: 28px;
    padding: 26px 20px;
  }

  .brand-feature-copy h2 {
    font-size: 18px;
  }

  .brand-feature-copy span {
    font-size: 10px;
    padding: 5px 11px;
  }

  .brand-feature-copy p {
    font-size: 10px;
    margin-top: 8px;
    padding-top: 9px;
  }
}

/* Contact page */
.contact-page {
  max-width: 1180px;
  padding-top: 10px;
}

.contact-hero {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.contact-hero > img {
  aspect-ratio: 1835 / 855;
  display: block;
  object-fit: cover;
  width: 100%;
}

.contact-hero-dots {
  bottom: 31px;
  display: flex;
  gap: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.contact-hero-dots i {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.contact-hero-dots i:first-child {
  background: #fff;
}

.contact-heading {
  color: var(--green);
  padding: 54px 0 50px;
  text-align: center;
}

.contact-heading h1 {
  font-size: 32px;
  font-weight: 400;
  margin: 0;
}

.contact-heading p {
  font-size: 12px;
  margin: 7px 0 12px;
}

.contact-heading > i {
  background: var(--green);
  display: block;
  height: 4px;
  margin: 0 auto;
  width: 48px;
}

.contact-cooperation {
  padding: 0 24px 160px;
}

.contact-cooperation-title {
  height: 166px;
  padding: 20px 0 0 36px;
  position: relative;
}

.contact-cooperation-title span {
  color: #efefef;
  font-size: 92px;
  font-weight: 700;
  left: 36px;
  line-height: 1;
  position: absolute;
  top: 6px;
}

.contact-cooperation-title h2 {
  color: #494949;
  font-size: 29px;
  font-weight: 400;
  margin: 72px 0 0;
  position: relative;
}

.contact-info-panel {
  background: #f6f6f6;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  min-height: 335px;
  height: 300px;
  padding: 48px 54px 42px;
  position: relative;
}

.contact-info-copy{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
}

.contact-info-copy > p {
  color: #494949;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 28px;
}

.contact-info-copy > p:nth-of-type(2) {
  margin-top: 45px;
}

.contact-phones {
  display: flex;
  gap: 45px;
}

.contact-phones strong {
  color: var(--green);
  font-size: 29px;
  font-weight: 500;
  white-space: nowrap;
}

.contact-qr-row {
  display: flex;
  gap: 22px;
}

.contact-qr-row figure {
  margin: 0;
  text-align: center;
}

.contact-qr-row img {
  display: block;
  height: 78px;
  object-fit: contain;
  width: 78px;
}

.contact-qr-row figcaption {
  color: #555;
  font-size: 10px;
  margin-top: 8px;
}

.contact-event-photo {
  border-radius: 30px;
  bottom: 0;
  top: 0;
  margin: auto 0;
  height: auto;
  max-width: 395px;
  position: absolute;
  right: 43px;
  width: 34.5%;
}

body[data-page="contact"] .site-footer {
  margin-top: 0;
}

@media (max-width: 720px) {
  .contact-page {
    padding: 5px 4px 0;
  }

  .contact-hero {
    border-radius: 14px;
  }

  .contact-hero-dots {
    bottom: 12px;
    gap: 3px;
  }

  .contact-hero-dots i {
    height: 5px;
    width: 5px;
  }

  .contact-heading {
    padding: 30px 0 28px;
  }

  .contact-heading h1 {
    font-size: 19px;
  }

  .contact-heading p {
    font-size: 8px;
    margin: 4px 0 8px;
  }

  .contact-heading > i {
    height: 2px;
    width: 27px;
  }

  .contact-cooperation {
    padding: 0 0 58px;
  }

  .contact-cooperation-title {
    height: 92px;
    padding-left: 16px;
  }

  .contact-cooperation-title span {
    font-size: 48px;
    left: 15px;
    top: 8px;
  }

  .contact-cooperation-title h2 {
    font-size: 19px;
    margin-top: 45px;
  }

  .contact-info-panel {
    border-radius: 14px;
    display: block;
    min-height: 0;
    padding: 24px 20px 0;
  }

  .contact-info-copy > p {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .contact-info-copy > p:nth-of-type(2) {
    margin-top: 24px;
  }

  .contact-phones {
    flex-wrap: wrap;
    gap: 5px 20px;
  }

  .contact-phones strong {
    font-size: 18px;
  }

  .contact-qr-row {
    gap: 14px;
  }

  .contact-qr-row img {
    height: 64px;
    width: 64px;
  }

  .contact-qr-row figcaption {
    font-size: 8px;
  }

  .contact-event-photo {
    border-radius: 14px;
    bottom: auto;
    display: block;
    margin: 28px -20px 0 auto;
    max-width: none;
    position: relative;
    right: auto;
    width: calc(100% + 40px);
  }
}

/* News page */
.news-page {
  max-width: 1180px;
  padding-top: 10px;
}

.news-hero {
  background: #acd7bc;
  border-radius: 30px;
  overflow: hidden;
}

.news-hero img {
  aspect-ratio: 1850 / 855;
  display: block;
  object-fit: cover;
  width: 100%;
}

.news-heading {
  color: var(--green);
  padding: 54px 0 48px;
  text-align: center;
}

.news-heading h1 {
  font-size: 32px;
  font-weight: 400;
  margin: 0;
}

.news-heading p {
  font-size: 12px;
  margin: 7px 0 12px;
}

.news-heading > i {
  background: var(--green);
  display: block;
  height: 4px;
  margin: 0 auto;
  width: 48px;
}

.news-index-title {
  height: 145px;
  padding-left: 36px;
  position: relative;
}

.news-index-title span {
  color: #efefef;
  font-size: 92px;
  font-weight: 700;
  left: 36px;
  line-height: 1;
  position: absolute;
  top: 12px;
}

.news-index-title h2 {
  color: #494949;
  font-size: 29px;
  font-weight: 400;
  margin: 0;
  position: absolute;
  top: 76px;
}

.news-feed {
  background: #f6f6f6;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 40px max(20px, calc((100vw - 1180px) / 2)) 48px;
}

.news-entry {
  align-items: center;
  color: #666;
  display: grid;
  grid-template-columns: 1fr 80px;
  min-height: 165px;
  padding: 30px 105px;
  text-decoration: none;
}

.news-entry h3 {
  color: #5e5e5e;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 20px;
}

.news-entry p {
  color: #969696;
  font-size: 12px;
  margin: 0;
}

.news-entry time {
  color: #969696;
  font-size: 16px;
  justify-self: end;
}

.news-entry-featured {
  background: #fff;
  border-radius: 14px;
  column-gap: 52px;
  grid-template-columns: 230px 1fr 80px 18px;
  margin: 0 52px;
  min-height: 165px;
  padding: 0;
  overflow: hidden;
}

.news-entry-featured > img {
  height: 165px;
  object-fit: cover;
  width: 230px;
}

.news-entry-featured i {
  border-right: 1px solid #b7b7b7;
  border-top: 1px solid #b7b7b7;
  height: 10px;
  margin-right: 30px;
  transform: rotate(45deg);
  width: 10px;
}

body[data-page="news"] .site-footer {
  margin-top: 72px;
}

@media (max-width: 720px) {
  .news-page {
    padding: 5px 4px 0;
  }

  .news-hero {
    border-radius: 14px;
  }

  .news-heading {
    padding: 30px 0 28px;
  }

  .news-heading h1 {
    font-size: 19px;
  }

  .news-heading p {
    font-size: 8px;
    margin: 4px 0 8px;
  }

  .news-heading > i {
    height: 2px;
    width: 27px;
  }

  .news-index-title {
    height: 90px;
    padding-left: 16px;
  }

  .news-index-title span {
    font-size: 50px;
    left: 15px;
    top: 8px;
  }

  .news-index-title h2 {
    font-size: 19px;
    top: 46px;
  }

  .news-feed {
    padding: 18px 12px 22px;
  }

  .news-entry {
    gap: 12px;
    grid-template-columns: 1fr 44px;
    min-height: 108px;
    padding: 20px 12px;
  }

  .news-entry h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .news-entry p {
    font-size: 9px;
    line-height: 1.6;
  }

  .news-entry time {
    font-size: 11px;
  }

  .news-entry-featured {
    border-radius: 10px;
    column-gap: 10px;
    grid-template-columns: 112px 1fr 35px 8px;
    margin: 0;
    min-height: 104px;
  }

  .news-entry-featured > img {
    height: auto;
    margin-left: 8px;
    object-fit: contain;
    width: 104px;
  }

  .news-entry-featured h3 {
    font-size: 13px;
    margin-bottom: 7px;
  }

  .news-entry-featured p {
    font-size: 8px;
  }

  .news-entry-featured i {
    height: 6px;
    margin-right: 8px;
    width: 6px;
  }

  body[data-page="news"] .site-footer {
    margin-top: 36px;
  }
}

/* Mini program page: flex layout with grid-only image layering */
.miniapp-page {
  max-width: none;
  padding: clamp(70px, 9vw, 138px) 0 0;
}

.miniapp-article-head {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0 20px clamp(64px, 8vw, 106px);
  text-align: center;
}

.miniapp-article-head h1 {
  color: #5d5d5d;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 600;
  margin: 0 0 clamp(20px, 2vw, 34px);
}

.miniapp-article-head time {
  color: #9c9c9c;
  font-size: clamp(15px, 1.3vw, 20px);
}

.miniapp-article-head p {
  color: #8c8c8c;
  font-size: clamp(11px, 0.9vw, 14px);
  margin: clamp(20px, 2vw, 30px) 0 0;
}

.miniapp-showcase {
  background: #f6f6f6;
  padding: clamp(42px, 5vw, 72px) max(20px, calc((100vw - 1440px) / 2));
}

.miniapp-showcase-inner {
  align-items: center;
  display: flex;
  gap: clamp(32px, 6vw, 96px);
  justify-content: center;
  margin: 0 auto;
  max-width: 1280px;
}

.miniapp-phones {
  align-items: flex-end;
  display: flex;
  flex: 1 1 55%;
  gap: clamp(24px, 5vw, 76px);
  justify-content: center;
  min-width: 0;
}

.miniapp-phone {
  display: grid;
  flex: 0 1 auto;
  margin: 0;
  place-items: center;
}

.miniapp-phone > img {
  display: block;
  grid-area: 1 / 1;
  height: auto;
  max-width: 100%;
}

.miniapp-phone-profile {
  width: clamp(150px, 17.3vw, 266px);
}

.miniapp-phone-home {
  width: clamp(180px, 20.7vw, 318px);
}

.miniapp-phone-profile .miniapp-screen {
  width: 82.5%;
}

.miniapp-phone-home .miniapp-screen {
  width: 83.7%;
}

.miniapp-frame {
  position: relative;
  width: 100%;
}

.miniapp-arrows {
  display: flex;
  flex: 0 0 auto;
  gap: 3px;
}

.miniapp-arrows i {
  border-right: 3px solid #e2e2e2;
  border-top: 3px solid #e2e2e2;
  height: clamp(26px, 3vw, 42px);
  transform: rotate(45deg);
  width: clamp(26px, 3vw, 42px);
}

.miniapp-qr-card {
  align-items: center;
  display: flex;
  flex: 0 1 28%;
  flex-direction: column;
  margin: 0;
  min-width: 220px;
}

.miniapp-qr-card img {
  aspect-ratio: 1;
  height: auto;
  max-width: 266px;
  width: min(100%, 266px);
}

.miniapp-qr-card figcaption {
  color: #777;
  font-size: clamp(13px, 1.25vw, 18px);
  margin-top: clamp(28px, 3vw, 48px);
}

.miniapp-qr-card > i {
  background: #8d8d8d;
  display: block;
  height: 1px;
  margin-top: clamp(24px, 2.5vw, 38px);
  width: 62px;
}

.miniapp-view .site-footer {
  margin-top: clamp(90px, 10vw, 150px);
}

@media (max-width: 720px) {
  .miniapp-page {
    padding: 54px 0 0;
  }

  .miniapp-article-head {
    padding-bottom: 44px;
  }

  .miniapp-showcase {
    padding: 36px 18px 44px;
  }

  .miniapp-showcase-inner {
    flex-direction: column;
    gap: 34px;
  }

  .miniapp-phones {
    gap: 20px;
    width: min(100%, 470px);
  }

  .miniapp-phone-profile {
    width: 40%;
  }

  .miniapp-phone-home {
    width: 48%;
  }

  .miniapp-arrows {
    transform: rotate(90deg);
  }

  .miniapp-arrows i {
    border-width: 2px;
    height: 24px;
    width: 24px;
  }

  .miniapp-qr-card {
    flex-basis: auto;
    min-width: 0;
    width: min(72%, 280px);
  }

  .miniapp-view .site-footer {
    margin-top: 56px;
  }
}

@media (max-width: 430px) {
  .main-nav {
    gap: 9px;
    margin-left: 9px;
  }

  .section-head p {
    width: 190px;
  }

  .app-copy {
    padding-left: 18px;
  }
}

.about-main {
  overflow: hidden;
}

.about-hero img {
  aspect-ratio: 1856 / 862;
  object-position: center;
}

.about-title {
  padding-bottom: 78px;
}

.about-title p {
  text-transform: none;
}

.about-series {
  align-items: center;
  display: grid;
  gap: clamp(38px, 7vw, 96px);
  grid-template-columns: 0.86fr 1fr;
  min-height: 430px;
  padding: 54px 36px;
  position: relative;
}

.about-series::before {
  /*background: #f4f4f4;*/
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.about-series-three::before {
  background: #fff;
}

.about-series-five::after,
.about-series-seven::after {
  background-size: cover;
  content: "";
  opacity: 0.1;
  position: absolute;
  z-index: -1;
}

.about-series-five::after {
  background-image: url("./img/about/about-series-5@2x.jpg");
  background-position: 58% 44%;
  background-size: 118% auto;
  bottom: 106px;
  left: 34%;
  right: 0;
  top: 0;
  border-radius: 10px 0 0 10px;
}

.about-series-seven::after {
  background-image: url("./img/about/about-series-7@2x.jpg");
  background-position: 35% 48%;
  background-size: 120% auto;
  bottom: 77px;
  left: 0;
  right: 34%;
  top: 0;
  border-radius: 0 10px 10px 0;
}

.about-series-three,
.about-series-seven {
  grid-template-columns: 1fr 1.08fr;
}

.about-series-photo {
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-series-photo img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-series-three .about-series-photo img,
.about-series-seven .about-series-photo img {
  aspect-ratio: 857 / 628;
}

.about-series-copy {
  align-items: center;
  color: var(--green);
  display: grid;
  gap: 34px 34px;
  grid-template-columns: 92px 1fr;
}

.about-series-number {
  align-items: baseline;
  display: flex;
  gap: 10px;
  grid-row: 1;
}

.about-series-number strong {
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.9;
}

.about-series-number span {
  font-size: 24px;
  font-weight: 700;
}

.about-series-copy h2 {
  font-size: clamp(22px, 2.25vw, 34px);
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
}

.about-series-copy ul {
  color: #8a8d90;
  display: flex;
  font-size: 14px;
  grid-column: 2;
  gap: 0;
  line-height: 1.55;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.about-series-copy li {
  padding: 0 26px;
  position: relative;
  text-align: center;
}

.about-series-copy li:first-child {
  padding-left: 0;
}

.about-series-copy li:not(:last-child)::after {
  background: #9b9b9b;
  content: "";
  height: 42px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

@media (max-width: 720px) {
  .about-title {
    padding-bottom: 34px;
  }

  .about-series,
  .about-series-three,
  .about-series-seven {
    gap: 22px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px 18px;
  }

  .about-series-three .about-series-photo,
  .about-series-seven .about-series-photo {
    order: -1;
  }

  .about-series-copy {
    gap: 18px 18px;
    grid-template-columns: 60px 1fr;
  }

  .about-series-number strong {
    font-size: 48px;
  }

  .about-series-number span {
    font-size: 15px;
  }

  .about-series-copy h2 {
    font-size: 15px;
    line-height: 1.65;
  }

  .about-series-copy ul {
    font-size: 10px;
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 2px;
  }

  .about-series-copy li {
    padding: 0 18px;
  }

  .about-series-copy li:not(:last-child)::after {
    height: 30px;
  }
}
