.bi1-bg {
  background: #c2c2c2;
}
.bi2-bg {
  background: #c8c8c8;
}
.bi3-bg {
  background: #bebebe;
}
.body-section {
  padding: var(--section-gap) 0;
}
/* ─── HERO ─── */
.hero {
  padding: 44px 0 0;
}
.hero-grid {
  grid-template-columns: 6fr 4fr;
  gap: 24px;
  align-items: stretch;
}
.hero-img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-img .img-box {
  transition: transform 0.4s;
  height: 100%;
}
.hero-img .img-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img:hover .img-box {
  transform: scale(1.03);
}
.hero-body {
  display: grid;
  grid-template-rows: 28px 118px 100px 22px 1fr;
  gap: 0;
  row-gap: 10px;
  align-self: stretch;
  padding-left: 24px;
  overflow: hidden;
}
.hero-body .cat-tag {
  margin-bottom: 0;
  align-self: start;
  color: #c4501e;
}
.hero-body .hero-title {
  margin-bottom: 0;
  align-self: start;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-body .hero-excerpt {
  margin-bottom: 0;
  align-self: start;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-body .hero-meta {
  padding-top: 0;
  align-self: start;
}
.hero-body .btn-read {
  margin-top: 10px;
  align-self: end;
}
.cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cat-tag::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.hero-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-excerpt {
  font-size: 18px;
  color: #232323;
  line-height: 1.85;
  margin-bottom: 12px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  padding-top: 12px;
}
.hero-meta span:first-child {
  max-width: 20em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meta-dot {
  color: var(--border);
}

.btn-read {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 160px;
  padding: 4px 22px;
  background: #c4501e;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(196, 80, 30, 0.35);
}
.btn-read:hover {
  background: #a8401a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
.btn-read:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn-read svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
.hero-body .btn-read {
  background: var(--red);
  color: #fff;
  border: none;
  margin-top: 12px;
}
.hero-body .btn-read:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
/* ─── HERO SLIDER ─── */
.hero-slider {
  display: grid;
  position: relative;
}
.hero-slide {
  grid-area: 1/1;
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 24px;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0s 0.5s;
  z-index: 0;
  cursor: pointer;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 0.5s ease,
    visibility 0s 0s;
  z-index: 1;
}
.hero-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 0;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 34px;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
  text-align: center;
}
.hero-arrow:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.hero-prev-btn {
  left: 10px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-next-btn {
  right: 10px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-prev-btn:hover,
.hero-next-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.hero-dots-bar {
  display: flex;
  gap: 8px;
  padding: 24px 0 4px;
  margin-bottom: var(--section-gap);
  justify-content: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.2s;
  flex-shrink: 0;
}
.hero-dot.active {
  background: var(--red);
  width: 20px;
  border-radius: 4px;
}

/* Mobile-only sections */
.mobile-pop-sec {
  display: none;
}

/* ─── ISSUE FEATURE ─── */
.issue-feature-sec {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0 48px;
}
.issue-feature {
  display: flex;
  gap: 36px;
  align-items: center;
}
.issue-cover-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 0;
  width: 160px;
  gap: 0;
}
.issue-cover {
  display: block;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 350/467;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.2s;
}
.issue-cover:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.26);
}
.issue-cover .img-box {
  height: 100%;
}
.issue-subscribe-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
  background: #c4501e;
  color: #fff;
}
.issue-subscribe-btn:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  background: #a8401a;
  color: #fff;
}
.issue-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 0;
}
.issue-info-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.issue-info-head .issue-info-tag {
  margin-bottom: 16px;
}
.issue-info-head .issue-info-label {
  margin-bottom: 6px;
}
.issue-info-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: #c4501e;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 18px;
  border-radius: 16px;
  margin-bottom: 0;
  align-self: flex-start;
}
.issue-info-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 0;
}
.issue-info-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.issue-info-desc {
  font-size: 18px;
  color: #232323;
  line-height: 1.85;
  margin-bottom: 0;
}
.issue-ad-pc {
  width: 300px;
  height: 250px;
  flex-shrink: 0;
}
.issue-ad-mb {
  width: 300px;
  height: 250px;
  display: none;
  margin: 30px auto 0;
}

/* ─── CAT GRID (desktop 2×2) ─── */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.cat-col {
  border: 1px solid var(--border);
  border-radius: 2px;
}
.cat-col-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: #972018;
}
.cat-col-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0;
  color: #fff;
}
.cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  background: #e8a078;
}
.cat-col-more {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-col-more:hover {
  color: #e8a078;
}
.pt-list {
  list-style: none;
  background: #fcfbfa;
}
.pt-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  gap: 10px;
}
.pt-item:first-child {
  padding-top: 18px;
}
.pt-item:last-child {
  border-bottom: none;
  padding-bottom: 18px;
}
.pt-item:hover .pt-title {
  color: #972018;
}
.pt-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
/* Mobile cat scroll (hidden on desktop) */
.cat-scroll-row {
  display: none;
}

