/* 內頁與表單相容層：延續 Julin 設計語彙 */

/* —— 全站字級比例：加大選單／內文，收斂內頁大標 —— */
body {
  font-size: 17px;
  line-height: 1.85;
}
@media (min-width: 761px) {
  .header nav {
    font-size: 16px !important;
    gap: 22px !important;
  }
  .header nav > a:not(.button),
  .header .nav-sub-toggle {
    font-size: 16px;
    letter-spacing: .05em;
    padding: 10px 0;
  }
  .header .button.compact {
    font-size: 15px;
    padding: 10px 16px;
  }
}
@media (max-width: 760px) {
  .header nav {
    font-size: 17px !important;
  }
  .header nav > a:not(.button),
  .header .nav-sub-toggle {
    font-size: 17px;
    padding: 12px 0;
  }
}

.page-hero,
.page-intro {
  padding-top: 36px;
  padding-bottom: 28px;
}
.page-hero .display-title,
.page-hero h1.display-title,
.page-banner .display-title,
.page-banner h1 {
  /* 橫幅頁面大標：可明顯放大 */
  font-size: clamp(2.15rem, 3.8vw, 3.05rem) !important;
  letter-spacing: .07em;
  margin-bottom: 12px;
  line-height: 1.3;
}
/* 內文區標題維持較小，避免跟橫幅搶層級 */
.section-title {
  font-size: clamp(1.2rem, 1.7vw, 1.45rem) !important;
  letter-spacing: .05em;
}
.service-card .h5.display-title,
.service-card h2.h5,
.content-card .h5.display-title,
.content-card h2.h5,
.contact-info .h5,
.contact-map-panel .h5,
.contact-cta .h5 {
  font-size: 1.15rem !important;
  line-height: 1.4;
  letter-spacing: .04em;
  margin-bottom: 0.6rem;
}
.section-lead {
  font-size: 1.05rem !important;
  line-height: 1.8;
  max-width: 46rem;
}
.content-html,
.content-html p,
.content-html li {
  font-size: 1.05rem;
  line-height: 1.9;
}
.content-html h2 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); }
.content-html h3 { font-size: 1.15rem; }

/* 內頁矮橫幅 */
.page-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 148px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  background-color: #dfe6df;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.02);
}
.page-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(247, 243, 233, .96) 0%,
    rgba(247, 243, 233, .88) 42%,
    rgba(247, 243, 233, .42) 78%,
    rgba(247, 243, 233, .18) 100%
  );
}
.page-banner__inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 88%);
  margin-inline: auto;
  padding-top: 28px;
  padding-bottom: 26px;
}
.page-banner__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
}
.page-banner__crumb a {
  color: var(--green);
  text-decoration: none;
}
.page-banner__crumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.page-banner__sep { opacity: .55; }
@media (min-width: 768px) {
  .page-banner {
    min-height: 210px;
    max-height: 260px;
  }
  .page-banner__inner {
    padding-top: 40px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .page-banner { min-height: 132px; }
  .page-banner__inner { padding-top: 22px; padding-bottom: 20px; }
}
.page-banner-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
}
.page-banner + .section {
  padding-top: 28px;
}

/* 服務詳情：相關案例點圖放大 */
.related-case-card__media {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #e8e8dc;
  cursor: zoom-in;
  aspect-ratio: 16 / 9;
  max-height: 160px;
}
.related-case-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.related-case-card__media:hover img,
.related-case-card__media:focus-visible img {
  transform: scale(1.04);
}
.related-case-card__zoom {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 3px 8px;
  font-size: 12px;
  letter-spacing: .04em;
  color: #fff;
  background: rgba(36, 61, 46, .78);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.related-case-card__media:hover .related-case-card__zoom,
.related-case-card__media:focus-visible .related-case-card__zoom {
  opacity: 1;
}
@media (max-width: 767px) {
  .related-case-card__zoom { opacity: 1; }
}

/* 工程案例卡片標題：避免繼承全站 h2 過大字級 */
.case-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #e8e8dc;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: zoom-in;
}
.case-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.case-card__media:hover img,
.case-card__media:focus-visible img {
  transform: scale(1.04);
}
.case-card__zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: .06em;
  color: #fff;
  background: rgba(36, 61, 46, .78);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.case-card__media:hover .case-card__zoom,
