@charset "utf-8";

/* =========================================================
   Header Search
   ========================================================= */
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-box form {
  position: absolute;
  top: 50%;
  right: 0;
  width: 260px;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.search-box input {
  width: 100%;
  min-width: 0;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}
.search-box .nav-search {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding-right: 8px;
}
.main-nav {
  transition: all 0.4s !important;
}
.sactive {
  right: calc(260px + 20px) !important;
}
.search-box.active form {
  transform: translateY(-50%) scaleX(1);
  opacity: 1;
  pointer-events: auto;
}
.search-box.active form input {
  width: 260px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  opacity: 1;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  padding-bottom: 32px;
}

.hero .swiper-slide {
  position: relative;
}

/* frame hero */
.hero .hero-frame.container--wide {
  position: relative;
  width: 100%;
  max-width: calc(var(--container-wide) * 1rem);
  margin-inline: auto;
  height: clamp(740rem, 72vh, 820rem);
  overflow: visible;
}

/* slider */
.hero .mainSLider {
  height: 100%;
}
.hero .mainSLider .swiper-wrapper,
.hero .mainSLider .swiper-slide {
  height: 100%;
}

/* overlay dan gambar */
.hero .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* teks hero */
.hero .text-cont {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 54%;
  margin: 0 auto 40px;
}
.hero .hero-text {
  position: absolute;
  top: 14%;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  color: var(--black);
  flex-direction: column;
}
.hero .hero-text h1 {
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  font-family: Outfit;
  font-size: 50px;
  font-weight: 600;
  line-height: 140%;
}
.hero .hero-text p {
  color: #fff;
  text-align: center;
  font-family: Outfit;
  font-size: 44px;
  font-weight: 400;
  line-height: 160%;
}

/* kontrol slider (posisi desktop; di responsive akan override) */
.hero .swiper-control {
  position: absolute;
  right: 1183px;
  bottom: -307px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.hero .texts {
  color: #000;
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

/* progress bar (memperbaiki typo .swiper-pagingation-bar) */
.hero .swiper-control .swiper-pagination-bar {
  position: relative;
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}
.hero
  .swiper-control
  .swiper-pagination-bar
  .swiper-pagination-progressbar-fill {
  background-color: var(--white);
}
.hero .swiper-control .swiper-progress {
  position: relative;
  width: 180px;
  height: 2px;
  overflow: hidden;
  background: rgb(153, 153, 153);
}
.hero .swiper-control .swiper-progress .swiper-progress-bar {
  width: 0;
  height: 100%;
  background: var(--black);
  transition: none;
}

/* tombol play (opsional) */
.hero .swiper-control .play-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  transition: all 0.4s;
}
.hero .swiper-control .play-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* scroll hint */
.hero .scroll {
  position: absolute;
  right: 0;
  bottom: -54px;
  z-index: 2;
  display: flex;
  gap: 12px;
  text-align: right;
  transform: none;
}
.hero .scroll .text {
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.hero .scroll .scroll-icon {
  width: 20px;
  height: auto;
  animation: pulseUpDown 1.5s ease-in-out infinite;
}

/* =========================================================
   Copyright
   ========================================================= */
   .copyright-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

  .copyright-wrapper .title-copyright{
    font-weight: 500;
    font-size: var(--font-size-20);
    line-height: 1.3;
    color: white;
    margin: 0 0 32px;
  }

.text-copyright-wrapper {
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 20px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  width: 80%;
}

/* item */
.text-copyright-wrapper .copyright-slide {
  position: relative;
  padding-left: 24px; 
  min-width: 0;
}

/* garis pemisah kiri setiap item */
.text-copyright-wrapper .copyright-slide::before {
  content: "";
  position: absolute;
  inset: 2px auto 2px 0;  /* top/right/bottom/left */
  width: 1px;
  background: rgba(255,255,255,.35);
}

/* tipografi */
.text-copyright-wrapper .code {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  margin: 0 0 6px;
  opacity: .95;
}
.text-copyright-wrapper .name,
.text-copyright-wrapper .name2 {
  margin: 0;
  font-size: var(--font-size-16) !important;
  line-height: 1.5;
  opacity: .9;
  overflow-wrap: anywhere;
  text-align: start !important;
  font-weight: 200 !important;
}
.text-copyright-wrapper .name2 { opacity: .75; }


/* =========================================================
   Paper
   ========================================================= */
.paper {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-left: 254px;
  padding-block: 208px 0;
  justify-content: flex-end;
  margin-bottom: 153px;
  overflow: hidden;
}
.paper-grid {
  display: grid;
  /*width: 1650px;*/
  width: -webkit-fill-available;
  gap: 50px;
  grid-template-columns: 417px calc(100% - 467px); /* 50px gap accounted */
}
.paper-news {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
}
.paper-text {
  display: grid;
  align-content: start;
  gap: 16px;
  width: 370rem;
}
.paper-text .title {
  color: var(--primary);
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
}
.paper-text .desc {
  margin: 6px 0 49px;
  color: var(--primary);
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 300;
  line-height: 40px;
}
.paper-text .cta-round {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 81px;
  color: var(--black);
  background: #f2f2f2;
  cursor: pointer;
  transition: 0.25s;
}
.paper-text .cta-round:hover {
  color: var(--white);
  background: var(--primary);
  transform: translateY(-1px);
}
.paper-text .cta-round .dot {
  font-size: 24px;
}
.paper-news .swiper {
  width: 100%;
  height: 100%;
  margin-bottom: 77px;
}
.paper-news .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /*height: 430px;*/

  /* test width*/
  height: 210px;
  /*width: 430px;*/
  padding: 28px 44px 44px 44px;
  border: solid 1px #ddd;
  margin-right: 30px;
}
.paper-news .swiper-pagination-progressbar {
  bottom: 0;
  top: auto;
  background: rgb(238, 238, 238);
}
.paper-news .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #000;
}
.slide-text {
  padding-top: 16px;
}
.slide-text .code {
  font-size: 20px;
}
.slide-text .name {
  width: 100%;
  color: var(--black);
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
}
.slide-text .name2 {
  font-size: 18px;
}

/* =========================================================
   Simulation
   ========================================================= */
.sim.sim--full {
  position: relative;
  height: 814px;
  margin-top: 70px;
  overflow: hidden;
  isolation: isolate;
}
.sim.sim--full::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/assets/images/main/bgs2.png") center/cover no-repeat;
}
.sim.sim--full::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.sim .sim-inner {
  position: relative;
  z-index: 2;
  width: calc(var(--container-scale) * 100%);
  max-width: calc(var(--container) * 1rem);
  margin: 85rem auto;
}
.sim .sim-head {
  color: #fff;
  text-align: center;
  display: block;
  gap: 12px;
}
.sim .sim-head .title {
  padding-top: 16rem;
  margin-bottom: 27rem;
  text-align: center;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 60px;
}
.sim .sim-head .subtitle {
  opacity: 0.9;
  font-size: clamp(14px, 2.2vw, 24rem);
  font-weight: 100;
}
.sim .sim-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 260rem;
  height: 63px;
  margin-top: 56px;
  font-size: 20rem;
  font-weight: 400;
  color: #fff;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: background 0.25s, transform 0.25s;
}
.sim .sim-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}
.sim .sim-btn .icon {
  width: 24rem;
  height: auto;
}
.sim .sim-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  margin-top: 60px;
}
.sim .sim-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10rem;
  padding: 40rem;
  color: #fff;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
}
.sim .sim-card .en,
.sim .sim-card .ko {
  font-size: 16rem;
  font-weight: 400;
  line-height: normal;
  opacity: 0.95;
}