/* ─── PROJECT ─── */
.project-sec {
  background: linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)), color-mix(in srgb, var(--navy) 88%, var(--footer-bg));
  color: #fff;
  padding: 36px 0;
}
.project-sec + .site-footer {
  margin-top: 0;
}
.proj-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.proj-label {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.proj-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #fff;
}
.proj-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  max-width: 540px;
}
.proj-cta {
  flex-shrink: 0;
}
.btn-proj {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  background: #fff;
  color: #251510;
  font-size: 18px;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: all 0.2s;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.btn-proj:hover {
  background: #c4501e;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
  border-color: #c4501e;
}
.btn-proj svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}
/* ─── BILINGUAL ─── */
.bilingual-sec {
  background: var(--bg2);
  padding: 56px 0;
}
.bilingual-sec .sec-hd h2,
.bilingual-sec .sec-more {
  color: #4a4a4a;
}
.bilingual-sec .sec-more:hover {
  color: var(--c-bilingual) !important;
  text-decoration: none;
}
.bi-badge {
  display: inline-flex;
  align-items: center;
  background: var(--c-bilingual);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  margin-left: 8px;
  vertical-align: middle;
}
.bi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.bi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.bi-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}
.bi-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.bi-body {
  padding: 14px;
}
.bi-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bi-en {
  font-size: 18px;
  color: #232323;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bi-date {
  font-size: 14px;
  color: var(--muted);
}
/* Mobile bi-scroll (hidden on desktop) */
.bi-scroll {
  display: none;
}
/* ad */
.top-ad-pc {
  width: 970px;
  height: 90px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .top-ad-pc {
    display: none;
  }
  .issue-ad-pc {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .hero-body .hero-excerpt {
    display: none;
  }
  .hero-body {
    grid-template-rows: auto auto auto auto;
    row-gap: 6px;
    grid-area: 1/1;
    align-self: end;
    z-index: 2;
    padding: 24px 32px !important;
    border-left: none !important;
    border-top: none !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
    color: #fff;
    margin-top: 0;
  }
  .hero-title {
    color: #fff !important;
    -webkit-line-clamp: 2;
    font-size: 26px;
  }
  .hero-excerpt {
    display: none;
  }
  .hero-meta {
    color: rgba(255, 255, 255, 0.8) !important;
    padding-top: 10px;
  }
  .hero-body .cat-tag {
    color: var(--earth-yellow-light) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  }
  /* Hero: grid stacking overlay (img + body share same cell) */
  .hero-slider {
    display: grid;
  }
  .hero-slide {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
  }
  .hero-img-wrap {
    grid-area: 1/1;
    width: 100%;
    aspect-ratio: 16/9;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .cat-col-hd {
    padding: 8px 10px;
  }
  .cat-col-name {
    font-size: 15px;
    letter-spacing: 0.05em;
    gap: 5px;
  }
  .cat-col-more {
    font-size: 13px;
  }
  .bi-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .btn-read {
    margin-top: 18px;
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 10px 16px;
  }
  .hero-body .btn-read {
    margin-top: 26px;
  }
  .btn-read svg {
    display: none;
  }
  /* Hero: stack vertically */
  .hero {
    padding: 24px 0 0;
  }
  .hero-slider {
    display: grid;
  }
  .hero-grid {
    display: block;
  }
  .hero-img-wrap {
    border-radius: 0;
    aspect-ratio: 16/9;
  }
  .hero-body {
    padding: 16px 0 20px;
    border-left: none;
    align-self: auto;
    grid-template-rows: 28px 93px 89px 22px 1fr;
  }
  .cat-tag {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .cat-tag::before {
    width: 16px;
  }
  .hero-title {
    font-size: 22px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-excerpt {
    font-size: 16px;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
    padding-top: 12px;
  }

  /* Hero slider — keep grid stacking (from base CSS), override internal layout to flex column */
  .hero-slide {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
    align-items: stretch !important;
  }
  .hero-img-wrap {
    width: 100%;
    border-radius: 0;
    aspect-ratio: 16/9;
    grid-area: unset !important;
  }
  .hero-body {
    grid-area: unset !important;
    background: none !important;
    color: inherit !important;
  }
  .hero-arrow {
    --hero-arrow-size: 32px;
    width: var(--hero-arrow-size);
    height: var(--hero-arrow-size);
    font-size: calc(var(--hero-arrow-size) * 0.8);
    padding-bottom: 3px;
    box-sizing: border-box;
  }
  .hero-prev-btn {
    left: 6px;
  }
  .hero-next-btn {
    right: 6px;
  }
  .hero-dots-bar {
    padding: 20px 0 14px;
    margin-bottom: var(--section-gap-sm);
    justify-content: center;
  }
  /* Mobile popular */
  .mobile-pop-sec {
    display: block;
    background: var(--bg2);
    border-color: var(--border);
    padding: var(--section-gap-sm) 0;
  }
  .mobile-pop-sec .sec-hd {
    padding: 16px 16px 4px;
  }
  .mobile-pop-sec .pop-list {
    padding: 4px 16px 0;
  }
  .mobile-pop-sec .pop-item {
    border-bottom-color: var(--border);
    padding: 8px 0;
  }
  /* issue */
  .issue-feature-sec {
    padding: 24px 0;
    border-top-width: 1px;
  }
  .issue-feature-sec .wrap {
    max-width: var(--max);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 16px 0 !important;
    box-sizing: border-box;
  }
  .issue-feature {
    display: grid;
    grid-template-areas: "cover head" "cover title" "btn btn";
    grid-template-columns: 90px 1fr;
    gap: 8px 16px;
    padding: 0;
    align-items: start;
  }
  .issue-cover-wrap {
    display: contents;
  }
  .issue-feature .issue-info {
    display: contents;
  }
  .issue-feature .issue-info-head {
    grid-area: head;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }
  .issue-feature .issue-info-head .issue-info-tag,
  .issue-feature .issue-info-head .issue-info-label {
    margin-bottom: 0;
  }
  .issue-feature .issue-info-tag {
    font-size: 12px;
    padding: 2px 10px;
    letter-spacing: 0.08em;
    flex-shrink: 0;
  }
  .issue-feature .issue-info-label {
    font-size: 15px;
    min-width: 0;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .issue-feature .issue-cover {
    grid-area: cover;
    aspect-ratio: 350/467;
    width: 90px;
  }
  .issue-feature .issue-info-title {
    grid-area: title;
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 0;
  }
  .issue-feature .issue-subscribe-btn {
    grid-area: btn;
    width: 100%;
    font-size: 16px;
    padding: 10px 16px;
    white-space: nowrap;
    justify-content: center;
    margin-top: 20px;
  }
  .issue-info-desc {
    display: none;
  }
  /* 手機：pt-list 標題與 pop-title 同為 16px */
  .pt-title {
    font-size: 16px;
  }

  /* Cat grid → hidden on mobile */
  .cat-grid {
    display: none;
  }
  /* Cat scroll → visible on mobile */
  .cat-scroll-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding: 14px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
  }
  .cat-scroll-row::-webkit-scrollbar {
    display: none;
  }
  .cat-pill {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    width: 220px;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .cat-pill-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #972018;
    border-bottom: 1px solid var(--border);
    color: #fff;
  }
  /* .cat-pill-hd :is(.c-cover, .c-finance, .c-globe, .c-backpack, .c-bilingual, .c-expert, .c-trend) {
    color: #fff;
  } */
  .cat-pill-hd
    :is(
      .cat-pill-dot.dot-cover,
      .cat-pill-dot.dot-finance,
      .cat-pill-dot.dot-globe,
      .cat-pill-dot.dot-backpack,
      .cat-pill-dot.dot-expert,
      .cat-pill-dot.dot-trend
    ) {
    background: #e8a078;
  }
  .cat-pill-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .cat-pill-name span {
    white-space: nowrap;
  }
  .cat-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .cat-pill-more {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
  }
  .cat-pill-more:hover {
    color: #e8a078;
  }
  .cat-pill .pt-list {
  }
  .cat-pill .pt-item {
    padding: 12px 18px;
    border-bottom-color: #f0f0f0;
  }
  .cat-pill .pt-title {
    font-size: 16px;
    font-weight: 700;
  }

  /* Project */
  .project-sec {
    padding: 26px 16px 40px;
  }
  .proj-inner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .proj-title {
    font-size: 20px;
  }
  .proj-desc {
    font-size: 16px;
    max-width: none;
  }
  .proj-cta {
    width: 100%;
  }
  .btn-proj {
    width: 100%;
    justify-content: center;
  }
  /* Bilingual: hide grid, show scroll */
  .bi-cards {
    display: none;
  }
  .bi-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding: 12px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .bi-scroll::-webkit-scrollbar {
    display: none;
  }
  .bi-scroll .bi-card {
    flex-shrink: 0;
    width: 240px;
    border-radius: 4px;
  }
  .bi-scroll .bi-img {
    height: 130px;
    aspect-ratio: auto;
  }
  .bi-scroll .bi-body {
    padding: 12px;
  }
  .bi-scroll .lang-sw {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .bi-scroll .bi-title {
    font-size: 16px;
  }
  .bi-scroll .bi-en {
    font-size: 16px;
  }
  .bi-scroll .bi-date {
    font-size: 14px;
  }
  .bilingual-sec {
    padding: 40px 0;
  }
  .bilingual-sec .wrap {
    padding: 0;
  }
  .bilingual-sec .sec-hd {
    padding: 16px 16px 10px;
  }
  /* Body section */
  .body-section .sec-hd {
    padding: 16px 16px 10px;
    margin: 0;
  }
  .body-section {
    padding: 0 0 var(--section-gap-sm);
  }
}

@media (max-width: 576px) {
  .issue-ad-mb {
    display: block;
  }
}

@media (max-width: 360px) {
  .issue-feature .issue-info-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .issue-feature .issue-info-label {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}