.case-card__media:focus-visible .case-card__zoom {
  opacity: 1;
}
.case-card__title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.45;
  letter-spacing: .04em;
  color: var(--ink);
}
.case-card__summary {
  font-size: 0.95rem;
  line-height: 1.7;
}
.case-card__cat {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .06em;
  font-weight: 500;
}
.case-card__cat.is-equipment {
  color: #1f4d3a;
  background: #e5efea;
}
.case-card__cat.is-matcha {
  color: #4f5f28;
  background: #eef1e0;
}
.case-card__cat.is-enzyme {
  color: #2f4f6b;
  background: #e7eef4;
}
.case-card__cat.is-gold {
  color: #7a5d28;
  background: #f3ead7;
}
.case-card__cat.is-teal {
  color: #215a55;
  background: #e3f0ee;
}
.case-card__cat.is-plum {
  color: #5c3f58;
  background: #efe6ed;
}
.case-card__cat.is-olive {
  color: #4a5a32;
  background: #e9eedf;
}
@media (min-width: 768px) {
  .case-card__title { font-size: 1.12rem; }
}
@media (max-width: 767px) {
  .case-card__zoom { opacity: 1; }
}

/* 語系切換＋導覽多一項「工程案例」時的間距 */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 9px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted);
  text-decoration: none;
  border-radius: 1px;
  white-space: nowrap;
}
.lang-switch a.is-active,
.lang-switch a:hover {
  color: #fff;
  background: var(--green);
}
@media (min-width: 761px) {
  .header nav {
    gap: 12px !important;
    flex-wrap: nowrap;
  }
  .header nav > a:not(.button),
  .header .nav-sub-toggle {
    font-size: 15px !important;
    white-space: nowrap;
  }
}
@media (max-width: 760px) {
  .lang-switch {
    width: 100%;
    justify-content: stretch;
    margin: 6px 0;
  }
  .lang-switch a {
    flex: 1;
    min-height: 44px;
    font-size: 14px;
  }
}

/* 左上 Logo 區質感美化 */
.header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.header .brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
  border: 1px solid rgba(36, 61, 46, .12);
  background: #fff;
  padding: 4px;
}
.header .brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(36, 61, 46, .16);
  background: linear-gradient(160deg, #fcfaf5 0%, #e7eee8 100%);
  color: var(--green);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}
.header .brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.header .brand-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.25;
  color: var(--ink);
  white-space: nowrap;
}
.header .brand-en {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .24em;
  line-height: 1.2;
  color: var(--gold);
  text-transform: uppercase;
}
.header .brand:hover .brand-name {
  color: var(--green);
}
.header .brand:hover .brand-mark {
  border-color: rgba(146, 118, 71, .45);
}
@media (max-width: 760px) {
  .header .brand-name {
    font-size: 0.98rem;
    letter-spacing: .08em;
  }
  .header .brand-en {
    font-size: 8px;
    letter-spacing: .16em;
  }
  .header .brand-mark,
  .header .brand-logo {
    width: 40px;
    height: 40px;
  }
}