/* =========================================================
   City Simulation
   ========================================================= */
.city-sim {
  background: #fff;
  padding-block: 160rem;
  margin-bottom: -11px;
}
.city-sim-left {
  display: flex;
  flex-direction: column;
  width: 550rem;
}
.city-sim .city-sim-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 128px;
  align-items: start;
}
.city-sim .title-kr {
  padding-top: 32px;
  color: var(--primary);
  font-size: clamp(28px, 3.2vw, 48rem);
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.02em;
}
.city-sim .subtitle-en {
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.7);
  font-size: clamp(16px, 1.4vw, 24px);
}
.city-sim .audio-card {
  width: 100%;
  margin-top: 44px;
  background: #fff;
  border: 1px solid #ddd;
}
.city-sim .audio-card .cover {
  position: relative;
  height: 179px;
  overflow: hidden;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.audio-card .cover__gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.95;
  pointer-events: none;
}
.city-sim .audio-card .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.city-sim .audio-card .cover .wave {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9) 0 2px,
    transparent 2px 8px
  );
}
.city-sim .audio-card .cover .needle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  opacity: 0.9;
  transform: translateX(-50%);
}
.city-sim .audio-card .audio-body {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 21px 38px 22px;
}
.city-sim .audio-card .brand {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.city-sim .audio-card .audio-title {
  margin: 0 0 40px;
  color: #111;
  letter-spacing: 0.3px;
  font-weight: 700;
  line-height: 1.4;
}
.city-sim .audio-card .audio-controls audio {
  width: 100%;
  height: 36px;
  background: transparent;
  border: none;
  outline: none;
}
.city-sim .audio-card .audio-controls audio::-webkit-media-controls-enclosure,
.city-sim .audio-card .audio-controls audio::-webkit-media-controls-panel {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.city-sim
  .audio-card
  .audio-controls
  audio::-webkit-media-controls-play-button {
  transform: scale(1.5);
  margin-right: 10px;
  margin-left: -15px;
}
.city-sim
  .audio-card
  .audio-controls
  audio::-webkit-media-controls-mute-button {
  transform: scale(1.3);
  margin-right: -15px;
}
.city-sim .city-sim-map {
  width: 722px;
  height: 590px;
  padding: 50px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
}
.city-sim .city-sim-map img {
  display: block;
  width: 100%;
  object-fit: cover;
}
audio:focus {
  outline: none;
}

/* =========================================================
   Notice & Resources
   ========================================================= */
.board.board--full {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: 103rem 104rem;
}
.board.board--full::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/assets/images/main/bgs3.png") center/cover no-repeat;
}
.board.board--full::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.board .board-inner {
  position: relative;
  z-index: 2;
  width: calc(var(--container-scale) * 100%);
  max-width: calc(var(--container) * 1rem);
  margin: 0 auto;
}
.board .board-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  color: #fff;
}
.board .board-head .title {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
}
.board .board-head .subtitle {
  margin-top: 7px;
  color: var(--white);
  font-size: clamp(14px, 2.2vw, 32rem);
  font-weight: 300;
  line-height: normal;
  letter-spacing: -1px;
}
.board .cta-round {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 81px;
  color: var(--black);
  background: #f2f2f2;
  cursor: pointer;
  transition: 0.25s;
}
.board .cta-round:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}
.board .cta-round .dot {
  font-size: 24px;
}
.board .board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 47px;
}
.board .board-card {
  padding: 40px;
  background: var(--white);
  overflow: hidden;
}
.board .board-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(0, 0, 0);
}
.board .board-card-head .heading {
  color: var(--black);
  font-size: 32rem;
  font-weight: 400;
  line-height: normal;
}
.board .board-card-head .add svg {
  width: 20px;
  height: 20px;
  display: block;
}
.board .board-card-head .add:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.board .board-card-head .add:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.board .board-list li + li {
  border-top: 1px solid rgb(221, 221, 221);
}
.board .board-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 26px 0;
  color: #111;
  text-decoration: none;
}
.board .board-list a:hover {
  color: var(--primary);
}
.board .board-list .subject {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-overflow: ellipsis;
}
.board .board-list .date {
  color: var(--black);
  font-size: 18px;
  letter-spacing: -0.1rem;
}