/* 首頁 Hero 輪播（最多 3 張啟用橫幅） */
.hero--carousel {
  overflow: hidden;
}
.hero-slides {
  position: relative;
  width: 100%;
  min-height: inherit;
}
.hero--carousel .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
  display: flex;
  align-items: center;
  min-height: inherit;
}
.hero--carousel .hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero:not(.hero--carousel) .hero-slides,
.hero:not(.hero--carousel) .hero-slide {
  display: contents;
}
.hero-carousel-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  pointer-events: none;
}
.hero-carousel-ui > * {
  pointer-events: auto;
}
.hero-nav {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(36, 61, 46, .25);
  background: rgba(252, 250, 245, .88);
  color: var(--green);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
}
.hero-nav:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(36, 61, 46, .28);
  cursor: pointer;
}
.hero-dot.is-active {
  background: var(--green);
  transform: scale(1.15);
}
@media (max-width: 760px) {
  .hero-carousel-ui {
    bottom: 14px;
    gap: 10px;
  }
  .hero-nav {
    width: 36px;
    height: 36px;
  }
}
#google_translate_element,
.goog-te-banner-frame,
.skiptranslate iframe.skiptranslate {
  display: none !important;
}
body {
  top: 0 !important;
}
.goog-te-gadget {
  font-size: 0 !important;
}

/* 詢問表單驗證碼／蜜罐 */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.inquiry-form {
  position: relative;
}
.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.captcha-q {
  flex: 0 0 auto;
  min-width: 88px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #eef3ef;
  color: var(--green);
  letter-spacing: .06em;
  font-weight: 600;
}
.captcha-row .form-control {
  max-width: 140px;
}
.form-hint {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.page-hero .container,
.section .container,
.admin-main { width: min(1240px, 88%); margin-inline: auto; }

.content-card,
.service-card-legacy {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.content-card { padding: 0; overflow: hidden; }
.content-html iframe,
.service-card iframe {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 240px;
  border: 0;
  border-radius: 8px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.social-links a,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(23, 59, 50, .2);
  border-radius: 999px;
  background: var(--paper, #fcfaf5);
  color: var(--color-ink, var(--ink));
  text-decoration: none;
  letter-spacing: .04em;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}
.social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.social-link span {
  font-size: .92rem;
}
.social-links a:hover,
.social-link:hover {
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
}
.social-link--facebook:hover { background: #1877f2; }
.social-link--instagram:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
}
.social-link--line:hover { background: #06c755; }

/* 導覽：關於我們子選單 */
.header .nav-item.has-sub {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.header .nav-sub-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  text-align: left;
}
.header .nav-sub-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .7;
  transition: transform .2s ease;
}
.header .nav-item.has-sub.is-open > .nav-sub-toggle .nav-sub-caret,
.header .nav-item.has-sub.is-hover > .nav-sub-toggle .nav-sub-caret,
.header .nav-item.has-sub:focus-within > .nav-sub-toggle .nav-sub-caret {
  transform: rotate(180deg);
}
.header .nav-sub {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0 4px 14px;
}
.header .nav-sub[hidden] {
  display: none !important;
}
.header .nav-sub a {
  font-size: .95em;
  opacity: .88;
  display: block;
  padding: 4px 0;
}
.header .nav-sub a:hover {
  opacity: 1;
  color: var(--gold, #927647);
}
.header .nav-sub a[aria-current="page"],
.header .nav-item.has-sub.is-current > .nav-sub-toggle {
  color: var(--gold, #927647);
}
@media (min-width: 761px) {
  .header .nav-item.has-sub {
    flex-direction: row;
    align-items: center;
    /* 加大可 hover 區域，避免移到子選單時斷開 */
    padding: 12px 0;
    margin: -12px 0;
  }
  .header .nav-sub-toggle {
    padding: 0;
  }
  .header .nav-sub {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    margin: 0;
    padding: 10px 14px 12px;
    gap: 2px;
    background: var(--paper, #fcfaf5);
    border: 1px solid var(--line, #d7d8cb);
    box-shadow: 0 10px 28px rgba(36, 61, 46, .12);
    z-index: 60;
    /* 與觸發文字之間的隱形橋接，滑鼠可連續移動 */
  }
  .header .nav-sub::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
  }
  .header .nav-sub a {
    padding: 8px 6px;
    border-radius: 2px;
    white-space: nowrap;
  }
  .header .nav-sub a:hover {
    background: rgba(36, 61, 46, .06);
  }
  .header .nav-item.has-sub.is-hover > .nav-sub,
  .header .nav-item.has-sub.is-open > .nav-sub,
  .header .nav-item.has-sub:focus-within > .nav-sub {
    display: flex !important;
  }
  .header .nav-item.has-sub.is-hover > .nav-sub[hidden],
  .header .nav-item.has-sub.is-open > .nav-sub[hidden],
  .header .nav-item.has-sub:focus-within > .nav-sub[hidden] {
    display: flex !important;
  }
}

/* 媒體報導卡片 */
.media-report-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.media-report-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8ebe4;
}
.media-report-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-report-card__play {
  position: absolute;
  inset: auto auto 12px 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 61, 46, .88);
  color: #fff;
  font-size: 12px;
  padding-left: 2px;
}
.media-report-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem 1.4rem;
}
.media-report-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
}
.media-report-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
}
.media-report-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

/* 聯絡頁：桌機左資訊／右地圖；手機快捷列＋合理堆疊 */
.contact-page { display: grid; gap: 20px; }
.contact-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-quick__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .04em;
  font-size: 15px;
}
.contact-quick__btn.is-primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.contact-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}
.contact-info,
.contact-map-panel {
  height: 100%;
}
.contact-dl {
  margin: 0 0 18px;
  display: grid;
  gap: 16px;
}
.contact-dl__row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
}
.contact-dl__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(36, 61, 46, .08);
  color: var(--green, #243d2e);
  flex-shrink: 0;
}
.contact-dl__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.contact-dl__content {
  min-width: 0;
}
.contact-dl dt {
  margin: 0 0 2px;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 500;
}
.contact-dl dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
.contact-dl a { text-decoration: underline; text-underline-offset: 3px; }
.contact-map-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-map-open {
  font-size: 14px;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.contact-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e8e8dc;
  min-height: 220px;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 8px;
}
.contact-map-address {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-cta {
  display: grid;
  gap: 16px;
  align-items: center;
}
.contact-cta .btn { width: 100%; }

@media (min-width: 768px) {
  .contact-quick { display: none; } /* 桌機改用左側資訊＋底部 CTA，避免重複 */
  .contact-grid {
    grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1.25fr);
    gap: 24px;
  }
  .contact-map-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .contact-map {
    flex: 1 1 auto;
    min-height: 380px;
    display: flex;
  }
  .contact-map iframe {
    flex: 1;
    height: auto;
    min-height: 380px;
  }
  .contact-cta {
    grid-template-columns: 1fr auto;
    gap: 24px;
  }
  .contact-cta .btn { width: auto; }
}

@media (max-width: 767px) {
  /* 手機：快捷列 → 資訊 → 地圖 → 詢問 */
  .contact-grid { gap: 16px; }
  .contact-map iframe { height: 220px; }
}
.content-html img,
.service-card img {
  max-width: 100%;
  height: auto;
}
.content-card .p-3,
.content-card .p-4,
.content-card .p-md-4,
.content-card .p-md-5 { padding: 24px !important; }
.card-thumb { aspect-ratio: 4/3; overflow: hidden; background: #e8e8dc; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }

.gold-line {
  width: 34px;
  border: 0;
  border-top: 1px solid var(--gold);
  margin: 0 0 14px;
}
.display-title { font-family: var(--serif); font-weight: 500; letter-spacing: .06em; }
.section-title { font-family: var(--serif); font-weight: 500; }
.section-lead,
.text-muted { color: var(--muted); }

.btn,
.btn-primary-brand,
.btn-ghost-brand,
.btn-light-brand,
.btn-secondary-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--green);
  color: #fff !important;
  border: 1px solid var(--green);
  padding: 12px 22px;
  border-radius: 2px;
  font-size: 15px;
  letter-spacing: .05em;
  text-decoration: none;
}
.btn-ghost-brand,
.btn-secondary-brand,
.btn-outline-secondary {
  background: transparent;
  color: var(--green) !important;
}
.btn-light-brand { background: #fcfaf5; color: var(--green) !important; }

.form-control,
.form-select,
textarea.form-control {
  display: block;
  width: 100%;
  background: #fffefb;
  border: 1px solid #bfc7bb;
  border-radius: 2px;
  padding: 12px 13px;
  min-height: 48px;
  color: var(--ink);
}
.form-label { display: block; margin-bottom: 8px; font-size: 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.row > [class*="col-"] { padding: 0 10px; width: 100%; box-sizing: border-box; }
/* 需提高選擇器權重，否則 width:100% 會蓋掉雙欄 */
@media (min-width: 768px) {
  .row > .col-md-4 { width: 33.333%; }
  .row > .col-md-6 { width: 50%; }
  .row > .col-md-8 { width: 66.666%; }
  .row > .col-lg-4 { width: 33.333%; }
  .row > .col-lg-5 { width: 41.666%; }
  .row > .col-lg-6 { width: 50%; }
  .row > .col-lg-7 { width: 58.333%; }
  .row > .col-lg-8 { width: 66.666%; }
}
.g-3, .g-4 { row-gap: 20px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .35rem !important; }
.mb-2 { margin-bottom: .6rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.4rem !important; }
.mt-2 { margin-top: .6rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.4rem !important; }
.mt-5 { margin-top: 2rem !important; }
.py-5 { padding-block: 2rem; }
.text-center { text-align: center; }
.small { font-size: 13px; }
.alert { padding: 14px 16px; border: 1px solid var(--line); background: var(--paper); margin-bottom: 16px; }
.alert-success { border-color: #8a9f8d; }
.alert-danger { border-color: #b54b43; color: #8a2e28; }
.badge { display: inline-block; font-size: 12px; border: 1px solid var(--line); padding: 4px 10px; }
.pagination { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; justify-content: center; }
.page-link {
  display: inline-flex; padding: 8px 12px; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); text-decoration: none;
}
.page-item.active .page-link { background: var(--green); color: #fff; border-color: var(--green); }
.page-item.disabled .page-link { opacity: .45; pointer-events: none; }
.search-hero {
  display: flex; gap: 8px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); padding: 6px; max-width: 640px;
}
.search-hero input { border: 0; box-shadow: none; margin: 0; }
.breadcrumb { display: block; font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { text-decoration: none; }
.accordion-item { border-bottom: 1px solid var(--line); background: transparent; }
.accordion-button {
  width: 100%; text-align: left; background: transparent; border: 0;
  padding: 18px 0; font-size: 17px; cursor: pointer;
}
.accordion-body { padding: 0 0 18px; color: var(--muted); font-size: 1.02rem; line-height: 1.85; }

/* 原理與技術資料：大圖 + 三縮圖 */
.tech-gallery {
  display: grid;
  gap: 12px;
}
.tech-gallery__stage {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #e8e8dc;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 16 / 10;
}
.tech-gallery__stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f4f4ec;
  display: block;
}
.tech-gallery__hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: .06em;
  color: #fff;
  background: rgba(36, 61, 46, .78);
  border-radius: 2px;
  pointer-events: none;
}
.tech-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.tech-gallery__thumb {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 2px;
  background: #e8e8dc;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.tech-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tech-gallery__thumb:hover,
.tech-gallery__thumb:focus-visible {
  border-color: rgba(146, 118, 71, .55);
}
.tech-gallery__thumb.is-active {
  border-color: var(--gold, #927647);
  box-shadow: 0 0 0 1px rgba(146, 118, 71, .25);
}
@media (max-width: 600px) {
  .tech-gallery__stage {
    aspect-ratio: 4 / 3;
  }
  .tech-gallery__thumbs {
    gap: 8px;
  }
  .tech-gallery__hint {
    opacity: 1;
  }
}

.tech-panel {
  background: var(--green);
  color: #fff;
  padding: 28px;
}
.tech-panel,
.tech-panel p,
.tech-panel li,
.tech-panel strong,
.tech-panel ul {
  color: #fff;
}
.tech-panel a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tech-panel__label {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .82);
}
.tech-panel__company {
  position: relative;
  margin: 0 0 18px;
  padding: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}
.tech-panel__company::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 48px;
  height: 2px;
  background: var(--gold);
}
.tech-panel__sub {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--gold);
}
.tech-panel .btn-light-brand {
  text-decoration: none;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
  padding: 12px 0; border-bottom: 1px solid var(--line); text-align: left;
}
.spec-table th { width: 30%; color: var(--muted); font-weight: 500; }
.h4, .h5, .h6 { font-family: var(--serif); font-weight: 500; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-between { justify-content: space-between; }
.align-items-end { align-items: flex-end; }
.align-items-center { align-items: center; }
.gap-2 { gap: .6rem; }
.list-unstyled { list-style: none; padding: 0; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 10px 8px; border-bottom: 1px solid var(--line); text-align: left; }
@media (max-width: 760px) {
  .row > [class*="col-"] { width: 100%; }
}

/* 服務／產品型錄網格：圖卡尺寸一致，橫列 3～4 張 */
.catalog-section { margin-bottom: 48px; }
.catalog-section .section-title { margin-bottom: 22px; }
.catalog-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.catalog-section__head .section-title { margin-bottom: 0 !important; }
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* 接近滿寬／卡片過多時改為左右滑動導覽（僅桌機） */
.catalog-rail {
  position: relative;
}
.catalog-rail__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 6px;
}
.catalog-rail__viewport::-webkit-scrollbar {
  height: 6px;
}
.catalog-rail__viewport::-webkit-scrollbar-thumb {
  background: rgba(36, 61, 46, .25);
  border-radius: 3px;
}
.catalog-grid--rail {
  display: flex;
  align-items: stretch; /* 同一列卡片等高 */
  grid-template-columns: none;
  width: max-content;
  gap: 18px;
  padding: 2px 2px 8px;
}
.catalog-grid--rail .catalog-card {
  flex: 0 0 min(280px, 82vw);
  width: min(280px, 82vw);
  height: auto; /* 勿用 height:100%，否則 flex 等高會失效 */
  align-self: stretch;
  scroll-snap-align: start;
}
.catalog-rail__btn {
  position: absolute;
  top: 42%;
  z-index: 2;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(252, 250, 245, .95);
  color: var(--green);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(36, 61, 46, .08);
}
.catalog-rail__btn.is-prev { left: -6px; }
.catalog-rail__btn.is-next { right: -6px; }
.catalog-rail__btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.catalog-rail__btn[hidden] { display: none !important; }
.catalog-rail.is-scrollable .catalog-rail__viewport {
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

/* 手機／平板：改直向網格，避免橫滑露出半張裁切圖卡 */
@media (max-width: 1023px) {
  .catalog-rail__viewport {
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    -webkit-overflow-scrolling: auto;
  }
  .catalog-grid--rail {
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
    align-items: stretch;
  }
  .catalog-grid--rail .catalog-card {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    scroll-snap-align: none;
  }
  .catalog-rail__btn {
    display: none !important;
  }
  .catalog-rail.is-scrollable .catalog-rail__viewport {
    mask-image: none;
  }
  .catalog-card__media {
    aspect-ratio: 16 / 10;
  }
  .catalog-card__body {
    padding: 14px 16px 16px;
  }
  .catalog-card__summary {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .catalog-card__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 4px 0;
  }
  .catalog-card__zoom {
    opacity: 1;
  }
  .catalog-card__media:hover img,
  .catalog-card__media:focus-visible img {
    transform: none;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  .catalog-grid--rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .catalog-card__media {
    aspect-ratio: 4 / 3;
  }
}
@media (min-width: 1024px) {
  .catalog-grid--rail .catalog-card {
    flex-basis: 280px;
    width: 280px;
  }
  .catalog-rail__btn.is-prev { left: -12px; }
  .catalog-rail__btn.is-next { right: -12px; }
}
.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  height: 100%;
}
.catalog-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #e8e8dc;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: zoom-in;
}
.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}
.catalog-card__media:hover img,
.catalog-card__media:focus-visible img {
  transform: scale(1.04);
}
.catalog-card__zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: .06em;
  color: #fff;
  background: rgba(36, 61, 46, .78);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.catalog-card__media:hover .catalog-card__zoom,