/* =========================================================
   Mobile
   ========================================================= */
@media (max-width: 767px) {
  #header .logo-image {
    width: 70%;
    padding-left: 20px;
  }
  #header .offcanvas-toggle {
    padding-right: 20px;
  }

  .hero .hero-frame.container--wide {
    position: relative;
    /*height: auto;*/
    height: -webkit-fill-available;
    overflow: visible;
  }
  .hero .mainSLider {
    /*height: 52vh;
    min-height: 320px;
    max-height: 520px;*/
    height: -webkit-fill-available;
  }
  .hero .mainSLider .swiper-wrapper,
  .hero .mainSLider .swiper-slide {
    height: 100%;
  }

  .hero .text-cont {
    width: 80%;
    /*padding: 20px;*/
    gap: 8px;
    margin: 0 auto 64px;
  }
  .hero .hero-text {
    position: absolute;
    left: 50%;
    /*top: 20%;*/
    top: 10%;
    z-index: 2;
    display: block;
    width: 100%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
  }
  .hero .hero-text h1 {
    font-size: clamp(24px, 5.4vw, 32px);
    line-height: 130%;
    margin: 0 0 8px;
    font-weight: 600;
  }
  .hero .hero-text p {
    font-size: clamp(15px, 5.4vw, 24px);
    /*font-size: clamp(13px, 3.8vw, 16px);*/
    line-height: 140%;
    font-weight: 400;
    margin: 0;
  }

  .hero .swiper-control {
    position: static;
    z-index: 3;
    margin: 12px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
  .hero .texts {
    appearance: none;
    padding: 6px 10px;
    font-size: 14px;
    color: #fff;
  }
  .hero .texts:active {
    transform: translateY(1px);
  }
  .hero .swiper-control .swiper-progress {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
  }
  .hero .swiper-control .swiper-progress .swiper-progress-bar {
    background: #fff;
  }
  .hero .swiper-pagination-current,
  .hero .swiper-pagination-total {
    font-size: 12px;
    color: #fff;
    opacity: 0.9;
  }

  .hero .scroll {
    position: absolute;
    right: auto;
    left: 50%;
    bottom: 12px;
    z-index: 3;
    display: inline-flex;
    gap: 8px;
    margin: 0;
    transform: translateX(-50%);
    pointer-events: auto;
  }
  .hero .scroll .text {
    font-size: 12px;
    color: #fff;
  }
  .hero .scroll .scroll-icon {
    width: 16px;
    filter: invert(1) brightness(2);
  }
  .hero {
    padding-bottom: 16px;
    height: 100vh;
  }
  .hero { padding: 64px 20px 28px; }

  .copyright-wrapper .title-copyright {
    font-size: 20px;
  }
  .text-copyright-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 24px;
    width: 90%;
  }
  /* item pertama per baris (2 kolom) hilangkan garis */
  .text-copyright-wrapper .copyright-slide { padding-left: 16px; }
  .text-copyright-wrapper .code,
  .text-copyright-wrapper .name,
  .text-copyright-wrapper .name2 { font-size: 12.5px !important; text-align: start; }

  .paper {
    padding-left: 0;
    padding-block: 32px 0;
    margin-bottom: 48px;
    align-items: stretch;
  }
  .paper-news .swiper-slide figure img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .paper-news .swiper-slide {
    height: max-content;
    padding: 0px 20px 20px 20px;
  }
  .paper-news .swiper-pagination-progressbar {
    max-width: 350px;
  }
  .slide-text .code {
    font-size: 18px;
  }
  .slide-text .name,
  .slide-text .name2 {
    font-size: 14px;
  }
  .paper-text {
    gap: 10px;
    padding-inline: 0;
  }
  .paper-text .title {
    font-size: clamp(22px, 5.6vw, 28px);
    line-height: 1.2;
  }
  .paper-text .desc {
    margin: 6px 0 20px;
    font-size: 14px;
    line-height: 1.6;
  }
  .paper-text .cta-round {
    width: 54px;
    height: 54px;
    border-radius: 999px;
  }
  .paper-text .cta-round .dot {
    font-size: 16px;
  }
  .paper-news,
  .paper-text {
    width: 90vw;
    margin: 0 auto;
  }
  .paper-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
  .paper-news .swiper {
    margin-bottom: 32px;
  }

  .sim.sim--full {
    margin-top: 32px;
    height: 100%;
    overflow: visible;
    padding-block: 44px;
  }
  .sim.sim--full::after {
    background: rgba(0, 0, 0, 0.25);
  }
  .sim .sim-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-inline: 20px;
  }
  .sim .sim-head {
    text-align: center;
  }
  .sim .sim-head .title {
    margin: 0 0 10px;
    font-size: clamp(20px, 5.6vw, 28px);
    line-height: 1.25;
  }
  .sim .sim-head .subtitle {
    font-size: clamp(12px, 3.8vw, 14px);
    line-height: 1.5;
    opacity: 0.95;
  }
  .sim .sim-btn {
    width: 100%;
    max-width: 50%;
    margin-top: 18px;
    height: 48px;
    font-size: 14px;
    gap: 10px;
  }
  .sim .sim-btn .icon {
    width: 18px;
  }
  .sim .sim-cards {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  .sim .sim-card {
    padding: 16px;
    gap: 8px;
    border-width: 1px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(1.5px);
  }
  .sim .sim-card .en,
  .sim .sim-card .ko {
    font-size: 14px;
    line-height: 1.55;
  }

  .city-sim {
    background: #fff;
    padding-block: 32px;
    margin-bottom: 32px;
  }
  .city-sim .city-sim-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .city-sim-left {
    width: 100%;
  }
  .city-sim .title-kr {
    padding-top: 8px;
    font-size: clamp(20px, 5.6vw, 28px);
    line-height: 1.25;
  }
  .city-sim .subtitle-en {
    margin-top: 6px;
    color: rgba(0, 0, 0, 0.7);
    font-size: clamp(12px, 3.8vw, 14px);
    line-height: 1.5;
  }
  .city-sim .audio-card {
    margin-top: 16px;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
  }
  .city-sim .audio-card .cover {
    height: 250px;
  }
  .audio-card .cover__gif {
    opacity: 0.9;
  }
  .city-sim .audio-card .audio-body {
    padding: 16px;
  }
  .city-sim .audio-card .brand {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .city-sim .audio-card .audio-title {
    font-size: clamp(14px, 4.4vw, 16px);
    line-height: 1.45;
    margin: 0 0 14px;
  }
  .city-sim .audio-card .audio-controls audio {
    width: 100%;
    height: 36px;
  }
  .city-sim
    .audio-card
    .audio-controls
    audio::-webkit-media-controls-play-button {
    transform: scale(1.3);
    margin-right: 8px;
    margin-left: -10px;
  }
  .city-sim
    .audio-card
    .audio-controls
    audio::-webkit-media-controls-mute-button {
    transform: scale(1.15);
    margin-right: -10px;
  }
  .city-sim .audio-card .audio-controls audio::-webkit-media-controls-enclosure,
  .city-sim .audio-card .audio-controls audio::-webkit-media-controls-panel {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .city-sim .city-sim-map {
    order: 2;
    width: 100%;
    height: auto;
    padding: 12px;
  }
  .city-sim .city-sim-map img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .board.board--full {
    padding-block: 32px;
  }
  .board .board-inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 20px;
  }
  .board .board-head {
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
  }
  .board .board-head .title {
    font-size: clamp(18px, 5.4vw, 22px);
    line-height: 1.25;
  }
  .board .board-head .subtitle {
    margin-top: 6px;
    font-size: clamp(12px, 3.6vw, 14px);
    line-height: 1.4;
    opacity: 0.95;
  }
  .board .cta-round {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    /*display: none;*/
  }
  .board .cta-round .dot {
    font-size: 16px;
  }
  .board .board-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }
  .board .board-card {
    padding: 18px;
    border-radius: 8px;
  }
  .board .board-card-head {
    padding-bottom: 12px;
  }
  .board .board-card-head .heading {
    font-size: 18px;
    font-weight: 600;
  }
  .board .board-card-head .add {
    /*display: none;*/
  }
  .board .board-card-head .add svg {
    width: 18px;
    height: 18px;
  }
  .board .board-list a {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 14px 0;
    /*pointer-events: none;
    cursor: default;*/
  }
  .board .board-list .subject {
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .board .board-list .date {
    margin-left: 8px;
    font-size: 13px;
    letter-spacing: 0;
    white-space: nowrap;
  }
}

/* ===== opsional: sangat kecil ===== */
@media (max-width: 480px) {
  .text-copyright-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 20px; }
  .text-copyright-wrapper .copyright-slide::before { display: none; }
  .text-copyright-wrapper .copyright-slide { padding-left: 0; margin-bottom: 16px; }
  .copyright-wrapper .title-copyright {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    /* item pertama setiap baris (4 kolom) tidak punya garis */
    .text-copyright-wrapper .copyright-slide:nth-child(4n+1)::before { display: none; }
}

/* =========================================================
   Tablet
   ========================================================= */
@media (min-width: 768px) and (max-width: 1439px) {
  #header .logo-image {
    padding-left: 32px;
  }
  #header .offcanvas-toggle {
    padding-right: 32px;
  }

  .hero {
    padding: 40px 40px 0 40px;
  }
  .hero .hero-frame.container--wide {
    position: relative;
    height: 74vh;
    min-height: 420px;
    max-height: 680px;
    overflow: visible;
  }
  .hero .mainSLider {
    height: 100%;
  }
  .hero .mainSLider .swiper-wrapper,
  .hero .mainSLider .swiper-slide {
    height: 100%;
    width: -webkit-fill-available !important;
  }
  .hero .swiper-slide::after {
    background: rgba(0, 0, 0, 0.45);
  }
  .hero .hero-text {
    position: absolute;
    left: 50%;
    top: 14%;
    z-index: 2;
    /*width: min(800px, 90%);*/
    width: min(1200px, 90%);
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
  }
  .hero .text-cont {
    width: min(700px, 90%);
    padding: 0 32px;
    margin: 0 auto 40px;
    gap: 10px;
  }

  .hero .hero-text h1 {
    font-size: clamp(24px, 3.5vw, 32px);
    line-height: 1.2;
    margin: 0 0 10px;
    font-weight: 600;
  }
  .hero .hero-text p {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    margin: 0;
  }
  .hero .swiper-control {
    position: static;
    z-index: 3;
    margin: 16px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .hero .texts {
    padding: 6px 12px;
    font-size: 16px;
    color: #fff;
  }
  .hero .swiper-control .swiper-progress {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
  }
  .hero .swiper-control .swiper-progress .swiper-progress-bar {
    background: #fff;
  }
  .hero .swiper-pagination-current,
  .hero .swiper-pagination-total {
    font-size: 13px;
    color: #fff;
    opacity: 0.95;
  }
  .hero .scroll {
    position: absolute;
    right: auto;
    left: 50%;
    bottom: 16px;
    z-index: 3;
    display: inline-flex;
    gap: 10px;
    margin: 0;
    transform: translateX(-50%);
  }
  .hero .scroll .text {
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .hero .scroll .scroll-icon {
    width: 18px;
    height: auto;
    filter: invert(1) brightness(2);
  }
  /*copyright*/
  .text-copyright-wrapper {
    width: 100%;
  }

  .text-copyright-wrapper .code {
    text-align: start;
  }

    .copyright-wrapper .title-copyright {
    font-size: var(--font-size-18);
}
  .text-copyright-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 32px;
    width: 100%;
  }

  .text-copyright-wrapper .copyright-slide { padding-left: 20px; }
  .text-copyright-wrapper .code,
  .text-copyright-wrapper .name,
  .text-copyright-wrapper .name2 {font-size: 14px !important; text-align: start; }

  .paper {
    padding-left: 0;
    padding-block: 32px 0;
    margin-bottom: 48px;
    align-items: stretch;
  }
  .paper-text,
  .paper-news {
    width: 90vw;
    margin: 0 auto;
  }
  .paper-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
  .paper-news .swiper {
    margin-bottom: 32px;
  }
  .paper-news .swiper-slide,
  .paper-news .swiper-slide figure,
  .paper-news .swiper-slide figure img {
    width: 100%;
    height: max-content;
  }
  .paper-news .swiper-pagination-progressbar {
    max-width: 767px;
  }

  .sim .sim-cards {
    grid-template-columns: auto;
  }
  .sim.sim--full {
    height: 100%;
  }
  .city-sim-left {
    width: 100%;
  }
  .city-sim {
    padding-block: 64rem;
    margin: 0 auto;
  }
  .city-sim .city-sim-grid {
    gap: 64px;
    grid-template-columns: auto;
  }
  .city-sim .city-sim-map {
    width: 100%;
    height: 100%;
  }

 

}

/* =========================================================
   Large screens
   ========================================================= */
@media screen and (min-width: 1440px) and (max-device-width: 1820px) {
  .city-sim .city-sim-map {
    width: 100%;
    height: auto;
  }
  .city-sim .city-sim-grid {
    gap: 64px;
    grid-template-columns: 1fr 1fr;
  }
  .city-sim .title-kr {
    padding-top: 0;
  }

  .hero .swiper-control {
    position: static;
    z-index: 3;
    margin: 16px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .hero .texts {
    padding: 6px 12px;
    font-size: 16px;
    color: #fff;
  }
  .hero .swiper-control .swiper-progress {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
  }
  .hero .swiper-control .swiper-progress .swiper-progress-bar {
    background: #fff;
  }
  .hero .swiper-pagination-current,
  .hero .swiper-pagination-total {
    font-size: 13px;
    color: #fff;
    opacity: 0.95;
  }
  .hero .scroll {
    position: absolute;
    right: auto;
    left: 50%;
    bottom: 16px;
    z-index: 3;
    display: inline-flex;
    gap: 10px;
    margin: 0;
    transform: translateX(-50%);
  }
  .hero .scroll .text {
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .hero .scroll .scroll-icon {
    width: 18px;
    height: auto;
    filter: invert(1) brightness(2);
  }

  .paper {
    padding-top: 64px;
    padding-left: 90px;
    margin-bottom: 84px;
  }
  .paper-text,
  .paper-news,
  .paper-grid,
  .paper-news .swiper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .paper-news .swiper-pagination-progressbar {
    width: 100%;
  }
  .paper-news .swiper-slide,
  .paper-news .swiper-slide figure,
  .paper-news .swiper-slide figure img {
    width: 100%;
    height: auto;
  }
  .city-sim .audio-card {
    margin-top: 8px;
  }
}