.catalog-card__media:focus-visible .catalog-card__zoom {
  opacity: 1;
}
.catalog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
  gap: 8px;
}
.catalog-card__num {
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--gold);
}
.catalog-card__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.45;
  letter-spacing: .04em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.45em * 2); /* 標題區固定兩行高，利於切齊 */
}
.catalog-card__summary {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: calc(1.7em * 3); /* 摘要區固定三行高 */
}
.catalog-card__link {
  margin-top: auto; /* 連結貼齊卡片底部 */
  color: var(--green);
  text-decoration: none;
  letter-spacing: .04em;
  font-size: 14px;
}
.catalog-card__link:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 600px) {
  .catalog-grid:not(.catalog-grid--rail) { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}
@media (min-width: 960px) {
  .catalog-grid:not(.catalog-grid--rail) { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
}
@media (min-width: 1280px) {
  .catalog-grid:not(.catalog-grid--rail) { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* 相簿 Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 24, .82);
  border: 0;
  padding: 0;
  cursor: zoom-out;
}
.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(90vh, 900px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lightbox__figure {
  margin: 0;
  background: #111;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.lightbox__figure img {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox__caption {
  margin: 0;
  color: #f3f0e8;
  text-align: center;
  font-size: 15px;
  letter-spacing: .04em;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(252, 250, 245, .92);
  color: var(--ink);
  cursor: pointer;
  border-radius: 2px;
  min-width: 44px;
  min-height: 44px;
  font-size: 18px;
  line-height: 1;
}
.lightbox__close {
  top: -4px;
  right: -4px;
  z-index: 2;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.lightbox__nav[data-dir="prev"] { left: -6px; }
.lightbox__nav[data-dir="next"] { right: -6px; }
.lightbox__nav:disabled { opacity: .35; cursor: default; }
body.lightbox-open { overflow: hidden; }

@media (max-width: 767px) {
  .catalog-card__zoom { opacity: 1; } /* 手機無 hover，常駐提示可點放大 */
  .lightbox { padding: 12px; }
  .lightbox__nav[data-dir="prev"] { left: 4px; }
  .lightbox__nav[data-dir="next"] { right: 4px; }
  .lightbox__close { top: 8px; right: 8px; }
}

/* FAQ（原生 details，前台無需 Bootstrap） */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line, #d7d8cb);
}
.faq-item {
  border-bottom: 1px solid var(--line, #d7d8cb);
  background: transparent;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-size: 1.05rem;
  font-family: var(--serif, 'Noto Serif TC', serif);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold, #927647);
  font-size: 1.25rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-answer {
  padding: 0 0 18px;
  color: var(--muted, #656b60);
  font-size: 1.02rem;
  line-height: 1.85;
}
.home-faq__more {
  margin-top: 28px;
}

/* 全站浮動社群：fixed 不占文件流；避開手機底欄 */
.social-float {
  position: fixed;
  right: 12px;
  bottom: 88px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.social-float__btn {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--green, #243d2e);
  box-shadow: 0 8px 20px rgba(36, 61, 46, .22);
  transition: transform .2s ease, background-color .2s ease;
}
.social-float__btn svg {
  width: 20px;
  height: 20px;
}
.social-float__btn:hover {
  transform: translateY(-2px) scale(1.04);
}
.social-float__btn--facebook { background: #1877f2; }
.social-float__btn--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
}
.social-float__btn--line { background: #06c755; }
@media (min-width: 761px) {
  .social-float {
    right: 18px;
    bottom: auto;
    top: 48%;
    transform: translateY(-50%);
  }
  .social-float__btn {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 760px) {
  .social-float {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }
}

/* 知識分享 */
.knowledge-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.knowledge-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8ebe4;
}
.knowledge-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.knowledge-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem 1.4rem;
}
.knowledge-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.knowledge-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}
.knowledge-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 1.25rem;
}
.knowledge-stat {
  color: var(--muted, #656b60);
  font-size: .95rem;
}
.knowledge-like-form { margin: 0; }
.knowledge-like-btn {
  appearance: none;
  border: 1px solid var(--line, #d7d8cb);
  background: var(--paper, #fcfaf5);
  color: var(--ink, #24382e);
  border-radius: 999px;
  min-height: 40px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.knowledge-like-btn.is-liked,
.knowledge-like-btn:hover {
  border-color: #c45c5c;
  color: #c45c5c;
}
.knowledge-like-btn.is-liked {
  background: #fff5f5;
  cursor: default;
}
.knowledge-like-icon { font-size: 1.05rem; line-height: 1; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* 頁底：企業常見版權／聯絡資訊排版；手機連結易點 */
footer .footer-copy {
  display: block;
  text-align: left;
  line-height: 1.7;
  max-width: 100%;
  color: #b6c3b6;
  font-size: 12px;
}
footer .footer-copy__rights,
footer .footer-copy__design {
  display: block;
}
footer .footer-copy__meta {
  display: grid;
  grid-template-columns: 4.5em 1fr;
  column-gap: 8px;
  row-gap: 2px;
  margin: 8px 0 0;
  padding: 0;
  max-width: 28rem;
}
footer .footer-copy__meta dt,
footer .footer-copy__meta dd {
  margin: 0;
  padding: 0;
}
footer .footer-copy__meta dt {
  letter-spacing: 0.04em;
  opacity: 0.88;
}
footer .footer-copy__meta dt::after {
  content: '：';
}
footer .footer-copy__meta dd {
  overflow-wrap: anywhere;
  word-break: break-word;
}
footer .footer-copy__meta a {
  color: inherit;
  text-decoration: none;
}
footer .footer-copy__meta a:hover {
  color: #fff;
  text-decoration: underline;
}
footer .footer-copy__design {
  margin-top: 10px;
  opacity: 0.92;
}
footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  margin-bottom: 22px;
}
footer .footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 2px 0;
}
@media (max-width: 760px) {
  footer .footer-links {
    gap: 8px 16px;
  }
  footer .footer-links a {
    min-height: 40px;
  }
  footer .footer-copy__meta {
    grid-template-columns: 4.2em 1fr;
  }
}

/* 文章相簿輪播（媒體報導／知識分享／活動花絮） */
.article-carousel {
  position: relative;
  margin: 0 0 1.5rem;
}
.article-carousel__stage {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #e8e8dc;
  aspect-ratio: 16 / 10;
}
.article-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
  pointer-events: none;
}
.article-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.article-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 2px;
  background: rgba(36, 61, 46, .72);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.article-carousel__nav.is-prev { left: 10px; }
.article-carousel__nav.is-next { right: 10px; }
.article-carousel__nav:hover {
  background: rgba(36, 61, 46, .92);
}
.article-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.article-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(36, 61, 46, .25);
  cursor: pointer;
}
.article-carousel__dot.is-active {
  background: var(--green, #243d2e);
}
@media (max-width: 760px) {
  .article-carousel__stage { aspect-ratio: 4 / 3; }
  .article-carousel__nav {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
