:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #eef4fb;
  --text: #162235;
  --muted: #617086;
  --primary: #004f90;
  --primary-2: #0076bd;
  --accent: #10a6c7;
  --line: #dfe7f0;
  --danger: #b42318;
  --success: #067647;
  --warning-bg: #fff7ed;
  --warning-line: #fed7aa;
  --shadow: 0 18px 42px rgba(14, 59, 101, .11);
  --shadow-soft: 0 8px 22px rgba(14, 59, 101, .08);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Microsoft JhengHei", "Noto Sans TC", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container, .header-inner, .utility-inner, .footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(223,231,240,.82);
  backdrop-filter: blur(18px);
}
.utility-bar {
  background: linear-gradient(90deg, #062c57, #004f90);
  color: rgba(255,255,255,.86);
  font-size: 13px;
}
.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 245px;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;
  box-shadow: var(--shadow-soft);
}
.brand-text { display: grid; line-height: 1.2; }
.brand-text strong { font-size: 18px; letter-spacing: .02em; }
.brand-text small { color: var(--muted); font-size: 12px; margin-top: 3px; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 8px 11px;
  margin-left: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}
.nav-group { position: relative; }
.nav-group-btn, .nav-link {
  border: 0;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  padding: 10px 11px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 15px;
}
.nav-group-btn::after { content: "▾"; font-size: 11px; margin-left: 5px; color: var(--muted); }
.nav-group:hover .nav-group-btn,
.nav-group:focus-within .nav-group-btn,
.nav-group.is-active .nav-group-btn,
.nav-link:hover { color: #fff; background: var(--primary); }
.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 235px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu { display: grid; gap: 2px; }
.nav-menu a {
  text-decoration: none;
  padding: 10px 12px;
  color: var(--text);
  border-radius: 12px;
  font-size: 14px;
}
.nav-menu a:hover { background: var(--surface-2); color: var(--primary); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: #fff;
}
.lang-switch a {
  text-decoration: none;
  font-size: 13px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}
.lang-switch a.active { background: var(--primary); color: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(3,31,61,.92), rgba(0,79,144,.88)),
    radial-gradient(circle at 75% 20%, rgba(16,166,199,.36), transparent 28%);
  color: #fff;
  padding: 92px 0 76px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .34;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1, .page-hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -.02em;
}
.hero p, .page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  margin: 0 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.home-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
  max-width: 940px;
}
.kpi {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.11);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
}
.kpi strong { display: block; font-size: 28px; line-height: 1.15; }
.kpi span { color: rgba(255,255,255,.8); font-size: 13px; }

.page-hero {
  background: linear-gradient(135deg, #082a53 0%, #004f90 64%, #0c9abb 100%);
  color: #fff;
  padding: 62px 0 54px;
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(32px, 4.4vw, 54px); }
.page-hero p { margin-bottom: 0; }

.section { padding: 58px 0; }
.section.compact { padding: 34px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.section-head h2, .page-title h1 { margin: 0; font-size: clamp(26px, 3vw, 38px); }
.section-head p, .page-title p { margin: 5px 0 0; color: var(--muted); }
.page-title { padding: 46px 0 20px; }

.quick-links {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.quick-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  text-decoration: none;
  min-height: 150px;
}
.quick-card:hover { transform: translateY(-2px); border-color: rgba(0,79,144,.38); }
.quick-card span { color: var(--primary); font-weight: 900; letter-spacing: .1em; font-size: 12px; }
.quick-card h3 { margin: 10px 0 8px; font-size: 20px; }
.quick-card p { margin: 0; color: var(--muted); }

.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .detail-card, .notice, .state-card, .content-card, .info-card, .table-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.item-card { overflow: hidden; }
.card-img { width: 100%; height: 190px; object-fit: cover; background: var(--surface-2); }
.card-img-placeholder { display: grid; place-items: center; font-weight: 900; letter-spacing: .14em; color: var(--primary); }
.card-body { padding: 20px; }
.card h3, .compact-card h3, .info-card h3 { margin: 0 0 8px; font-size: 20px; }
.card p, .info-card p { margin: 0 0 14px; color: var(--muted); }
.meta, .detail-meta { color: var(--primary-2); font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.text-link { color: var(--primary); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.compact-card { padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.tag { display: inline-flex; align-items: center; padding: 3px 9px; margin-bottom: 8px; border-radius: 999px; background: var(--surface-2); color: var(--primary); font-size: 12px; font-weight: 800; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.btn.secondary { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.32); }
.btn.light { background: #fff; color: var(--primary); }
.btn:hover { filter: brightness(.96); }

.content-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 24px; align-items: start; }
.side-nav {
  position: sticky;
  top: 128px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}
.side-title { color: var(--muted); font-size: 13px; font-weight: 900; letter-spacing: .12em; margin: 4px 8px 10px; }
.side-nav a {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
}
.side-nav a:hover, .side-nav a.active { background: var(--surface-2); color: var(--primary); font-weight: 800; }
.content-card { padding: clamp(24px, 4vw, 44px); }
.content-section + .content-section { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.content-section h2 { margin: 0 0 14px; font-size: 28px; }
.content-section p { margin: 0 0 13px; color: #2a384c; }
.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.info-card { padding: 18px; }
.table-wrap { margin-top: 28px; padding: 20px; overflow-x: auto; }
table { border-collapse: collapse; width: 100%; min-width: 650px; }
th, td { border-bottom: 1px solid var(--line); padding: 12px 10px; text-align: left; vertical-align: top; }
th { color: var(--primary); background: var(--surface-2); font-weight: 900; }
.page-cta { margin-top: 28px; }

.detail-card { padding: clamp(22px, 4vw, 42px); }
.detail-card h1 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 44px); }
.detail-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 18px; margin-bottom: 24px; }
.content-body { margin-top: 24px; color: #28364a; }
.content-body img { height: auto; }
.notice { padding: 18px 20px; margin: 24px 0 0; background: var(--warning-bg); border-color: var(--warning-line); }
.state-card { padding: 24px; color: var(--muted); text-align: center; }
.state-error { color: var(--danger); background: #fff5f5; }
.api-health { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; border-radius: 999px; padding: 5px 10px; background: var(--surface-2); color: var(--muted); }
.api-health.ok { color: var(--success); }
.api-health.bad { color: var(--danger); }

.form-card { max-width: 760px; padding: 26px; }
.official-page-banner.contact-page-banner.page_banner {
  min-height: 132px;
  padding: 14px 0 18px;
}
.contact-page-banner-inner {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}
.contact-page-banner .page_bn_title {
  padding: 4px 0 2px;
  font-size: clamp(30px, 2.6vw, 42px);
}
.contact-banner-text {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7;
  letter-spacing: 0;
}
.contact-form-section { padding: 42px 0 56px; }
.contact-shell { max-width: 980px; }
.contact-form-card { max-width: none; width: 100%; padding: clamp(22px, 3vw, 34px); border-radius: 6px; box-shadow: 0 12px 30px rgba(14, 59, 101, .07); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form-grid { gap: 18px 24px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: 1 / -1; }
label { font-weight: 800; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; background: #fff; }
textarea { min-height: 150px; resize: vertical; }
#contact-form label { color: #333; font-size: 17px; line-height: 1.45; }
#contact-form input,
#contact-form textarea { border-radius: 12px; padding: 10px 13px; min-height: 48px; box-shadow: inset 0 1px 0 rgba(14, 59, 101, .02); }
#contact-form textarea { min-height: 132px; }
.required-note { margin-left: 4px; color: #006b82; font-size: 13px; font-weight: 700; }
.input-meta { align-self: flex-end; color: var(--muted); font-size: 13px; font-weight: 700; }
.contact-captcha-wrap { display: grid; grid-template-columns: minmax(128px, 180px) minmax(180px, 1fr) auto; gap: 12px; align-items: center; }
.contact-captcha-code { min-height: 48px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--surface-2); color: var(--primary); font-size: 21px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; user-select: none; }
.contact-captcha-input { text-transform: uppercase; letter-spacing: .16em; font-weight: 900; }
.contact-actions { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 14px; }
.contact-actions .form-result { margin-top: 0; }
.form-result { margin-top: 14px; font-weight: 800; }
.form-result.success { color: var(--success); }
.form-result.error { color: var(--danger); }
.contact-success-dialog {
  width: min(92vw, 420px);
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #173744;
}
.contact-success-dialog::backdrop {
  background: rgba(10, 32, 44, .42);
  backdrop-filter: blur(2px);
}
.contact-success-dialog-card {
  padding: 28px 30px 26px;
  border: 1px solid #cfe5ec;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(6, 52, 72, .24);
  text-align: center;
}
.contact-success-icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--official-teal);
}
.contact-success-icon::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 18px;
  width: 20px;
  height: 11px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-45deg);
}
.contact-success-dialog h2 {
  margin: 0 0 8px;
  color: var(--official-blue);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0;
}
.contact-success-dialog p {
  margin: 0 0 22px;
  color: #526976;
  font-size: 16px;
  line-height: 1.7;
}
.contact-success-confirm {
  min-width: 120px;
}
@media (max-width: 760px) {
  .official-page-banner.contact-page-banner.page_banner {
    min-height: 116px;
    padding: 14px 0 16px;
  }
  .contact-page-banner .page_bn_title { font-size: 30px; }
  .contact-form-section { padding: 30px 0 42px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-captcha-wrap { grid-template-columns: 1fr; }
  .contact-actions { align-items: stretch; }
  .contact-actions .btn { width: 100%; }
  .contact-success-dialog-card { padding: 24px 22px 22px; }
}
.search-page-section { padding: 46px 0 64px; }
.search-shell { max-width: 980px; }
.search-panel {
  margin: 0 0 28px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid #dfe8ef;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(14, 59, 101, .07);
}
.search-label {
  display: block;
  margin: 0 0 10px;
  color: #333;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
}
.search-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.search-input-row input {
  min-height: 52px;
  border-radius: 12px;
  border-color: #dce7ef;
  padding: 11px 15px;
  font-size: 17px;
  box-shadow: inset 0 1px 0 rgba(14, 59, 101, .02);
}
.search-input-row input:focus {
  outline: 2px solid rgba(0, 107, 130, .16);
  border-color: #80bfcc;
}
.search-submit {
  min-height: 52px;
  min-width: 112px;
  border-radius: 6px;
  background: #006b82;
}
.search-helper {
  margin: 12px 0 0;
  color: #5f7180;
  font-size: 14px;
  line-height: 1.7;
}
.search-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 26px 0 16px;
  padding-bottom: 14px;
  border-bottom: 3px solid #bedae3;
}
.search-result-kicker {
  display: block;
  color: #006b82;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.search-results-head h2 {
  margin: 3px 0 0;
  color: #173744;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  font-weight: 700;
}
.search-count-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #006b82;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}
.search-summary { margin: 24px 0 14px; color: var(--muted); font-weight: 700; }
.search-results { display: grid; gap: 12px; margin-top: 12px; }
.search-result-card {
  padding: 20px 22px;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(14, 59, 101, .06);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.search-result-card:hover {
  transform: translateY(-1px);
  border-color: #b8d7e0;
  box-shadow: 0 12px 26px rgba(14, 59, 101, .09);
}
.search-result-card h2 { margin: 6px 0 7px; font-size: clamp(19px, 2vw, 24px); line-height: 1.45; }
.search-result-card h2 a { color: #173744; text-decoration: none; }
.search-result-card h2 a:hover { color: #006b82; text-decoration: underline; }
.search-result-card p { margin: 0; color: #5f7180; font-size: 15px; line-height: 1.8; }
.search-result-type { color: #006b82; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.search-empty {
  border-radius: 6px;
  background: #fff;
  color: #5f7180;
}
.btn.btn-outline { background: transparent; color: var(--brand); border: 1px solid var(--brand); }

.site-footer { border-top: 1px solid var(--line); background: #071d35; color: rgba(255,255,255,.78); padding: 42px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr .9fr; gap: 28px; align-items: start; }
.footer-logo { color: #fff; font-size: 24px; font-weight: 900; margin-bottom: 10px; }
.site-footer h3 { margin: 0 0 8px; color: #fff; font-size: 17px; }
.site-footer p { margin: 0; }
.copyright { width: min(1180px, calc(100% - 32px)); margin: 28px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: 13px; }

@media (max-width: 1120px) {
  .nav-group-btn, .nav-link { padding: 9px 8px; font-size: 14px; }
  .brand { min-width: 210px; }
}
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-layout { grid-template-columns: 1fr; }
  .side-nav { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .utility-inner { justify-content: center; flex-wrap: wrap; padding: 7px 0; }
  .header-inner { min-height: 68px; }
  .nav-toggle { display: inline-flex; }
  .lang-switch { margin-left: 0; }
  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 102px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.is-open { display: flex; }
  .nav-group-btn, .nav-link { width: 100%; text-align: left; border-radius: 12px; }
  .nav-menu { position: static; display: grid; box-shadow: none; border: 0; padding: 0 0 8px 14px; min-width: 0; }
  .nav-group:hover .nav-menu, .nav-group:focus-within .nav-menu { display: grid; }
}
@media (max-width: 760px) {
  .grid, .grid.two, .quick-grid, .home-kpis, .info-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 62px 0 54px; }
  .brand-text small { display: none; }
  .brand { min-width: 0; }
  .brand-text strong { font-size: 16px; }
}

/* Stage 8: migrated floor-plan images and venue calculators */
.legacy-gallery,.floor-plan-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.legacy-image-card,.floor-plan-card{display:grid;gap:12px;color:inherit;text-decoration:none;border:1px solid var(--line);border-radius:20px;padding:14px;background:#fff;box-shadow:0 12px 30px rgba(7,29,53,.06);transition:transform .18s ease,box-shadow .18s ease}.legacy-image-card:hover,.floor-plan-card:hover{transform:translateY(-2px);box-shadow:var(--shadow)}.legacy-image-card img,.floor-plan-card img{width:100%;height:220px;object-fit:contain;background:#f8fbff;border:1px solid var(--line);border-radius:16px}.legacy-image-card strong,.floor-plan-card h3{display:block;color:var(--primary);font-size:17px}.legacy-image-card em,.floor-plan-card p{display:block;margin-top:4px;color:var(--muted);font-style:normal;font-size:14px}.calculator-shell{display:grid;gap:18px}.calc-tabs{display:inline-flex;flex-wrap:wrap;gap:8px;padding:7px;background:var(--surface-2);border:1px solid var(--line);border-radius:999px;width:fit-content}.calc-tabs button{border:0;border-radius:999px;padding:10px 18px;background:transparent;color:var(--muted);font-weight:900;cursor:pointer}.calc-tabs button.active{background:var(--primary);color:#fff}.calc-form{padding:clamp(18px,3vw,28px);display:grid;gap:18px}.calc-grid-fields{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.calc-field{display:grid;gap:8px}.radio-row{display:flex;flex-wrap:wrap;gap:8px 16px}.radio-row label,.checkbox-line{display:inline-flex;align-items:center;gap:6px;padding:9px 12px;border:1px solid var(--line);border-radius:999px;background:#fff;font-weight:800}.calc-field select,.calc-field input[type=date]{border:1px solid var(--line);border-radius:14px;padding:12px 14px;background:#fff}.meeting-room-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;max-height:520px;overflow:auto;padding:4px}.meeting-room-card{display:grid;gap:8px;text-align:left;border:2px solid transparent;border-radius:18px;padding:12px;background:var(--surface-2);cursor:pointer}.meeting-room-card.active{border-color:var(--primary);background:#fff;box-shadow:var(--shadow)}.room-photo{display:block;width:100%;height:118px;border-radius:14px;background-color:#eef4fb;background-position:center;background-size:cover}.meeting-room-card strong{color:var(--primary);font-size:16px}.meeting-room-card em{color:var(--muted);font-style:normal;font-size:13px}.calc-table{margin-top:16px}.calc-table .num{text-align:right;white-space:nowrap}.total-row td{background:#eef8ff;font-weight:900;color:var(--primary)}.row-error td{background:#fff5f5}.error-text{display:block;color:var(--danger);font-size:12px;margin-top:4px}.warning-text{color:#9a5a00;font-weight:800}.tiny-btn{border:0;border-radius:999px;width:30px;height:30px;background:#ffe8e8;color:var(--danger);font-weight:900;cursor:pointer}@media (max-width:980px){.calc-grid-fields{grid-template-columns:repeat(2,minmax(0,1fr))}.meeting-room-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width:760px){.legacy-gallery,.floor-plan-grid,.calc-grid-fields,.meeting-room-grid{grid-template-columns:1fr}.calc-tabs{border-radius:18px;width:100%}.calc-tabs button{flex:1 1 100%}}


/* Stage 11: closer to official TaiNEX visual style */
body { background:#fafafa; }
.site-header { position:sticky; top:0; background:#fafafa; border-bottom:1px solid rgba(0,0,0,.06); box-shadow:0 4px 18px rgba(0,0,0,.05); }
.top-links { background:#fff; border-bottom:1px solid rgba(0,0,0,.06); font-size:14px; }
.top-links-inner { width:min(1180px, calc(100% - 32px)); margin:0 auto; display:flex; justify-content:flex-end; gap:24px; min-height:34px; align-items:center; }
.top-links a { color:#444; text-decoration:none; }
.top-links a:hover { color:#0088c7; }
.header-inner { min-height:82px; }
.official-brand { min-width:210px; display:flex; align-items:center; }
.official-brand img { width:188px; max-height:58px; object-fit:contain; }
.nav { gap:10px; }
.nav-group-btn, .nav-link { color:#262626; font-weight:600; letter-spacing:.04em; border-radius:0; padding:18px 6px; }
.nav-group-btn::after { content:''; }
.nav-group:hover .nav-group-btn, .nav-group:focus-within .nav-group-btn, .nav-link:hover { color:#0088c7; background:transparent; }
.nav-menu { top:100%; left:50%; transform:translateX(-50%); border-radius:0; min-width:220px; border:0; border-top:3px solid #0088c7; padding:8px 0; box-shadow:0 12px 35px rgba(0,0,0,.14); }
.nav-menu a { border-radius:0; padding:12px 18px; }
.nav-menu a:hover { background:#f3f8fc; }
.lang-direct { color:#0088c7; font-weight:800; }
.hero { min-height:620px; display:flex; align-items:center; background:linear-gradient(90deg, rgba(0,33,70,.78), rgba(0,0,0,.18)), url('../img/legacy/banner.jpg') center/cover no-repeat; padding:140px 0 78px; }
.hero::before { display:none; }
.hero h1 { font-size:clamp(42px, 6vw, 76px); text-shadow:0 5px 18px rgba(0,0,0,.3); }
.hero p { font-size:20px; text-shadow:0 3px 12px rgba(0,0,0,.3); }
.hero-badge { border-color:rgba(255,255,255,.7); background:rgba(0,0,0,.18); }
.home-kpis { max-width:980px; }
.kpi { border-radius:0; border-color:rgba(255,255,255,.35); background:rgba(0,0,0,.22); }
.quick-links { margin-top:-52px; }
.quick-card { border-radius:0; border-top:4px solid #0088c7; }
.quick-card h3 { color:#004f90; }
.section-head h2::after, .page-title h1::after { content:''; display:block; width:52px; height:3px; background:#0088c7; margin-top:10px; }
.card, .detail-card, .notice, .state-card, .content-card, .info-card, .table-wrap { border-radius:0; }
.card-img { height:210px; }
.btn { border-radius:0; background:#0088c7; }
.btn.light { color:#004f90; }
.btn.secondary { color:#fff; }
.side-tab { position:fixed; right:0; top:260px; z-index:49; display:flex; flex-direction:column; box-shadow:0 8px 18px rgba(0,0,0,.15); }
.side-tab a { width:54px; height:54px; display:flex; align-items:center; justify-content:center; background:#006ba6; border-bottom:1px solid rgba(255,255,255,.2); }
.side-tab a:hover { background:#004f90; }
.side-tab img { width:25px; height:25px; filter:brightness(0) invert(1); }
.site-footer { background:#01345d; color:#fff; }
.site-footer p, .site-footer a { color:rgba(255,255,255,.78); }
.footer-logo { color:#fff; }
.footer-bottom { width:min(1180px, calc(100% - 32px)); margin:0 auto; border-top:1px solid rgba(255,255,255,.16); padding:18px 0; display:flex; justify-content:space-between; gap:16px; color:rgba(255,255,255,.72); font-size:13px; }
.api-health.ok { color:#c8f7d4; }
.api-health.bad { color:#ffd1d1; }
@media (max-width: 992px) {
  .top-links { display:none; }
  .header-inner { min-height:70px; }
  .official-brand img { width:152px; }
  .nav { top:70px; border-radius:0; }
  .nav-group-btn, .nav-link { padding:12px 14px; }
  .nav-menu { transform:none; border-top:0; box-shadow:none; }
  .hero { min-height:520px; padding-top:110px; }
  .side-tab { display:none; }
  .footer-bottom { flex-direction:column; }
}


/* Stage 11 Round 3: event page aligned with original TaiNEX frontend */
:root {
  --official-blue: #006182;
  --official-teal: #00aa9d;
  --official-text: #353535;
  --official-muted: #6d6d6d;
  --official-line: #e8e8e8;
  --official-light: #e8edee;
}

body {
  background: #fafafa !important;
  color: var(--official-text);
  font-family: "Microsoft JhengHei", "Noto Sans TC", Arial, sans-serif;
  overflow-x: hidden;
}

body[data-page="events"] .container,
body[data-page="events"] .header-inner,
body[data-page="events"] .footer-inner {
  width: min(1400px, calc(100% - 60px));
  max-width: 1400px;
}

/* header */
.tainex-official-header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fafafa;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.tainex-official-header .header_bg {
  min-height: 96px;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.tainex-official-header .official-brand,
.tainex-official-header .logo {
  min-width: 0;
  width: 280px;
  display: flex;
  align-items: center;
  margin: 0;
  flex: 0 0 auto;
  text-decoration: none;
}

.tainex-official-header .official-brand img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.tainex-official-header .menu_item,
.tainex-official-header .nav {
  margin: 0;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  flex: 1 1 auto;
  position: static;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  gap: 0;
}

.tainex-official-header .menu_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.tainex-official-header .menu_btn > li,
.tainex-official-header .nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-size: 19px;
  list-style: none;
}

.tainex-official-header .nav-group-btn,
.tainex-official-header .nav-link,
.tainex-official-header .lang-direct {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 8px 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--official-text);
  font-weight: 400;
  letter-spacing: .03em;
  text-decoration: none;
  white-space: nowrap;
}

.tainex-official-header .nav-group-btn::after {
  content: "";
}

.tainex-official-header .nav-group:hover > .nav-group-btn,
.tainex-official-header .nav-group:focus-within > .nav-group-btn,
.tainex-official-header .nav-group.is-current > .nav-group-btn,
.tainex-official-header .lang-direct:hover {
  color: var(--official-blue);
  background: transparent !important;
}

.tainex-official-header .nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  display: none;
  padding: 8px 0;
  background: #fff;
  border: 0;
  border-top: 4px solid var(--official-blue);
  border-radius: 0;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
  z-index: 1002;
}

.tainex-official-header .nav-group:hover .nav-menu,
.tainex-official-header .nav-group:focus-within .nav-menu {
  display: grid;
}

.tainex-official-header .nav-menu a {
  display: block;
  color: #353535;
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 0;
  white-space: nowrap;
}

.tainex-official-header .nav-menu a:hover {
  color: var(--official-blue);
  background: #f3f8fb;
}

.tainex-official-header .nav-toggle,
.tainex-official-header .m_menuicon {
  display: none;
  width: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  margin-left: auto;
}

.tainex-official-header .nav-toggle img {
  width: 100%;
}

/* official side links and fish */
.side_tab {
  position: fixed;
  left: 0;
  top: 62%;
  z-index: 999;
}

.side_tab ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side_tab li {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 4px;
  margin-bottom: 2px;
  background: var(--official-blue);
  list-style: none;
}

.side_tab li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.fish_icon {
  width: clamp(78px, 6vw, 104px);
  height: clamp(78px, 6vw, 104px);
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 998;
}

.fish_icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #e49700;
  overflow: hidden;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, .45);
}

.fish_icon img {
  display: block;
  width: 86%;
  max-width: 86%;
  height: auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* event page banner and content */
.official-page-banner.page_banner {
  margin-top: 0;
  background: #006b82 url("../img/legacy/bgege.svg") center center / cover no-repeat;
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_bn_title {
  color: #fff;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: .06em;
  text-align: center;
  padding: 20px 0;
}

.official-page-section {
  padding: 0 0 68px;
  background: #fafafa;
  position: relative;
}

.bread_crumb {
  color: var(--official-muted);
  font-size: 18px;
  margin: 32px 0;
}

.bread_crumb ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bread_crumb li {
  display: inline-block;
  margin-right: 10px;
}

.bread_crumb a {
  color: var(--official-muted);
  text-decoration: none;
}

.bread_crumb a:hover {
  color: var(--official-blue);
}

.bread_active {
  color: #333;
  font-weight: 600;
}

.line_top_title {
  color: #103247;
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1.2;
  margin: 0 0 30px;
  font-weight: 400;
  letter-spacing: .08em;
}

.event-period-switch {
  margin-top: 8px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}

.event-period-switch:hover {
  color: var(--official-blue);
}

.title_line {
  width: 100%;
  height: 4px;
  background: var(--official-line);
  margin: 0 0 40px;
}

.blue_line {
  width: 100%;
  height: 4px;
  background: #bed5de;
}

.event-list-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #d4d4d4;
  padding-bottom: 24px;
}

.onder_title {
  color: var(--official-blue);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.hall-filter {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.hall-filter button {
  min-width: 70px;
  height: 38px;
  padding: 0 18px;
  border: 0;
  background: #777;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.hall-filter button:nth-child(2),
.hall-filter button.active[data-hall-filter="1"] {
  background: var(--official-blue);
}

.hall-filter button:nth-child(3),
.hall-filter button.active[data-hall-filter="2"] {
  background: var(--official-teal);
}

.hall-filter button[data-hall-filter="all"].active {
  background: #555;
}

.hall-filter button:not(.active) {
  opacity: .72;
}

.hall-filter button:hover {
  opacity: 1;
}

/* local bootstrap-compatible grid for standalone static frontend */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

[class*="col-"] {
  padding-left: 16px;
  padding-right: 16px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.event_wrap {
  margin-bottom: 44px;
}

.event_wrap a {
  color: #000;
  text-decoration: none;
}

.event_wrap a:hover {
  color: var(--official-blue);
  text-decoration: none;
}

.m_eventmb {
  margin-bottom: 34px;
}

.event_box {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
  transition: box-shadow .25s ease, transform .25s ease;
}

.event_box:hover {
  transform: translateY(-4px);
  box-shadow:
    rgba(45, 45, 45, .05) 0 2px 2px,
    rgba(49, 49, 49, .05) 0 4px 4px,
    rgba(42, 42, 42, .05) 0 8px 8px,
    rgba(32, 32, 32, .05) 0 16px 16px,
    rgba(49, 49, 49, .05) 0 32px 32px;
}

.event_pic {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
  overflow: visible;
  background: #eff5f9;
}

.event_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #eff5f9;
}

.event_pic_placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--official-blue);
  letter-spacing: .18em;
  font-size: 24px;
  background: #edf4fb;
}

.eun_both {
  position: absolute;
  right: 22px;
  bottom: -20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.bor_hall_bg1,
.bor_hall_bg2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 0 16px;
}

.bor_hall_bg1 {
  background: var(--official-blue);
}

.bor_hall_bg2 {
  background: var(--official-teal);
}

.en_bx {
  padding: 24px 18px 18px;
}

.event_date {
  font-size: 15px;
  letter-spacing: 1.6px;
  color: var(--official-blue);
  margin-bottom: 4px;
}

.event_title {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.event_p {
  font-size: 13px;
  color: var(--official-muted);
  letter-spacing: .08em;
}

.readmore_bg2 {
  text-align: center;
  font-size: 18px;
  margin: 4px auto 0;
  background: #c4c4c4;
  width: 170px;
  padding: 7px 0 5px;
  border-radius: 50px;
}

.readmore_bg2 a {
  display: grid;
  color: #fff;
  line-height: 1.15;
  text-decoration: none;
}

.readmore_bg2 a:hover {
  color: #666;
}

.official-event-detail-page .event-detail-breadcrumb {
  margin: 30px 0 28px;
  color: #707070;
  font-size: 14px;
  letter-spacing: .04em;
}

.official-event-detail-page .event-detail-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.official-event-detail-page .event-detail-breadcrumb li {
  margin-right: 0;
}

.official-event-detail-page .event-detail-breadcrumb a {
  color: #707070;
}

.official-event-detail-page .event-detail-breadcrumb a:hover,
.event-detail-content-body a,
.event-detail-official-link {
  color: var(--official-blue);
}

.official-event-detail {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0 0 52px;
}

.official-event-detail-section > .container {
  padding-top: 32px;
}

.event-detail-title-area {
  margin: 0 0 42px;
}

.event-detail-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 0 0 24px;
}

.event-detail-toolbar {
  margin: 0;
  justify-self: end;
}

.event-detail-title-area h1 {
  color: #103247;
  font-size: clamp(28px, 2.55vw, 36px);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: .07em;
  margin: 0;
}

.event-detail-title-line {
  height: 4px;
  margin: 0;
  background: #e7e7e7;
}

.event-detail-title-line .blue_line {
  height: 4px;
  width: 100%;
  background: #bed5de;
}

@media (max-width: 767.98px) {
  .event-detail-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .event-detail-toolbar {
    justify-self: stretch;
  }
}

.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.event-detail-info-panel {
  border-left: 3px solid var(--official-blue);
  padding: 0 0 0 18px;
  display: grid;
  gap: 22px;
  color: #4f5d64;
  font-size: 15px;
  line-height: 1.9;
}

.event-detail-hall-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.event-detail-section-label {
  display: inline-flex;
  height: 36px;
  padding: 0 9px;
  align-items: center;
  justify-content: center;
  background: var(--official-blue);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
}

.event-detail-hall-badge {
  display: inline-flex;
  width: 64px;
  height: 36px;
  min-width: 64px;
  min-height: 36px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: none;
}

.event-detail-hall-badge.bor_hall_bg1 {
  background: var(--official-blue);
}

.event-detail-hall-badge.bor_hall_bg2 {
  background: var(--official-teal);
}

.event-detail-field {
  display: grid;
  gap: 8px;
}

.event-detail-field h2 {
  margin: 0;
  color: #3a3f42;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .04em;
}

.event-detail-field p,
.event-detail-field div {
  margin: 0;
}

.event-detail-date-range {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  max-width: 100%;
}

.event-detail-date-box {
  border: 1px solid #bed5de;
  display: inline-flex;
  width: 210px;
  min-width: 210px;
  padding: 9px 12px;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  background: #fff;
  color: #333;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.event-detail-date-year {
  display: inline;
  margin-bottom: 0;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
}

.event-detail-date-box strong {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
}

.event-detail-date-box span:not(.event-detail-date-year) {
  color: #68767d;
  font-size: 13px;
}

.event-detail-date-separator {
  padding-bottom: 12px;
  color: #bed5de;
  font-weight: 700;
}

.event-detail-official-link {
  overflow-wrap: anywhere;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 104, 130, .28);
}

.event-detail-official-link:hover {
  border-bottom-color: currentColor;
}

.event-detail-content-section {
  margin-top: 34px;
  border-top: 1px solid #d7e8ee;
  padding-top: 28px;
}

.event-detail-content-title {
  margin: 0 0 18px;
  color: #263238;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.event-detail-content-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 10px;
  background: var(--official-blue);
}

.event-detail-content-body {
  color: #414141;
  font-size: 16px;
  line-height: 2.15;
  letter-spacing: .04em;
  word-break: break-word;
}

.event-detail-content-body p {
  margin: 0 0 18px;
}

.event-detail-content-body ul,
.event-detail-content-body ol {
  margin: 0 0 20px 1.5em;
  padding: 0;
}

.event-detail-content-body li {
  margin-bottom: 8px;
}

.event-detail-content-body img {
  max-width: 100%;
  height: auto;
  margin: 18px 0;
}

.event-detail-content-body table {
  min-width: 0;
  margin: 18px 0;
  background: #fff;
}

.event-detail-content-body th,
.event-detail-content-body td {
  border: 1px solid #d8e3e7;
  padding: 10px 12px;
  vertical-align: top;
}

.event-detail-media-panel {
  margin: 0;
}

.event-detail-media-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f3f8fb;
}

.event-detail-neighbor-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid #dce8ed;
}

.event-detail-neighbor {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #4c555a;
  text-decoration: none;
}

.event-detail-neighbor--next {
  justify-content: flex-end;
  text-align: right;
}

.event-detail-neighbor small {
  display: block;
  color: #5a686f;
  font-size: 13px;
  margin-bottom: 4px;
}

.event-detail-neighbor-arrow {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #9ca9ad;
  border-radius: 50%;
  color: #3f484c;
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
}

.event-detail-neighbor:hover {
  color: var(--official-blue);
}

@media (max-width: 900px) {
  .event-detail-layout {
    grid-template-columns: 1fr;
  }

  .event-detail-neighbor-nav {
    grid-template-columns: 1fr;
  }

  .event-detail-neighbor--next {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .official-event-detail-page .event-detail-breadcrumb {
    margin: 22px 0;
    font-size: 13px;
  }

  .event-detail-title-area h1 {
    font-size: 26px;
    letter-spacing: .03em;
  }

  .event-detail-info-panel {
    font-size: 14px;
    padding-left: 14px;
  }

  .event-detail-date-range {
    gap: 10px;
  }

  .event-detail-date-box {
    width: 190px;
    min-width: 190px;
    padding: 9px 10px;
  }
}

/* footer */
.tainex-official-footer.site-footer {
  padding: 0;
  border: 0;
  background: var(--official-light);
  color: #3b4a52;
}

.footer_bg {
  background: #e8eef0;
  padding: 26px 0 24px;
}

.official-footer-inner {
  display: grid;
  grid-template-columns: minmax(390px, 2.15fr) minmax(410px, 2.15fr) minmax(112px, .7fr);
  gap: 28px;
  align-items: stretch;
}

.footer-venue {
  display: grid;
  grid-template-columns: minmax(148px, 1fr) minmax(145px, 172px);
  gap: 9px;
  min-height: 148px;
  padding: 0 13px 0 0;
  border-right: 1px solid rgba(0, 97, 130, .24);
}

.footer_box {
  color: #415560;
  font-size: 14px;
  line-height: 1.7;
}

.footer_box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer_title {
  font-size: 15px;
  font-weight: 700;
  color: #0b2736;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.footer-logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.footer-venue-logo {
  align-self: center;
}

.footer-logo-block img {
  max-width: 172px;
  width: 100%;
  height: auto;
  mix-blend-mode: darken;
  margin: 0 auto;
}

.footer-links-panel {
  display: grid;
  justify-items: center;
  place-content: center;
  gap: 10px;
  width: 100%;
  max-width: 180px;
  min-height: 148px;
  align-self: stretch;
  justify-self: center;
  text-align: center;
}

.footer-sustainability-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-sustainability-icons img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-tourism-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 50px;
  text-decoration: none;
}

.footer-tourism-logo {
  display: block;
  width: 138px;
  height: 50px;
  object-fit: contain;
}

.footer-tourism-title {
  color: #0b2736;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.footer_deepbg {
  background: var(--official-blue);
  border-bottom: 3px solid #8fc63f;
  padding: 6px 0 5px;
}

.tainex-official-footer .copyright {
  color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
}

.footer-api-health {
  display: none !important;
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 997;
  background: rgba(255, 255, 255, .9);
  color: var(--official-muted);
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}

.footer-api-health.ok {
  color: #067647;
}

.footer-api-health.bad {
  color: #b42318;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 1120px) {
  .tainex-official-header .official-brand {
    width: 230px;
  }
  .tainex-official-header .menu_btn {
    gap: 24px;
  }
  .tainex-official-header .menu_btn > li,
  .tainex-official-header .nav-group {
    font-size: 17px;
  }
}

@media (max-width: 920px) {
  body[data-page="events"] .container,
  body[data-page="events"] .header-inner,
  body[data-page="events"] .footer-inner {
    width: min(100% - 30px, 1400px);
  }

  .tainex-official-header .header_bg {
    min-height: 76px;
    padding: 10px 16px;
  }

  .tainex-official-header .official-brand {
    width: 180px;
  }

  .tainex-official-header .nav-toggle,
  .tainex-official-header .m_menuicon {
    display: block;
  }

  .tainex-official-header .menu_item,
  .tainex-official-header .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(250,250,250,.98);
    border-top: 1px solid #e1e1e1;
    padding: 12px 24px 24px;
  }

  .tainex-official-header .nav.is-open {
    display: block;
  }

  .tainex-official-header .menu_btn {
    display: block;
  }

  .tainex-official-header .menu_btn > li,
  .tainex-official-header .nav-group {
    display: block;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }

  .tainex-official-header .nav-group-btn,
  .tainex-official-header .lang-direct {
    width: 100%;
    min-height: 48px;
  }

  .tainex-official-header .nav-menu {
    position: static;
    transform: none;
    display: grid;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 10px 18px;
  }

  .side_tab {
    display: none;
  }

  .fish_icon {
    width: 74px;
    height: 74px;
    right: 12px;
    bottom: 14px;
  }

  .event-list-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .official-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links-panel {
    grid-column: 1 / -1;
    min-height: auto;
    max-width: none;
    padding-top: 8px;
  }

  .footer-api-health {
    display: none;
  }
}

@media (max-width: 640px) {
  .official-page-banner.page_banner {
    min-height: 82px;
    background-image: url("../img/legacy/m_bgege.svg");
  }

  .page_bn_title {
    font-size: 32px;
  }

  .bread_crumb {
    font-size: 16px;
    margin: 22px 0;
  }

  .line_top_title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hall-filter {
    width: 100%;
    align-items: stretch;
  }

  .hall-filter button {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 8px;
  }

  .official-footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-venue {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 97, 130, .18);
    padding-bottom: 18px;
  }

  .footer-logo-block {
    order: 0;
    justify-content: flex-start;
  }

  .footer-logo-block img {
    max-width: 150px;
    margin: 0;
  }

  .footer-links-panel {
    justify-items: start;
    place-content: start;
    text-align: left;
  }

  .footer-sustainability-icons {
    justify-content: flex-start;
  }
}

/* Round 5: CI4 front view migration fixes */
.static-intro-section {
  padding: 28px 0 0;
}
.static-intro {
  margin: 0;
  color: #4a5c68;
  font-size: 18px;
  line-height: 1.8;
}
.tainex-official-header .menu_btn,
.tainex-official-header .menu_btn li,
.side_tab ul,
.side_tab li {
  list-style: none !important;
}
.tainex-official-header .menu_btn > li::marker,
.side_tab li::marker {
  content: "";
}

/* Round 9: official media/service inner-page layout migrated to CI4 Views */
.official-detail-section {
  padding: 0 0 68px;
  background: #fafafa;
  overflow: hidden;
}
.official-detail-section .container { position: relative; }
.official-detail-section .container::before,
.official-detail-section .container::after {
  content: '';
  position: absolute;
  top: 130px;
  width: 95px;
  height: 130px;
  pointer-events: none;
  opacity: .42;
  background: url('../img/legacy/bgege.svg') center/contain no-repeat;
  filter: grayscale(1);
}
.official-detail-section .container::before { left: -150px; transform: rotate(180deg); }
.official-detail-section .container::after { right: -150px; }
.official-main-row { align-items: flex-start; }
.side_menu { margin-bottom: 28px; }
.official-left-menu {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
}
.official-left-menu li {
  list-style: none;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}
.official-left-menu li::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  background: var(--official-blue);
}
.official-left-menu li a {
  display: block;
  padding: 17px 14px 17px 28px;
  color: #676767;
  text-decoration: none;
  font-size: 17px;
}
.official-left-menu li.active { background: #c2dbe2; }
.official-left-menu li.active a,
.official-left-menu li a:hover { color: var(--official-blue); }
.side_menucontent { padding-bottom: 30px; }
.official-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
}
.official-dropdown { position: relative; display: inline-block; }
.official-dropdown > button {
  border: 0;
  background: #555;
  color: #fff;
  min-width: 72px;
  min-height: 40px;
  padding: 0 36px 0 16px;
  font-size: 15px;
  cursor: pointer;
}
.official-dropdown > button::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -2px;
  border-top: 5px solid #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.official-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 40;
  display: none;
  min-width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.official-dropdown:hover .official-dropdown-menu,
.official-dropdown:focus-within .official-dropdown-menu { display: block; }
.official-dropdown-menu a {
  display: block;
  padding: 9px 16px;
  white-space: nowrap;
  color: #333;
  text-decoration: none;
}
.official-dropdown-menu a:hover { background: #e9f4f7; color: var(--official-blue); }
.news_wrap { margin-top: 0; }
.news_od {
  padding: 18px 0 26px;
  border-bottom: 1px solid #e4e4e4;
}
.news_od:first-child { padding-top: 0; }
.new_wap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 28px;
  margin-bottom: 12px;
}
.new_ed_list,
.new_ed_list2,
.new_ed_list3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 24px;
  color: #fff;
  padding: 0 8px;
  font-size: 14px;
  background: #002e79;
}
.new_ed_list2 { background: var(--official-teal); }
.new_ed_list3 { background: var(--official-blue); }
.new_ed_hall {
  font-size: 14px;
  font-weight: 600;
  margin-right: 2px;
}
.new_ed_hall.blue { color: var(--official-blue); }
.new_ed_hall.blue_d { color: var(--official-teal); }
.new_ed_date {
  margin-left: auto;
  color: #707070;
  font-size: 15px;
}
.news_od a { color: inherit; text-decoration: none; }
.card-text-name {
  color: #111;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 12px;
}
.card-text-info {
  color: #555;
  line-height: 1.75;
  font-size: 16px;
  margin: 0 0 12px;
}
.news_readmore {
  color: var(--official-blue);
  font-size: 16px;
  font-weight: 600;
}
.news_od a:hover .card-text-name,
.news_od a:hover .news_readmore { color: var(--official-teal); }
.hall_tab,
.trans_item,
.prev_btn {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.hall_tab a,
.trans_item a,
.prev_btn a { text-decoration: none; color: inherit; }
.hall_tab {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 3px;
  padding: 3px;
  border: 1px solid #d6e6ec;
  background: #eef6f8;
}
.hall_tab li {
  min-width: 86px;
  height: 34px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  --hall-tab-color: #7a8b92;
  background: var(--hall-tab-color);
  color: #fff;
  position: relative;
  font-size: 15px;
  font-weight: 700;
  line-height: 34px;
  border-radius: 0;
  opacity: .68;
  transition: background .15s ease, opacity .15s ease, transform .15s ease;
}
.hall_tab a:first-child li,
.hall_tab li.active {
  --hall-tab-color: var(--official-blue);
  background: var(--official-blue);
}
.hall_tab a:nth-child(2) li,
.hall_tab li.active2 {
  --hall-tab-color: var(--official-teal);
  background: var(--official-teal);
}
.hall_tab li.active::after,
.hall_tab li.active2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.hall_tab li.active,
.hall_tab li.active2 {
  color: #fff;
  opacity: 1;
}
.hall_tab li.active::after { border-top: 9px solid var(--official-blue); }
.hall_tab li.active2::after { border-top: 9px solid var(--official-teal); }
.hall_tab li:hover,
.hall_tab li:focus-visible {
  opacity: .92;
  transform: translateY(-1px);
}
.hall_tab li.active:hover,
.hall_tab li.active2:hover,
.hall_tab li.active:focus-visible,
.hall_tab li.active2:focus-visible {
  opacity: 1;
}
.trans_item { margin-top: 0; margin-bottom: 30px; }
.trans_item li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  background: #aaa;
  color: #fff;
  font-size: 15px;
}
.trans_item li.trans_active { background: var(--official-blue); }
.trans_item li.trans_active2 { background: var(--official-teal); }
.fontbox_mg { row-gap: 28px; }
.live_box { margin-bottom: 26px; }
.video_boderpic,
.press_boderpic,
.about_boderpic,
.facilities_boderpic {
  background-color: #e9f0f4;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.video_boderpic { position: relative; }
.video_boderpic > a { display: block; position: relative; background: #000; }
.video_boderpic img:not(.play_icon img) {
  width: 100%;
  height: 238px;
  object-fit: cover;
  display: block;
}
.play_icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.play_icon img { width: 72px; height: 72px; }
.under_list_title,
.onder_list_title {
  list-style: none;
  margin: 8px 0 12px;
  padding: 0;
  color: #111;
  font-size: 16px;
  line-height: 1.45;
}
.onder_list_title li { list-style: none; }
.onder_list_title li::before {
  content: '▪';
  color: var(--official-blue);
  margin-right: 8px;
}
.press_boderpic,
.about_boderpic {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.press_bg {
  list-style: none;
  margin: 0;
  padding: 14px 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.72));
}
.press_bg li { list-style: none; }
.press_name { font-size: 16px; font-weight: 600; }
.zoomin_icon {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,.65);
  display: grid;
  place-items: center;
}
.zoomin_icon img { width: 24px; height: 24px; filter: brightness(0) invert(1); }
.contractor-content .row { align-items: flex-start; }
.contractor-row { row-gap: 18px; }
.facilities_boderpic {
  width: 100%;
  min-height: 190px;
  border: 1px solid #ddd;
  background-size: contain;
}
.live_title {
  color: #111;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
  margin: 4px 0 12px;
}
.live_smfont {
  color: #444;
  font-size: 16px;
  line-height: 1.75;
}
.live_smfont ul { margin: 0 0 8px; padding-left: 0; list-style: none; }
.live_smfont li { list-style: none; margin-bottom: 4px; }
.live_smfont a { color: var(--official-blue); text-decoration: none; }
.live_smfont a:hover { color: var(--official-teal); }
@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; }
}
@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
}
@media (max-width: 767px) {
  .official-detail-section .container::before,
  .official-detail-section .container::after { display: none; }
  .new_ed_date { margin-left: 0; flex-basis: 100%; }
  .hall_tab li { min-width: 120px; }
  .facilities_boderpic { min-height: 150px; }
}
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
@media (max-width: 767px) {
  .live_box.col-3, .live_box.col-9 { flex: 0 0 100%; max-width: 100%; }
}

/* Round 10: official TaiNEX subpage parity for About / Venue / Event */
body[data-page="about-official"] .container,
body[data-page="venue-showgrounds"] .container,
body[data-page="events"] .container,
body[data-page="about-official"] .header-inner,
body[data-page="venue-showgrounds"] .header-inner,
body[data-page="events"] .header-inner,
body[data-page="about-official"] .footer-inner,
body[data-page="venue-showgrounds"] .footer-inner,
body[data-page="events"] .footer-inner {
  width: min(1200px, calc(100% - 48px));
  max-width: 1200px;
}

.official-subpage .official-detail-section {
  background: #fafafa;
  padding-bottom: 84px;
}
.official-subpage .bread_crumb {
  margin: 30px 0 36px;
  font-size: 16px;
}
.official-subpage .official-main-row {
  display: flex;
  align-items: flex-start;
}
.official-subpage .side_menu {
  padding-top: 22px;
}
.official-subpage .side_menucontent {
  padding-left: 34px;
}
.official-subpage .line_top_title {
  font-size: 34px;
  letter-spacing: .04em;
  color: #00324a;
  margin-bottom: 28px;
}
.official-subpage .title_line {
  margin-bottom: 38px;
}
.official-subpage .official-left-menu {
  padding-top: 0;
}
.official-subpage .official-left-menu li {
  background: transparent;
}
.official-subpage .official-left-menu li.active {
  background: #c2dbe2;
}
.official-subpage .official-left-menu li.official-sub-item a {
  padding-left: 40px;
  font-size: 15px;
}
.official-subpage .official-left-menu li.official-sub-item::before {
  left: 20px;
  width: 3px;
  height: 3px;
}
.official-content-area {
  min-height: 420px;
}
.official-feature-image {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #d7e4ea;
  background: #fff;
}
.official-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}
.official-rich-content {
  color: #1f3345;
  font-size: 17px;
  line-height: 1.9;
}
.official-rich-content h2,
.official-rich-content h3 {
  color: #111;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 16px;
}
.official-rich-content h2 { font-size: 28px; }
.official-rich-content h3 { font-size: 22px; }
.official-text-block {
  padding: 0 0 24px;
  margin: 0 0 28px;
  border-bottom: 1px solid #d8e7ee;
}
.official-text-block:last-child { border-bottom: 0; }
.official-text-block p { margin: 0 0 12px; }
.showground-image-wrap {
  width: 100%;
  background: #777;
  margin: 10px 0 30px;
  overflow: hidden;
  border: 1px solid #d7d7d7;
}
.showground-image-wrap img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center top;
}
.venue-showgrounds-page .hall_tab {
  margin-bottom: 26px;
}
.venue-showgrounds-page .trans_item {
  margin-bottom: 26px;
}
.venue-showgrounds-page .venue-description {
  margin-top: 22px;
}

body[data-page="events"] .event_wrap .row {
  margin-left: -14px;
  margin-right: -14px;
}
body[data-page="events"] .m_eventmb {
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 36px;
}
body[data-page="events"] .event_pic {
  padding-bottom: 56.5%;
}
body[data-page="events"] .event_box {
  border: 0;
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
body[data-page="events"] .event-list-tools {
  align-items: flex-end;
  border-bottom: 1px dotted #d7d7d7;
}
body[data-page="events"] .event-filter-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px 34px;
  margin: 10px 0 34px;
  padding: 18px 20px;
  border: 1px solid #dbe8ee;
  border-left: 5px solid var(--official-blue);
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
  box-shadow: 0 14px 30px rgba(6, 52, 72, .07);
}
body[data-page="events"] .event-filter-group {
  display: grid;
}
body[data-page="events"] .event-filter-group--period {
  justify-self: end;
}
body[data-page="events"] .event-hall-tabs {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid #d6e6ec;
  background: #eef6f8;
}
body[data-page="events"] .event-hall-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  --event-hall-tab-color: #7a8b92;
  min-width: 68px;
  height: 34px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: var(--event-hall-tab-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 34px;
  text-decoration: none;
  opacity: .68;
  transition: background .15s ease, opacity .15s ease, transform .15s ease;
}
body[data-page="events"] .event-hall-tab[data-event-hall-filter="1"] {
  --event-hall-tab-color: var(--official-blue);
}
body[data-page="events"] .event-hall-tab[data-event-hall-filter="2"] {
  --event-hall-tab-color: var(--official-teal);
}
body[data-page="events"] .event-hall-tab.is-active {
  opacity: 1;
}
body[data-page="events"] .event-hall-tab.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid var(--event-hall-tab-color);
}
body[data-page="events"] .event-hall-tab:hover,
body[data-page="events"] .event-hall-tab:focus-visible {
  color: #fff;
  opacity: .92;
  transform: translateY(-1px);
}
body[data-page="events"] .event-hall-tab.is-active:hover,
body[data-page="events"] .event-hall-tab.is-active:focus-visible {
  opacity: 1;
}
body[data-page="events"] .event-period-switcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #d7e8ee;
}
body[data-page="events"] .event-period-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 4px;
  color: #5d737d;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: color .16s ease, transform .16s ease;
}
body[data-page="events"] .event-period-option:hover,
body[data-page="events"] .event-period-option:focus-visible {
  color: #006b82;
  transform: translateY(-1px);
}
body[data-page="events"] .event-period-option.is-active {
  color: var(--official-blue);
}
body[data-page="events"] .event-period-option.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--official-blue);
}
body[data-page="events"] .event-list-summary {
  margin: 4px 0 0;
  color: #6d7d85;
  font-size: 15px;
}
body[data-page="events"] .event_wrap {
  margin-top: 8px;
}
body[data-page="events"] .event_wrap .state-card {
  border-radius: 6px;
}

@media (max-width: 920px) {
  body[data-page="about-official"] .container,
  body[data-page="venue-showgrounds"] .container,
  body[data-page="events"] .container,
  body[data-page="about-official"] .header-inner,
  body[data-page="venue-showgrounds"] .header-inner,
  body[data-page="events"] .header-inner,
  body[data-page="about-official"] .footer-inner,
  body[data-page="venue-showgrounds"] .footer-inner,
  body[data-page="events"] .footer-inner {
    width: min(100% - 30px, 1200px);
  }
  .official-subpage .side_menucontent { padding-left: 16px; }
}

@media (max-width: 760px) {
  body[data-page="events"] .event-filter-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 18px;
  }
  body[data-page="events"] .event-hall-tabs {
    width: 100%;
  }
  body[data-page="events"] .event-hall-tab {
    flex: 1 1 0;
  }
  body[data-page="events"] .event-period-switcher {
    width: fit-content;
    justify-self: start;
  }
}
@media (max-width: 767px) {
  .official-subpage .official-main-row { display: block; }
  .official-subpage .side_menucontent { padding-left: 0; }
  .official-subpage .side_menu { padding-top: 0; }
  .official-subpage .line_top_title { font-size: 30px; }
  .showground-image-wrap img { min-height: 180px; }
}

/* 2026-05-24 Laragon home page fix: event cards are rendered with .row/.col classes.
   Keep the home event list out of the generic CSS-grid layout so Bootstrap-like
   flex column widths do not shrink every card inside each grid cell. */
body[data-page="home"] .home-event-section {
  padding-top: clamp(48px, 5vw, 72px);
}
body[data-page="home"] .home-core-links-section {
  padding: 22px 0 10px;
  background: #fff;
}
body[data-page="home"] .home-core-links ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body[data-page="home"] .home-core-links a {
  display: flex;
  min-height: 68px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid #d9e8ee;
  background: #f7fbfd;
  color: #073247;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}
body[data-page="home"] .home-core-links a:hover,
body[data-page="home"] .home-core-links a:focus-visible {
  border-color: #9ccbd8;
  background: #edf8fb;
  color: #006b82;
  transform: translateY(-1px);
}
body[data-page="home"] .home-core-links__label {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}
body[data-page="home"] .home-core-links__parent {
  color: #60727a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
body[data-page="home"] .home-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 34px);
  margin: 0 0 30px;
  padding: 0 0 0 22px;
  border-left: 6px solid var(--official-blue);
}
body[data-page="home"] .home-event-heading {
  align-items: center;
}
body[data-page="home"] .home-section-title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  gap: 0;
}
body[data-page="home"] .home-section-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
body[data-page="home"] .home-section-eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--official-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body[data-page="home"] .home-media-heading {
  border-left-color: var(--official-teal);
}
body[data-page="home"] .home-media-heading .home-section-eyebrow {
  color: var(--official-teal);
}
body[data-page="home"] .home-section-heading .line_top_title {
  margin: 0;
  color: #073247;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: .04em;
}
body[data-page="home"] .home-section-copy {
  margin: 9px 0 0;
  color: #5c7078;
  font-size: 16px;
  line-height: 1.7;
}
body[data-page="home"] .home-section-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
body[data-page="home"] .home-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px 0 18px;
  border: 1px solid #c9dfe7;
  border-radius: 999px;
  background: #fff;
  color: #006b82;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 77, 102, .10);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
body[data-page="home"] .home-more-link:hover,
body[data-page="home"] .home-more-link:focus-visible {
  color: #004c66;
  border-color: #9ccbd8;
  box-shadow: 0 14px 28px rgba(0, 77, 102, .16);
  transform: translateY(-1px);
}
body[data-page="home"] .home-more-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  width: auto;
  height: auto;
  color: var(--official-blue);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
  border: 0;
}
body[data-page="home"] .home-hall-tabs {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 3px;
  border: 1px solid #d6e6ec;
  background: #eef6f8;
}
body[data-page="home"] .home-hall-tab {
  position: relative;
  --home-hall-tab-color: #a9a9a9;
  min-width: 68px;
  height: 34px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: var(--home-hall-tab-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 34px;
  cursor: pointer;
  opacity: .68;
  transition: background .15s ease, opacity .15s ease, transform .15s ease;
}
body[data-page="home"] .home-hall-tab[data-home-hall-filter="all"],
body[data-page="home"] .home-hall-tab[data-home-news-hall-filter="all"] {
  --home-hall-tab-color: #7a8b92;
  background: #7a8b92;
}
body[data-page="home"] .home-hall-tab[data-home-hall-filter="1"] {
  --home-hall-tab-color: var(--official-blue);
  background: var(--official-blue);
}
body[data-page="home"] .home-hall-tab[data-home-hall-filter="2"] {
  --home-hall-tab-color: var(--official-teal);
  background: var(--official-teal);
}
body[data-page="home"] .home-hall-tab[data-home-news-hall-filter="1"] {
  --home-hall-tab-color: var(--official-blue);
  background: var(--official-blue);
}
body[data-page="home"] .home-hall-tab[data-home-news-hall-filter="2"] {
  --home-hall-tab-color: var(--official-teal);
  background: var(--official-teal);
}
body[data-page="home"] .home-hall-tab.is-active {
  opacity: 1;
}
body[data-page="home"] .home-hall-tab.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid var(--home-hall-tab-color);
}
body[data-page="home"] .home-hall-tab:hover {
  opacity: .92;
  transform: translateY(-1px);
}
body[data-page="home"] .home-hall-tab.is-active:hover {
  opacity: 1;
}
body[data-page="home"] .home-event-wrap {
  margin-bottom: 12px;
}
body[data-page="home"] #home-events {
  width: auto;
}
body[data-page="home"] #home-events .m_eventmb {
  display: flex;
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 36px;
}
body[data-page="home"] #home-events .m_eventmb > a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
body[data-page="home"] #home-events .event_box {
  width: 100%;
}
body[data-page="home"] #home-events .event_date,
body[data-page="home"] #home-events .event_title,
body[data-page="home"] #home-events .event_p {
  text-decoration: none;
}
body[data-page="home"] #home-events .event_title {
  overflow-wrap: anywhere;
}
body[data-page="home"] .home-media-section {
  padding: clamp(54px, 5vw, 76px) 0;
  border-top: 1px solid #d9e8ee;
  background: #f5f9fb;
}
body[data-page="home"] .home-news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 22px;
}
body[data-page="home"] .home-news-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid #dbe8ee;
  border-left: 4px solid var(--official-blue);
  border-radius: 6px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(6, 52, 72, .07);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
body[data-page="home"] .home-news-item:hover,
body[data-page="home"] .home-news-item:focus-visible {
  border-color: #a9d3de;
  box-shadow: 0 16px 32px rgba(6, 52, 72, .11);
  transform: translateY(-2px);
}
body[data-page="home"] .home-news-meta {
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
}
body[data-page="home"] .home-news-date {
  color: #006b82;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
body[data-page="home"] .home-news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
body[data-page="home"] .home-news-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  background: var(--official-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
body[data-page="home"] .home-news-tags span:nth-child(2) {
  background: var(--official-teal);
}
body[data-page="home"] .home-news-title {
  min-width: 0;
  color: #243945;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  text-decoration: none;
}
body[data-page="home"] .home-news-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #c7dfe6;
  color: #006b82;
  font-size: 22px;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
body[data-page="home"] .home-news-item:hover .home-news-arrow,
body[data-page="home"] .home-news-item:focus-visible .home-news-arrow {
  border-color: var(--official-blue);
  background: var(--official-blue);
  color: #fff;
}
.event_wrap .m_eventmb > a {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  body[data-page="home"] .home-core-links ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body[data-page="home"] .home-section-heading {
    display: grid;
    gap: 18px;
    align-items: start;
  }
  body[data-page="home"] .home-section-actions {
    justify-content: flex-start;
  }
  body[data-page="home"] .home-news-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  body[data-page="home"] .home-core-links ul {
    grid-template-columns: 1fr;
  }
  body[data-page="home"] .home-core-links a {
    min-height: 60px;
  }
  body[data-page="home"] .home-section-heading {
    padding-left: 16px;
  }
  body[data-page="home"] .home-section-heading .line_top_title {
    font-size: 32px;
  }
  body[data-page="home"] .home-news-item {
    grid-template-columns: 1fr 26px;
    align-items: start;
    gap: 12px;
  }
  body[data-page="home"] .home-news-meta {
    grid-column: 1 / -1;
  }
}


/* Round 5: home Banner management links and flicker-free event images */
.home-banner-section {
  background: #fafafa;
  padding: 34px 0 4px;
}

.home-banner-section[hidden] {
  display: none !important;
}

.home-banner-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: #103247;
}

.home-banner-head span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
}

.home-banner-head small {
  color: #7a858d;
  font-size: 13px;
}

.home-banner-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-banner-link {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 18px 20px;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(0, 109, 130, .92), rgba(14, 49, 69, .94)),
    url('../img/legacy/banner.jpg') center / cover no-repeat;
  border-radius: 2px;
  box-shadow: 0 12px 28px rgba(0, 45, 65, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-banner-link:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 45, 65, .18);
}

.home-banner-link span {
  font-size: 13px;
  opacity: .86;
  letter-spacing: .12em;
}

.home-banner-link strong {
  font-size: 20px;
  line-height: 1.25;
}

.home-banner-link em {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event_img[data-event-real-src],
.detail-img[data-event-real-src] {
  background-color: #eff5f9;
}

@media (max-width: 920px) {
  .home-banner-links {
    grid-template-columns: 1fr;
  }
  .home-banner-head {
    display: grid;
  }
}

/* Round 7: popup lightbox and stable official-like floating side menu */
.home-alert-root {
  display: none !important;
}

body.has-popup-notice {
  overflow: hidden;
}

.side_tab {
  position: fixed;
  left: 0;
  top: 64%;
  transform: translateY(-50%);
  z-index: 1200;
  width: 34px;
  overflow: visible;
  font-family: Arial, "Noto Sans TC", sans-serif;
}

.side_tab ul,
.side_tab li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.side_tab li {
  position: relative;
  width: 34px;
  height: 34px;
  display: block;
  background: transparent !important;
  margin: 0 0 2px;
}

.side-tab-link,
.side-tab-button {
  position: relative;
  width: 34px;
  height: 34px;
  min-height: 34px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: #1f2d35;
  display: block;
  overflow: visible;
  cursor: pointer;
  box-shadow: none;
  text-decoration: none;
  transition: width .18s ease;
}

.side-tab-link:hover,
.side-tab-link:focus,
.side-tab-button:hover,
.side-tab-button:focus,
.side-tab-vr.is-open .side-tab-button {
  width: 252px;
  color: #1f2d35;
  outline: none;
}

.side-label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 218px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 0 14px 0 16px;
  color: #1f2d35;
  background: #fff;
  border: 1px solid #d7e5eb;
  border-right: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  letter-spacing: .02em;
  white-space: nowrap;
  text-indent: 0;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  pointer-events: none;
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.side-tab-link:hover .side-label,
.side-tab-link:focus .side-label,
.side-tab-button:hover .side-label,
.side-tab-button:focus .side-label,
.side-tab-vr.is-open .side-label {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
  color: #1f2d35 !important;
  background: #fff !important;
}

.side-icon {
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  z-index: 2;
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: grid;
  place-items: center;
  padding: 4px;
  background: var(--official-blue);
  box-shadow: 0 4px 12px rgba(0, 58, 82, .12);
}

.side-tab-link:hover .side-icon,
.side-tab-link:focus .side-icon,
.side-tab-button:hover .side-icon,
.side-tab-button:focus .side-icon,
.side-tab-vr.is-open .side-icon {
  background: #005b75;
}

.side_tab li img,
.side-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.side-submenu {
  position: absolute;
  left: 0;
  top: 36px;
  z-index: 3;
  width: 156px;
  min-width: 156px;
  display: none;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.side-tab-vr:hover .side-submenu,
.side-tab-vr:focus-within .side-submenu,
.side-tab-vr.is-open .side-submenu {
  display: grid;
  gap: 1px;
}

.side-submenu a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px 0 16px;
  background: #006b82;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .02em;
}

.side-submenu a:nth-child(2) {
  background: #00aa9d;
}

.side-submenu a:hover,
.side-submenu a:focus {
  color: #fff;
  background: #005b75;
}

.side-submenu a:nth-child(2):hover,
.side-submenu a:nth-child(2):focus {
  background: #008f84;
}

.popup-notice {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.popup-notice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 28, 42, .58);
  backdrop-filter: blur(2px);
}

.popup-notice-panel {
  position: relative;
  width: min(680px, calc(100vw - 48px));
  max-height: min(76vh, 620px);
  overflow: auto;
  background: #fff;
  border-top: 6px solid var(--official-blue);
  box-shadow: 0 28px 60px rgba(0, 35, 52, .28);
  padding: 30px 34px 28px;
  animation: popupNoticeIn .18s ease-out both;
}

@keyframes popupNoticeIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-notice-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #50616b;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.popup-notice-close:hover,
.popup-notice-close:focus {
  color: var(--official-blue);
  outline: none;
}

.popup-notice-panel h2 {
  margin: 0 42px 16px 0;
  color: #073247;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
}

.popup-notice-body {
  color: #33434c;
  font-size: 16px;
  line-height: 1.8;
}

.popup-notice-body p {
  margin: 0 0 .85em;
}

.popup-notice-actions {
  margin-top: 22px;
  text-align: right;
}

.popup-notice-ok {
  min-width: 120px;
  border: 0;
  background: var(--official-blue);
  color: #fff;
  padding: 10px 18px;
  cursor: pointer;
}

.popup-notice-ok:hover,
.popup-notice-ok:focus {
  background: #005b75;
  outline: none;
}

.home-banner-section {
  background: #f3f8fa;
  border-top: 1px solid #d5e6ed;
  border-bottom: 1px solid #d5e6ed;
  padding: 22px 0;
}

.home-banner-head span {
  color: #073247;
}

@media (max-width: 920px) {
  .side_tab {
    display: none;
  }
}

@media (max-width: 640px) {
  .popup-notice {
    padding: 16px;
  }
  .popup-notice-panel {
    width: calc(100vw - 32px);
    padding: 26px 22px 24px;
  }
}


/* Round 13: Singapore EXPO-inspired top navigation
   只調整 tainex-front 主選單視覺與 RWD，不更動 API、頁面資料與側邊快捷列邏輯。 */
.tainex-official-header.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(7, 55, 77, .06);
  box-shadow: 0 10px 30px rgba(7, 37, 52, .06);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.tainex-official-header .header_bg {
  width: min(100%, 1230px);
  min-height: 94px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tainex-official-header .official-brand,
.tainex-official-header .logo {
  width: 292px;
  flex: 0 0 292px;
}

.tainex-official-header .official-brand img,
.tainex-official-header .logo img {
  width: 100%;
  max-height: 62px;
  object-fit: contain;
}

.tainex-official-header .menu_item,
.tainex-official-header .nav {
  flex: 1 1 auto;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.tainex-official-header .menu_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.7vw, 26px);
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tainex-official-header .menu_btn,
.tainex-official-header .menu_btn li {
  list-style: none;
}

.tainex-official-header .menu_btn > li,
.tainex-official-header .nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.tainex-official-header .nav-group-btn,
.tainex-official-header .nav-link,
.tainex-official-header .lang-direct {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #172832;
  background: transparent !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tainex-official-header .nav-group-btn::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .58;
  transition: transform .18s ease, opacity .18s ease;
}

.tainex-official-header .nav-group:hover > .nav-group-btn::after,
.tainex-official-header .nav-group:focus-within > .nav-group-btn::after {
  transform: rotate(225deg) translate(-1px, -1px);
  opacity: 1;
}

.tainex-official-header .nav-group:hover > .nav-group-btn,
.tainex-official-header .nav-group:focus-within > .nav-group-btn,
.tainex-official-header .nav-group.is-current > .nav-group-btn,
.tainex-official-header .lang-direct:hover,
.tainex-official-header .lang-direct:focus {
  color: #006f95;
  background: rgba(0, 136, 199, .08) !important;
  box-shadow: 0 0 0 1px rgba(0, 136, 199, .16) inset;
  transform: translateY(-1px);
}

.tainex-official-header .nav-group.is-current > .nav-group-btn::before,
.tainex-official-header .lang-direct:hover::before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #00a2b4, #0076a8);
}

.tainex-official-header .lang-direct {
  min-width: 52px;
  padding-left: 14px;
  padding-right: 14px;
  color: #006f95;
  border: 1px solid rgba(0, 136, 199, .20);
}

.tainex-official-header .nav-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  padding: 12px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(0, 100, 140, .10);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(5, 34, 52, .18);
  z-index: 1200;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.tainex-official-header .nav-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(255, 255, 255, .96);
  border-left: 1px solid rgba(0, 100, 140, .10);
  border-top: 1px solid rgba(0, 100, 140, .10);
}

.tainex-official-header .nav-group:hover .nav-menu,
.tainex-official-header .nav-group:focus-within .nav-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.tainex-official-header .nav-menu a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 40px;
  margin: 2px 0;
  padding: 10px 13px;
  color: #263943;
  background: transparent;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.tainex-official-header .nav-menu a::after {
  content: "›";
  margin-left: auto;
  padding-left: 16px;
  color: #0088c7;
  opacity: .55;
}

.tainex-official-header .nav-menu a:hover,
.tainex-official-header .nav-menu a:focus {
  color: #006f95;
  background: #eef8fb;
  transform: translateX(2px);
  outline: none;
}

.tainex-official-header .nav-toggle,
.tainex-official-header .m_menuicon {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(0, 100, 140, .12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(5, 34, 52, .08);
}

.tainex-official-header .nav-toggle img,
.tainex-official-header .m_menuicon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .tainex-official-header .header_bg {
    width: 100%;
    gap: 18px;
  }
  .tainex-official-header .official-brand,
  .tainex-official-header .logo {
    width: 260px;
    flex-basis: 260px;
  }
  .tainex-official-header .menu_btn {
    gap: 6px;
  }
  .tainex-official-header .nav-group-btn,
  .tainex-official-header .lang-direct {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }
}

@media (max-width: 920px) {
  .tainex-official-header.site-header {
    position: sticky;
  }
  .tainex-official-header .header_bg {
    min-height: 74px;
    padding: 0 16px;
  }
  .tainex-official-header .official-brand,
  .tainex-official-header .logo {
    width: 232px;
    flex-basis: 232px;
  }
  .tainex-official-header .nav-toggle,
  .tainex-official-header .m_menuicon {
    display: inline-flex;
  }
  .tainex-official-header .menu_item,
  .tainex-official-header .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    width: auto;
    display: none;
    padding: 14px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(0, 100, 140, .10);
    border-radius: 24px;
    box-shadow: 0 22px 54px rgba(5, 34, 52, .16);
  }
  .tainex-official-header .menu_item.is-open,
  .tainex-official-header .nav.is-open {
    display: block;
  }
  .tainex-official-header .menu_btn {
    display: block;
    width: 100%;
  }
  .tainex-official-header .menu_btn > li,
  .tainex-official-header .nav-group {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 100, 140, .08);
  }
  .tainex-official-header .menu_btn > li:last-child {
    border-bottom: 0;
  }
  .tainex-official-header .nav-group-btn,
  .tainex-official-header .lang-direct {
    width: 100%;
    justify-content: flex-start;
    min-height: 42px;
    padding: 10px 12px;
  }
  .tainex-official-header .lang-direct {
    justify-content: center;
    margin-top: 10px;
  }
  .tainex-official-header .nav-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: grid;
    min-width: 0;
    margin: 0 0 8px;
    padding: 0 0 8px 16px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
  }
  .tainex-official-header .nav-menu::before {
    display: none;
  }
  .tainex-official-header .nav-menu a {
    min-height: 36px;
    padding: 8px 12px;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .tainex-official-header .official-brand,
  .tainex-official-header .logo {
    width: 210px;
    flex-basis: 210px;
  }
}


/* Round 14: restore floating widgets and improve submenu usability
   1) 左側快捷選單與右下小鯨魚固定回原本浮動位置
   2) 主選單目前頁不要底線
   3) 下拉選單縮短滑鼠移動間距，避免往下選第二層時跳掉 */
.tainex-official-header .nav-group.is-current > .nav-group-btn::before,
.tainex-official-header .lang-direct:hover::before,
.tainex-official-header .lang-direct:focus::before {
  display: none !important;
  content: none !important;
}

.tainex-official-header .nav-group {
  position: relative;
}

.tainex-official-header .nav-group::after {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  top: 100%;
  height: 14px;
  display: block;
}

.tainex-official-header .nav-menu {
  top: calc(100% + 4px) !important;
  transform: translateX(-50%) translateY(4px) !important;
}

.tainex-official-header .nav-group:hover .nav-menu,
.tainex-official-header .nav-group:focus-within .nav-menu {
  transform: translateX(-50%) translateY(0) !important;
}

.side_tab {
  position: fixed !important;
  left: 0 !important;
  top: 62% !important;
  bottom: auto !important;
  right: auto !important;
  transform: translateY(-50%) !important;
  z-index: 998 !important;
}

.fish_icon {
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  top: auto !important;
  left: auto !important;
  z-index: 998 !important;
  width: 88px !important;
  height: 88px !important;
  transform: none !important;
}

.fish_icon a {
  border-radius: 50% !important;
  background: #e49700 !important;
  overflow: hidden !important;
}

.fish_icon img {
  width: 86% !important;
  max-width: 86% !important;
  height: auto !important;
  object-fit: contain !important;
}

@media (max-width: 920px) {
  .tainex-official-header .nav-group::after {
    display: none;
  }
  .tainex-official-header .nav-menu {
    top: auto !important;
    transform: none !important;
  }
  .side_tab {
    display: none !important;
  }
  .fish_icon {
    right: 12px !important;
    bottom: 14px !important;
    width: 74px !important;
    height: 74px !important;
  }
}

/* Round 15: floating widgets are rendered outside the sticky header.
   Header has backdrop-filter, which can make position:fixed children behave as if
   they are fixed inside the header. These overrides restore the original viewport
   positions and keep the submenu easy to reach. */
body > .side_tab {
  position: fixed !important;
  left: 0 !important;
  right: auto !important;
  top: 67% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  z-index: 1400 !important;
  width: 34px !important;
  overflow: visible !important;
}

body > .fish_icon {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  top: auto !important;
  left: auto !important;
  z-index: 1400 !important;
  width: 88px !important;
  height: 88px !important;
  transform: none !important;
}

body > .fish_icon a {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  background: #e49700 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, .45) !important;
}

body > .fish_icon img {
  width: 86% !important;
  max-width: 86% !important;
  height: auto !important;
  max-height: 86% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.tainex-official-header .nav-group::after {
  left: -18px !important;
  right: -18px !important;
  top: 75% !important;
  height: 34px !important;
}

.tainex-official-header .nav-menu {
  top: calc(100% - 1px) !important;
  transition-delay: .08s !important;
}

.tainex-official-header .nav-group:hover .nav-menu,
.tainex-official-header .nav-group:focus-within .nav-menu {
  transition-delay: 0s !important;
}

@media (max-width: 920px) {
  body > .side_tab {
    display: none !important;
  }
  body > .fish_icon {
    right: 12px !important;
    bottom: 14px !important;
    width: 74px !important;
    height: 74px !important;
  }
}

/* Mobile accordion nav: submenus stay collapsed until the first-level item is tapped. */
@media (max-width: 920px) {
  .tainex-official-header .nav-menu,
  .tainex-official-header .nav-group:hover .nav-menu,
  .tainex-official-header .nav-group:focus-within .nav-menu {
    position: static !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: none !important;
    min-width: 0 !important;
    width: 100% !important;
    margin: 2px 0 10px !important;
    padding: 0 0 8px 18px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .tainex-official-header .nav-group.is-open .nav-menu {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .tainex-official-header .nav-group.is-open > .nav-group-btn::after {
    transform: rotate(225deg) translate(-1px, -1px) !important;
    opacity: 1 !important;
  }

  .tainex-official-header .nav-menu a {
    display: flex !important;
    min-height: 38px !important;
    align-items: center !important;
    color: #263943 !important;
    opacity: 1 !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    text-shadow: none !important;
    white-space: normal !important;
  }

  .tainex-official-header .nav-menu a::after {
    color: #0088c7 !important;
    opacity: .72 !important;
  }
}

/* Desktop third-level header flyouts. */
.tainex-official-header .nav-menu {
  overflow: visible !important;
}

.tainex-official-header .nav-subgroup {
  position: relative;
  z-index: 1;
  margin: 2px 0;
}

.tainex-official-header .nav-subgroup::after {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: 100%;
  width: 12px;
}

.tainex-official-header .nav-subgroup > .nav-menu-link {
  margin: 0;
}

.tainex-official-header .nav-subgroup.has-children > .nav-menu-link::after {
  content: "›";
  margin-left: auto;
  padding-left: 16px;
  color: #0088c7;
  opacity: .62;
  font-size: 18px;
  line-height: 1;
}

.tainex-official-header .nav-submenu {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  min-width: 230px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(0, 100, 140, .10);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(5, 34, 52, .16);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.tainex-official-header .nav-submenu::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 18px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, .98);
  border-left: 1px solid rgba(0, 100, 140, .10);
  border-bottom: 1px solid rgba(0, 100, 140, .10);
}

.tainex-official-header .nav-subgroup.has-children:hover > .nav-submenu,
.tainex-official-header .nav-subgroup.has-children:focus-within > .nav-submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.tainex-official-header .nav-submenu-link {
  position: relative;
  z-index: 1;
}

.tainex-official-header .nav-submenu-link::after {
  content: none !important;
}

@media (max-width: 920px) {
  .tainex-official-header .nav-subgroup,
  .tainex-official-header .nav-subgroup.has-children {
    display: block;
    width: 100%;
  }

  .tainex-official-header .nav-subgroup::after,
  .tainex-official-header .nav-submenu::before {
    display: none !important;
  }

  .tainex-official-header .nav-submenu {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    display: grid !important;
    min-width: 0 !important;
    width: 100% !important;
    margin: 0 0 4px !important;
    padding: 0 0 4px 14px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .tainex-official-header .nav-submenu-link {
    min-height: 34px !important;
    padding: 7px 12px 7px 16px !important;
    font-size: 14px !important;
    white-space: normal !important;
  }
}

/* Mobile header hardening: keep hamburger visible on every frontend page. */
@media (max-width: 920px) {
  .tainex-official-header {
    overflow: visible !important;
  }

  .tainex-official-header .header_bg {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding-left: clamp(14px, 4vw, 18px) !important;
    padding-right: clamp(14px, 4vw, 18px) !important;
  }

  .tainex-official-header .official-brand,
  .tainex-official-header .logo {
    flex: 1 1 auto !important;
    flex-basis: auto !important;
    min-width: 0 !important;
    width: min(232px, calc(100vw - 112px)) !important;
    max-width: 232px !important;
  }

  .tainex-official-header .official-brand img,
  .tainex-official-header .logo img {
    width: 100% !important;
    max-width: 232px !important;
    height: auto !important;
  }

  .tainex-official-header .nav-toggle,
  .tainex-official-header .m_menuicon {
    display: inline-flex !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    position: relative !important;
    z-index: 1302 !important;
    color: #006b82 !important;
    overflow: hidden !important;
  }

  .tainex-official-header .nav-toggle::before,
  .tainex-official-header .m_menuicon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
    transform: translate(-50%, -50%);
  }

  .tainex-official-header .nav-toggle img,
  .tainex-official-header .m_menuicon img {
    opacity: 0 !important;
  }

  .tainex-official-header .menu_item,
  .tainex-official-header .nav {
    z-index: 1301 !important;
    max-height: calc(100vh - 92px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .tainex-official-header .official-brand,
  .tainex-official-header .logo {
    width: min(210px, calc(100vw - 112px)) !important;
    max-width: 210px !important;
  }
}

/* =========================================================
   Home Hero / Fullscreen Immersive Background
   後台「首頁視覺區管理」控制：圖片輪播或無聲影片背景
   ========================================================= */
.home-immersive-hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  isolation: isolate;
  background: transparent;
  padding: clamp(120px, 16vh, 180px) 0 clamp(78px, 10vh, 128px);
}
.home-immersive-hero.is-managed {
  background: #071422;
}
.home-immersive-hero:not(.is-media-ready) {
  background: transparent;
}
.home-immersive-hero:not(.is-media-ready) .hero-inner,
.home-immersive-hero:not(.is-media-ready) .hero-dots,
.home-immersive-hero:not(.is-media-ready) .hero-overlay-layer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.home-immersive-hero::before {
  display: none;
}
.hero-media-layer,
.hero-overlay-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-media-layer {
  z-index: -2;
  overflow: hidden;
  background: transparent;
}
.hero-overlay-layer {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,28,58,var(--hero-overlay-opacity, .45)) 0%, rgba(0,31,58,calc(var(--hero-overlay-opacity, .45) * .72)) 45%, rgba(0,0,0,calc(var(--hero-overlay-opacity, .45) * .42)) 100%),
    radial-gradient(circle at 18% 78%, rgba(16,166,199,.22), transparent 35%);
}
.home-immersive-hero.is-overlay-disabled .hero-overlay-layer {
  display: none;
}
.hero-media-image,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
}
.hero-media-image {
  object-fit: cover;
  object-position: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.015);
  animation: heroImageBreath 12s ease-in-out infinite alternate;
}
.hero-video {
  object-fit: cover;
  object-position: center;
  background: transparent;
}
.home-immersive-hero .hero-inner {
  max-width: 1180px;
  color: var(--hero-text-color, #ffffff);
}
.home-immersive-hero .hero-badge {
  color: var(--hero-text-color, #ffffff);
  border-color: color-mix(in srgb, var(--hero-text-color, #ffffff) 70%, transparent);
  background: rgba(0,0,0,.18);
}
.home-immersive-hero h1 {
  max-width: 1100px;
  font-size: clamp(46px, 7vw, var(--hero-title-size, 86px));
  line-height: 1.05;
  text-shadow: 0 8px 28px rgba(0,0,0,.42);
}
.home-immersive-hero p {
  color: var(--hero-text-color, #ffffff);
  font-size: clamp(18px, 2vw, 24px);
  max-width: 780px;
  text-shadow: 0 4px 18px rgba(0,0,0,.38);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #004f90;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(0,0,0,.22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.hero-cta:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}
.home-immersive-hero .hero-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 6vh, 64px);
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(86vw, 460px);
  margin: 0;
  pointer-events: auto;
}
.home-immersive-hero .hero-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  transition: width .18s ease, background .18s ease, transform .18s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.16);
}
.home-immersive-hero .hero-dot:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.72);
}
.home-immersive-hero .hero-dot.is-active {
  width: 52px;
  background: rgba(255,255,255,.96);
}
.home-immersive-hero [hidden],
.home-immersive-hero .is-hidden {
  display: none !important;
}
.home-immersive-hero.is-loading .hero-media-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.home-immersive-hero.is-overlay-disabled .hero-badge,
.home-immersive-hero.is-overlay-disabled [data-hero-eyebrow],
.home-immersive-hero.is-overlay-disabled [data-hero-title],
.home-immersive-hero.is-overlay-disabled [data-hero-subtitle],
.home-immersive-hero.is-overlay-disabled [data-hero-actions] {
  display: none !important;
}
@keyframes heroImageBreath {
  from { transform: scale(1.015); }
  to { transform: scale(1.06); }
}
@media (max-width: 768px) {
  .home-immersive-hero {
    min-height: calc(100vh - 70px);
    padding: 96px 0 72px;
  }
  .home-immersive-hero h1 {
    font-size: clamp(34px, 12vw, 58px);
  }
  .home-immersive-hero p {
    font-size: 17px;
  }
}


/* Round 17: redesign official subpage breadcrumb and sidebar for a cleaner, more premium look */
.official-subpage .bread_crumb {
  margin: 32px 0 40px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(247,251,252,.96) 100%);
  border: 1px solid #dce8ee;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(10, 63, 92, .08);
}
.official-subpage .bread_crumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.official-subpage .bread_crumb li {
  list-style: none;
  color: #97aab5;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
}
.official-subpage .bread_crumb li a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: #45606d;
  text-decoration: none;
  background: #f5f9fb;
  border: 1px solid #e3edf2;
  border-radius: 999px;
  transition: all .2s ease;
}
.official-subpage .bread_crumb li a:hover,
.official-subpage .bread_crumb li a:focus {
  color: var(--official-blue);
  border-color: #bfd9e3;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 91, 124, .10);
  transform: translateY(-1px);
}
.official-subpage .bread_crumb .bread_active {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  color: #fff;
  background: linear-gradient(135deg, #0c7290 0%, #0ea0b0 100%);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(14, 160, 176, .24);
}

.official-subpage .side_menu {
  padding-top: 0;
}
.official-subpage .official-left-menu {
  position: sticky;
  top: 112px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
  border: 1px solid #dbe8ee;
  border-radius: 28px;
  box-shadow: 0 20px 46px rgba(11, 63, 90, .10);
}
.official-subpage .official-left-menu::before {
  content: '頁面導覽';
  display: block;
  margin: 0 0 14px;
  padding: 0 4px;
  color: #7b97a5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}
html[lang="en"] .official-subpage .official-left-menu::before,
body[data-lang="en"] .official-subpage .official-left-menu::before {
  content: 'PAGE GUIDE';
}
.official-subpage .official-left-menu li {
  margin: 0 0 10px;
  border: 0;
  background: transparent;
}
.official-subpage .official-left-menu li:last-child {
  margin-bottom: 0;
}
.official-subpage .official-left-menu li::before {
  left: 17px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--official-blue);
  box-shadow: 0 0 0 5px rgba(7, 121, 156, .10);
}
.official-subpage .official-left-menu li a {
  padding: 15px 20px 15px 38px;
  border: 1px solid #e1ebef;
  border-radius: 18px;
  background: #fff;
  color: #45606d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.official-subpage .official-left-menu li a:hover,
.official-subpage .official-left-menu li a:focus {
  color: var(--official-blue);
  border-color: #b6d2dc;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 91, 124, .10);
  transform: translateX(4px);
}
.official-subpage .official-left-menu li.active {
  background: transparent;
}
.official-subpage .official-left-menu li.active::before {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.18);
}
.official-subpage .official-left-menu li.active a {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0b6e8f 0%, #0ea7b5 100%);
  box-shadow: 0 16px 36px rgba(14, 160, 176, .25);
}
.official-subpage .official-left-menu li.active a:hover,
.official-subpage .official-left-menu li.active a:focus {
  color: #fff;
  transform: translateX(4px);
}
.official-subpage .official-left-menu li.official-sub-item {
  margin-left: 14px;
}
.official-subpage .official-left-menu li.official-sub-item::before {
  left: 16px;
  width: 6px;
  height: 6px;
  background: #8ba7b5;
  box-shadow: none;
}
.official-subpage .official-left-menu li.official-sub-item a {
  position: relative;
  padding: 13px 18px 13px 38px;
  font-size: 15px;
  font-weight: 600;
  border-style: dashed;
  background: #f8fcfd;
}
.official-subpage .official-left-menu li.official-sub-item a::before {
  content: '↳';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f98a6;
  font-size: 14px;
  font-weight: 700;
}
.official-subpage .official-left-menu li.official-sub-item.active::before {
  background: #fff;
}
.official-subpage .official-left-menu li.official-sub-item.active a {
  color: var(--official-blue);
  background: linear-gradient(135deg, #ecf8fb 0%, #dff2f6 100%);
  border-color: #c3e0e8;
  box-shadow: 0 10px 24px rgba(9, 121, 156, .14);
}
.official-subpage .official-left-menu li.official-sub-item.active a::before {
  color: var(--official-blue);
}

@media (max-width: 991.98px) {
  .official-subpage .bread_crumb {
    padding: 16px 18px;
    border-radius: 18px;
  }
  .official-subpage .side_menu {
    margin-bottom: 26px;
  }
  .official-subpage .official-left-menu {
    position: static;
    top: auto;
    padding: 18px;
    border-radius: 22px;
  }
}

/* Round 20: Option A cleanup - remove sidebar title and share style across official subpages */
.official-subpage .official-left-menu::before {
  content: none !important;
  display: none !important;
}
.official-subpage .official-left-menu {
  padding-top: 8px;
  padding-bottom: 8px;
}
.official-subpage .side_menu {
  padding-top: 0;
}

@media (max-width: 991.98px) {
  .official-subpage .official-left-menu {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media (max-width: 767.98px) {
  .official-subpage .bread_crumb {
    margin: 22px 0 30px;
    padding: 14px 16px;
  }
  .official-subpage .bread_crumb ul {
    gap: 8px;
  }
  .official-subpage .bread_crumb li,
  .official-subpage .bread_crumb li a,
  .official-subpage .bread_crumb .bread_active {
    font-size: 14px;
  }
  .official-subpage .official-left-menu {
    padding: 16px;
    border-radius: 20px;
  }
  .official-subpage .official-left-menu li a {
    font-size: 16px;
    padding: 14px 18px 14px 36px;
  }
}

/* Round 18: refine official subpage breadcrumb and left navigation */
.official-subpage .bread_crumb ul > li:nth-child(even) {
  display: none;
}
.official-subpage .bread_crumb ul > li:not(:last-child)::after {
  content: '›';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  color: #9ab2be;
  font-size: 16px;
  font-weight: 800;
}

.official-subpage .official-left-menu li.official-sub-item a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.official-subpage .official-left-menu li.official-sub-item a::before {
  display: none;
}
.official-subpage .official-menu-arrow {
  display: inline-flex;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e5f1f5;
  color: #5f7f8f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: all .22s ease;
}
.official-subpage .official-left-menu li.official-sub-item:hover .official-menu-arrow,
.official-subpage .official-left-menu li.official-sub-item:focus-within .official-menu-arrow {
  background: #d7edf3;
  color: var(--official-blue);
}
.official-subpage .official-left-menu li.official-sub-item.active .official-menu-arrow {
  background: rgba(12, 114, 144, .14);
  color: var(--official-blue);
}

@media (max-width: 767.98px) {
  .official-subpage .bread_crumb ul > li:not(:last-child)::after {
    margin-left: 8px;
  }
  .official-subpage .official-left-menu li.official-sub-item a {
    gap: 8px;
  }
  .official-subpage .official-menu-arrow {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    font-size: 13px;
  }
}

/* Round 19: Option A - minimal premium breadcrumb and side navigation */
.official-subpage .bread_crumb {
  margin: 30px 0 42px;
  padding: 0 0 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(12, 74, 98, .12);
  border-radius: 0;
  box-shadow: none;
}
.official-subpage .bread_crumb ul {
  gap: 8px;
}
.official-subpage .bread_crumb li {
  color: #8b9aa3;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
}
.official-subpage .bread_crumb ul > li:nth-child(even) {
  display: none;
}
.official-subpage .bread_crumb ul > li:not(:last-child)::after {
  content: '/';
  margin-left: 9px;
  color: #c4d0d6;
  font-size: 13px;
  font-weight: 400;
}
.official-subpage .bread_crumb li a {
  min-height: auto;
  padding: 0;
  color: #7b8c96;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.official-subpage .bread_crumb li a:hover,
.official-subpage .bread_crumb li a:focus {
  color: #005f7a;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}
.official-subpage .bread_crumb .bread_active {
  min-height: auto;
  padding: 0;
  color: #1f313b;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-weight: 700;
}

.official-subpage .official-left-menu {
  position: sticky;
  top: 112px;
  padding: 10px 0;
  background: #ffffff;
  border: 1px solid rgba(12, 74, 98, .10);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(12, 45, 60, .07);
  overflow: hidden;
}
.official-subpage .official-left-menu::before {
  content: '導覽';
  margin: 0;
  padding: 16px 22px 14px;
  color: #81919a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  border-bottom: 1px solid rgba(12, 74, 98, .08);
}
html[lang="en"] .official-subpage .official-left-menu::before,
body[data-lang="en"] .official-subpage .official-left-menu::before {
  content: 'MENU';
}
.official-subpage .official-left-menu li {
  margin: 0;
  border: 0;
  background: transparent;
}
.official-subpage .official-left-menu li + li {
  border-top: 1px solid rgba(12, 74, 98, .07);
}
.official-subpage .official-left-menu li::before {
  display: none;
}
.official-subpage .official-left-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 15px 22px 15px 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #40545f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: none;
  transition: color .2s ease, background .2s ease, padding-left .2s ease;
}
.official-subpage .official-left-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: background .2s ease;
}
.official-subpage .official-left-menu li a:hover,
.official-subpage .official-left-menu li a:focus {
  color: #005f7a;
  background: #f7fbfc;
  border: 0;
  box-shadow: none;
  transform: none;
  padding-left: 30px;
}
.official-subpage .official-left-menu li.active {
  background: transparent;
}
.official-subpage .official-left-menu li.active a {
  color: #004f66;
  border: 0;
  background: linear-gradient(90deg, rgba(0, 120, 145, .095) 0%, rgba(255,255,255,0) 100%);
  box-shadow: none;
  font-weight: 800;
}
.official-subpage .official-left-menu li.active a::after {
  background: #007b8f;
}
.official-subpage .official-left-menu li.active a:hover,
.official-subpage .official-left-menu li.active a:focus {
  color: #004f66;
  transform: none;
}
.official-subpage .official-left-menu li.official-sub-item {
  margin-left: 0;
}
.official-subpage .official-left-menu li.official-sub-item a {
  min-height: 46px;
  padding: 12px 22px 12px 38px;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  border: 0;
  background: #fbfdfe;
}
.official-subpage .official-left-menu li.official-sub-item a:hover,
.official-subpage .official-left-menu li.official-sub-item a:focus {
  padding-left: 42px;
  background: #f5fafb;
}
.official-subpage .official-left-menu li.official-sub-item.active a {
  color: #005f7a;
  background: rgba(0, 120, 145, .07);
  border: 0;
  box-shadow: none;
  font-weight: 700;
}
.official-subpage .official-menu-arrow {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  background: transparent;
  color: #9babb3;
  font-size: 18px;
  font-weight: 300;
}
.official-subpage .official-left-menu li.official-sub-item:hover .official-menu-arrow,
.official-subpage .official-left-menu li.official-sub-item:focus-within .official-menu-arrow,
.official-subpage .official-left-menu li.official-sub-item.active .official-menu-arrow {
  background: transparent;
  color: #005f7a;
}

@media (max-width: 991.98px) {
  .official-subpage .bread_crumb {
    padding: 0 0 16px;
    border-radius: 0;
  }
  .official-subpage .official-left-menu {
    position: static;
    top: auto;
    padding: 8px 0;
    border-radius: 16px;
  }
}
@media (max-width: 767.98px) {
  .official-subpage .bread_crumb {
    margin: 22px 0 30px;
    padding: 0 0 14px;
  }
  .official-subpage .bread_crumb li,
  .official-subpage .bread_crumb li a,
  .official-subpage .bread_crumb .bread_active {
    font-size: 14px;
  }
  .official-subpage .official-left-menu li a {
    min-height: 50px;
    padding: 13px 18px 13px 22px;
    font-size: 15px;
  }
  .official-subpage .official-left-menu li a:hover,
  .official-subpage .official-left-menu li a:focus {
    padding-left: 24px;
  }
  .official-subpage .official-left-menu li.official-sub-item a {
    padding-left: 32px;
  }
  .official-subpage .official-left-menu li.official-sub-item a:hover,
  .official-subpage .official-left-menu li.official-sub-item a:focus {
    padding-left: 34px;
  }
}

/* Round 20 final override: Option A unified sidebar without title */
.official-subpage .official-left-menu::before {
  content: none !important;
  display: none !important;
}
.official-subpage .official-left-menu {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.official-subpage .side_menu {
  padding-top: 0;
}
@media (max-width: 991.98px) {
  .official-subpage .official-left-menu {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
}


/* Round 21: remove breadcrumb blocks from all front official pages */
.bread_crumb {
  display: none !important;
}
.official-detail-section > .container {
  padding-top: 56px;
}
@media (max-width: 991.98px) {
  .official-detail-section > .container {
    padding-top: 38px;
  }
}
@media (max-width: 767.98px) {
  .official-detail-section > .container {
    padding-top: 28px;
  }

  .official-event-detail-section > .container {
    padding-top: 22px;
  }
}

/* Round 22: venue rental pages align original menu tree and content blocks */
.official-subpage .official-left-menu li.official-menu-parent > a {
  color: #465b66;
  background: #fff;
  font-weight: 700;
}
.official-subpage .official-left-menu li.official-menu-parent.is-open > a {
  color: #003b50;
  font-weight: 800;
}
.official-subpage .official-left-menu li.official-menu-parent.is-open > a::after {
  background: #007b8f;
  opacity: .9;
}
.official-subpage .official-left-menu li.official-menu-parent.is-open + .official-sub-item a,
.official-subpage .official-left-menu li.official-sub-item.active a {
  border-left-color: #007b8f;
}
.venue-feature-image {
  margin-top: 16px;
  margin-bottom: 28px;
}
.venue-feature-image img,
.showground-image-wrap img {
  max-width: 100%;
}
.venue-table-block {
  margin-top: 28px;
}
.venue-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #d7e1e6;
  background: #fff;
}
.venue-info-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 15px;
  color: #243945;
}
.venue-info-table th,
.venue-info-table td {
  padding: 15px 16px;
  border: 1px solid #d7e1e6;
  text-align: center;
  vertical-align: middle;
}
.venue-info-table thead th {
  background: #006f88;
  color: #fff;
  font-weight: 800;
}
.venue-info-table tbody tr:nth-child(even) {
  background: #f7fafb;
}
.venue-doc-block {
  margin-top: 20px;
}
.venue-doc-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  border-top: 1px dotted #ccd8de;
}
.venue-doc-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dotted #ccd8de;
}
.venue-doc-list a {
  color: #006f88;
  text-decoration: none;
  font-weight: 600;
}
.venue-doc-list a:hover,
.venue-doc-list a:focus {
  color: #003b50;
  text-decoration: underline;
}
.venue-doc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  border-radius: 4px;
  background: #006f88;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
}
@media (max-width: 767.98px) {
  .venue-info-table {
    min-width: 560px;
    font-size: 14px;
  }
  .venue-info-table th,
  .venue-info-table td {
    padding: 12px 10px;
  }
  .venue-doc-list li {
    align-items: flex-start;
  }
}

/* Round 23: rental calculator reconnected to legacy logic with minimal premium UI */
.calculator-detail-section {
  padding-top: 62px;
}
.calculator-page-heading {
  max-width: 980px;
  margin-bottom: 28px;
}
.calculator-page-heading p {
  margin: -14px 0 0;
  color: #5f7480;
  font-size: 16px;
  line-height: 1.8;
}
.rental-calculator {
  --calc-blue: #006f8d;
  --calc-blue-dark: #00445d;
  --calc-cyan: #15a6b6;
  --calc-line: #dce8ee;
  --calc-soft: #f5fafc;
  --calc-muted: #6f8390;
  color: #123142;
}
.calc-modern-shell {
  display: grid;
  gap: 24px;
}
.calc-intro-card,
.calc-card,
.calc-summary-card,
.calc-empty-card {
  background: #fff;
  border: 1px solid var(--calc-line);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(10, 64, 91, .08);
}
.calc-intro-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbfc 100%);
}
.calc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--calc-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
}
.calc-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--calc-cyan);
}
.calc-intro-card h2 {
  margin: 0 0 8px;
  color: #06364d;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: .04em;
}
.calc-intro-card p {
  max-width: 680px;
  margin: 0;
  color: var(--calc-muted);
  font-size: 15px;
  line-height: 1.8;
}
.calc-mode-tabs {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 6px;
  border: 1px solid var(--calc-line);
  border-radius: 999px;
  background: #eef6f8;
}
.calc-mode-tabs button {
  border: 0;
  min-width: 118px;
  min-height: 42px;
  padding: 9px 20px;
  border-radius: 999px;
  background: transparent;
  color: #567381;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.calc-mode-tabs button.is-active {
  background: #fff;
  color: var(--calc-blue);
  box-shadow: 0 10px 24px rgba(0, 111, 141, .14);
}
.calc-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}
.calc-workspace-single {
  grid-template-columns: minmax(0, 1fr);
}
.calc-card {
  padding: 24px;
}
.calc-input-card {
  min-width: 0;
}
.calc-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e7eef2;
}
.calc-card-head > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.calc-step {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eef8fb;
  color: var(--calc-blue);
  font-weight: 900;
}
.calc-card-head h3 {
  margin: 0;
  color: #0c4058;
  font-size: 22px;
  font-weight: 500;
}
.calc-card-head p {
  max-width: 390px;
  margin: 2px 0 0;
  color: var(--calc-muted);
  font-size: 14px;
  line-height: 1.65;
}
.calc-workspace-single .calc-card-head {
  align-items: center;
}
.calc-workspace-single .calc-card-head p {
  max-width: none;
  white-space: nowrap;
}
.calc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.calc-form-grid + .calc-form-grid,
.calc-room-toolbar,
.modern-room-grid,
.calc-selected-room,
.calc-actions {
  margin-top: 20px;
}
.calc-field {
  display: grid;
  gap: 9px;
}
.calc-wide {
  grid-column: 1 / -1;
}
.calc-field > label {
  color: #294c5d;
  font-size: 14px;
  font-weight: 800;
}
.calc-field input[type="date"],
.calc-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--calc-line);
  border-radius: 14px;
  padding: 8px 14px;
  background: #fff;
  color: #163545;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.calc-field input[type="date"]:focus,
.calc-field select:focus {
  border-color: #98cbd8;
  box-shadow: 0 0 0 4px rgba(21, 166, 182, .12);
}
.calc-option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.calc-choice {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--calc-line);
  border-radius: 999px;
  background: #fff;
  color: #45606d;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.calc-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.calc-choice:hover {
  transform: translateY(-1px);
  border-color: #bdd8e1;
  color: var(--calc-blue);
}
.calc-choice.is-active {
  border-color: #9dcbd5;
  background: #eaf7f9;
  color: #0b5d70;
  box-shadow: inset 0 -2px 0 rgba(19, 151, 166, .38), 0 8px 18px rgba(12, 64, 88, .08);
}
.calc-hall-square-row {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 3px;
  width: fit-content;
  padding: 3px;
  border: 1px solid #d6e6ec;
  background: #eef6f8;
}
.calc-hall-square-row .calc-choice {
  min-width: 74px;
  min-height: 34px;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: var(--official-blue);
  color: #fff;
  line-height: 34px;
  box-shadow: none;
  transform: none;
}
.calc-hall-square-row .calc-choice:nth-child(2) {
  background: var(--official-teal);
}
.calc-hall-square-row .calc-choice:hover,
.calc-hall-square-row .calc-choice.is-active {
  color: #fff;
  box-shadow: none;
  transform: none;
}
.calc-hall-square-row .calc-choice.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid var(--official-blue);
}
.calc-hall-square-row .calc-choice:nth-child(2).is-active::after {
  border-top-color: var(--official-teal);
}
.meeting-filter-grid > .calc-field:nth-child(2) {
  grid-column: 1 / -1;
}
.calc-capacity-range-row {
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 2px;
}
.calc-capacity-range-row .calc-choice {
  flex: 0 0 auto;
  min-height: 32px;
  min-width: 54px;
  justify-content: center;
  padding: 5px 6px;
  border-radius: 10px;
  border-style: dashed;
  background: #f7fbfc;
  color: #416170;
  font-size: 13px;
  line-height: 1.2;
  box-shadow: none;
}
.calc-capacity-range-row .calc-choice:hover {
  border-color: #9ccbd6;
  color: var(--calc-blue);
  transform: none;
}
.calc-capacity-range-row .calc-choice.is-active {
  border-color: #9dcbd5;
  background: #eef8fa;
  color: #0b5d70;
  box-shadow: inset 0 -2px 0 rgba(19, 151, 166, .32);
}
.calc-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--calc-line);
  border-radius: 14px;
  background: #fff;
  color: #45606d;
  font-weight: 800;
  cursor: pointer;
}
.calc-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.calc-primary-btn,
.calc-secondary-btn {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 10px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.calc-primary-btn {
  background: linear-gradient(135deg, #006f8d 0%, #12a6b5 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 111, 141, .22);
}
.calc-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 111, 141, .28);
}
.calc-secondary-btn {
  width: 100%;
  margin-top: 14px;
  background: #eef6f8;
  color: var(--calc-blue);
}
.calc-alert {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid #ffd9d9;
  border-radius: 14px;
  background: #fff6f6;
  color: #a83b3b;
  font-weight: 800;
}
.calc-summary-card {
  position: sticky;
  top: 112px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
}
.calc-total-main {
  margin: 4px 0 16px;
  color: var(--calc-blue-dark);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.03em;
}
.calc-summary-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}
.calc-summary-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e6eef2;
}
.calc-summary-card dt,
.calc-summary-card dd {
  margin: 0;
}
.calc-summary-card dt {
  color: var(--calc-muted);
}
.calc-summary-card dd {
  color: #14384a;
  font-weight: 900;
}
.calc-summary-card p {
  margin: 16px 0 0;
  color: var(--calc-muted);
  font-size: 13px;
  line-height: 1.7;
}
.calc-empty-card {
  padding: 24px;
  color: #58707c;
}
.calc-workspace + .calc-empty-card {
  margin-top: 14px;
}
.calc-empty-card strong {
  display: block;
  margin-bottom: 6px;
  color: #0c4058;
  font-size: 18px;
}
.calc-empty-card p {
  margin: 0;
  line-height: 1.7;
}
.calc-empty-card.is-flat {
  grid-column: 1 / -1;
  box-shadow: none;
  background: #f8fcfd;
}
.calc-result-card {
  margin-top: 24px;
}
.calc-table-wrap {
  overflow-x: auto;
}
.calc-estimate-disclaimer {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid #e6eef2;
  color: #8b1f1f;
  font-size: 14px;
  line-height: 1.7;
}
.calc-modern-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.calc-modern-table th,
.calc-modern-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e6eef2;
  text-align: left;
  vertical-align: middle;
}
.calc-modern-table th {
  color: #496877;
  background: #f4f9fb;
  font-size: 14px;
  font-weight: 900;
}
.calc-modern-table td {
  color: #17394a;
}
.calc-modern-table .num {
  text-align: right;
  white-space: nowrap;
}
.calc-modern-table small {
  display: block;
  margin-top: 4px;
  color: #b14343;
  font-weight: 800;
}
.calc-modern-table tr.is-error td {
  background: #fff6f6;
}
.calc-subtotal td {
  background: #fbfdfe;
  font-weight: 900;
}
.calc-total-row td {
  background: #eef8fb;
  color: var(--calc-blue-dark);
  font-size: 17px;
  font-weight: 900;
}
.calc-remove-btn {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff0f0;
  color: #b14343;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.calc-note {
  margin: 14px 0 0;
  color: #9a5a00;
  font-weight: 800;
}
.calc-room-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #274c5d;
}
.calc-room-toolbar span {
  color: var(--calc-muted);
  font-weight: 800;
}
.meeting-arrangement-figure {
  margin: 20px 0 0;
  overflow: hidden;
  border: 1px solid #d7eaf0;
  border-radius: 16px;
  background: #fff;
}
.meeting-arrangement-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.modern-room-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-height: 560px;
  padding: 4px;
}
.modern-room-card {
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--calc-line);
  background: #fff;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.modern-room-card:hover {
  transform: translateY(-2px);
  border-color: #bcd7e1;
  box-shadow: 0 12px 26px rgba(10, 64, 91, .10);
}
.modern-room-card.active {
  border-color: var(--calc-blue);
  background: #f3fbfd;
  box-shadow: 0 14px 30px rgba(0, 111, 141, .14);
}
.modern-room-card .room-photo {
  height: 96px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  cursor: zoom-in;
}
body.has-meeting-room-lightbox {
  overflow: hidden;
}
.meeting-room-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 34px);
}
.meeting-room-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 29, 53, .76);
  backdrop-filter: blur(3px);
}
.meeting-room-lightbox__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 20, 34, .38);
}
.meeting-room-lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 12px 18px;
  border-bottom: 1px solid #d7eaf0;
  color: #0c4058;
}
.meeting-room-lightbox__bar strong {
  min-width: 0;
  overflow: hidden;
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.meeting-room-lightbox__bar button {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid #c7dce5;
  border-radius: 50%;
  background: #f5fbfd;
  color: #0c4058;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.meeting-room-lightbox__bar button:hover,
.meeting-room-lightbox__bar button:focus {
  background: #e8f8f8;
  outline: none;
}
.meeting-room-lightbox__stage {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 18px;
  background: #f7fbfc;
}
.meeting-room-lightbox__stage img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
}
@media (max-width: 767.98px) {
  .meeting-room-lightbox {
    padding: 12px;
  }
  .meeting-room-lightbox__panel {
    max-height: calc(100vh - 24px);
  }
  .meeting-room-lightbox__stage {
    padding: 12px;
  }
}
.room-card-body {
  display: grid;
  gap: 4px;
}
.room-card-body strong {
  color: #0c4058;
  font-size: 16px;
}
.room-card-body em,
.room-card-body small {
  color: var(--calc-muted);
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
}
.calc-selected-room {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 14px 16px;
  border: 1px solid #d7eaf0;
  border-radius: 16px;
  background: #f5fbfd;
}
.calc-selected-room span {
  color: var(--calc-muted);
  font-weight: 800;
}
.calc-selected-room strong {
  color: var(--calc-blue-dark);
  font-size: 18px;
}
.calc-selected-room em {
  color: var(--calc-blue);
  font-style: normal;
  font-weight: 900;
}
.venue-rental-calculator {
  margin-top: 26px;
}
.venue-rental-calculator .calc-intro-card {
  margin-bottom: 0;
}

@media (max-width: 1180px) {
  .calc-workspace {
    grid-template-columns: 1fr;
  }
  .calc-summary-card {
    position: static;
  }
  .modern-room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .calculator-detail-section {
    padding-top: 36px;
  }
  .calc-intro-card,
  .calc-card-head {
    display: grid;
  }
  .calc-mode-tabs {
    width: 100%;
    border-radius: 18px;
  }
  .calc-mode-tabs button {
    flex: 1 1 50%;
    min-width: 0;
  }
  .calc-form-grid,
  .modern-room-grid {
    grid-template-columns: 1fr;
  }
  .calc-card,
  .calc-intro-card,
  .calc-summary-card,
  .calc-empty-card {
    border-radius: 20px;
    padding: 18px;
  }
  .calc-card-head > div {
    align-items: flex-start;
  }
  .calc-workspace-single .calc-card-head p {
    white-space: normal;
  }
  .calc-actions {
    justify-content: stretch;
  }
  .calc-primary-btn {
    width: 100%;
  }
}

/* Round 24: restore original venue detail layouts for live streaming and 200-inch LED pages */
.venue-live-page-content .venue-intro-block {
  margin-bottom: 28px;
}
.venue-live-page-content .venue-intro-block p {
  margin: 0;
  color: #253b49;
  line-height: 1.95;
}
.venue-live-suppliers {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.venue-live-supplier {
  display: grid;
  grid-template-columns: 204px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.venue-live-logo {
  width: 204px;
  min-height: 204px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d7d7d7;
  overflow: hidden;
}
.venue-live-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.venue-live-info {
  padding-top: 6px;
}
.venue-live-info h2 {
  margin: 0 0 16px;
  color: #222;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 800;
}
.venue-live-info p {
  margin: 0 0 4px;
  color: #111;
  font-size: 16px;
  line-height: 1.45;
}
.venue-live-info a {
  color: #000;
  text-decoration: none;
  word-break: break-all;
}
.venue-live-info a:hover,
.venue-live-info a:focus {
  color: var(--official-blue);
  text-decoration: underline;
}
.venue-led200-image {
  margin-top: 22px;
  margin-bottom: 36px;
  border: 0;
  background: transparent;
}
.venue-led200-image img {
  width: 100%;
  display: block;
}
.venue-led200-content {
  margin-top: 0;
}
.venue-action-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 2px;
}
.venue-action-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--official-blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed #d5d5d5;
  padding: 7px 0 10px;
}
.venue-action-link:hover,
.venue-action-link:focus {
  color: #004f90;
}
@media (max-width: 767.98px) {
  .venue-live-supplier {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .venue-live-logo {
    width: 180px;
    min-height: 180px;
  }
  .venue-live-info h2 {
    font-size: 20px;
  }
}


/* Round 25: venue original-content parity refinements */
.venue-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 18px 0 28px;
}
.venue-space-card {
  background: #fff;
  border: 1px solid #e2eaee;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 70, 100, .06);
}
.venue-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f3f6f7;
  overflow: hidden;
}
.venue-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.venue-card-body {
  padding: 13px 14px 16px;
}
.venue-card-body h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}
.venue-card-body p {
  margin: 0 0 4px;
  color: #234;
  font-size: 15px;
  line-height: 1.5;
}
.venue-doc-list li a[href="#"] {
  cursor: default;
}
.venue-live-page-content .venue-live-supplier {
  align-items: start;
}
.venue-table-block .venue-info-table th,
.venue-table-block .venue-info-table td {
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  .venue-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .venue-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Round 12: ESG official pages and home YouTube hero support */
.official-left-menu li > span {
  display: block;
  padding: 17px 14px 17px 28px;
  color: var(--official-blue);
  font-size: 17px;
  font-weight: 700;
}
.esg-official-page .official-detail-section {
  min-height: 560px;
}
.esg-content-area .line_top_title {
  margin-bottom: 12px;
}
.esg-lead {
  color: #334;
  font-size: 17px;
  line-height: 1.9;
  margin: 18px 0 26px;
}
.esg-text-block {
  margin: 0 0 26px;
}
.esg-text-block h2 {
  color: var(--official-blue);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
  position: relative;
  padding-left: 15px;
}
.esg-text-block h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  background: var(--official-blue);
}
.esg-text-block p {
  color: #4a5964;
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 12px;
}
.esg-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 28px;
}
.esg-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--official-blue);
  font-weight: 700;
  text-decoration: none;
}
.esg-link-list a:hover,
.esg-link-list a:focus {
  text-decoration: underline;
}
.esg-file-icon {
  font-size: 15px;
}
.esg-cert-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d8e5ea;
}
.esg-cert-list li {
  padding: 15px 0;
  border-bottom: 1px solid #d8e5ea;
}
.esg-cert-list strong {
  display: block;
  color: #12384c;
  font-size: 17px;
  margin-bottom: 6px;
}
.esg-cert-list p {
  margin: 0;
}
.esg-hall-tabs {
  margin: 22px 0 22px;
}
.hero-youtube {
  border: 0;
  object-fit: initial;
  transform: scale(1.12);
  transform-origin: center center;
}
@media (max-width: 767.98px) {
  .esg-text-block h2 { font-size: 18px; }
  .esg-lead, .esg-text-block p { font-size: 15px; }
}
.home-banner-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.home-banner-card {
  display: block;
  overflow: hidden;
  min-height: 180px;
  padding: 0;
  border: 1px solid #dbe6eb;
  border-radius: 0;
  background: #eef5f7;
  text-decoration: none;
}
.home-banner-visual {
  position: relative;
  min-height: 180px;
  background: #0b3346;
}
.home-banner-visual img,
.home-banner-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: block;
  object-fit: cover;
}
.home-banner-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  font-weight: 800;
  letter-spacing: .08em;
}
.home-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 26px;
  background: linear-gradient(90deg, rgba(0,31,54,.74), rgba(0,31,54,.18));
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.home-banner-overlay span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-banner-overlay strong {
  line-height: 1.2;
  font-weight: 900;
}
.home-banner-overlay em {
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
}
.home-banner-overlay b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 8px;
  padding: 8px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  .home-banner-overlay { padding: 20px; }
  .home-banner-overlay strong { font-size: 24px !important; }
}


/* Round 15: Hero without overlay must not show empty badge; keep slide dots centered at bottom. */
@media (max-width: 768px) {
  .home-immersive-hero .hero-dots {
    bottom: 24px;
    gap: 8px;
  }
  .home-immersive-hero .hero-dot {
    width: 28px;
  }
  .home-immersive-hero .hero-dot.is-active {
    width: 42px;
  }
}


/* v23: About / Operator content parity with official pre-revision page */
.official-subpage .official-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #777;
  margin: 26px 0 34px;
  font-size: 14px;
}
.official-subpage .official-breadcrumb a {
  color: #777;
  text-decoration: none;
}
.official-subpage .official-breadcrumb a:hover,
.official-subpage .official-breadcrumb strong {
  color: #111;
  font-weight: 500;
}
.operator-official-content {
  color: #25364a;
}
.operator-blue-visual {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  background: #07316c;
  color: #fff;
  padding: 58px 56px 42px;
  margin-bottom: 34px;
}
.operator-blue-visual::before,
.operator-blue-visual::after {
  content: '';
  position: absolute;
  inset: auto -8% -38% auto;
  width: 58%;
  aspect-ratio: 1 / .52;
  border: 3px solid rgba(255,255,255,.14);
  border-top: 0;
  transform: skewX(-18deg);
}
.operator-blue-visual::before {
  inset: auto auto -38% -10%;
  transform: skewX(18deg);
}
.operator-blue-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.operator-blue-copy h2 {
  color: #fff;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.25;
  letter-spacing: .08em;
  font-weight: 700;
  margin: 0 0 30px;
}
.operator-blue-copy p {
  color: rgba(255,255,255,.92);
  font-size: 18px;
  line-height: 1.9;
  margin: 0;
}
.operator-blue-skyline {
  position: absolute;
  right: 40px;
  bottom: 36px;
  width: min(360px, 40%);
  height: 148px;
  opacity: .95;
  z-index: 1;
}
.operator-building {
  position: absolute;
  bottom: 0;
  display: block;
  border: 4px solid #fff;
  border-top-width: 7px;
}
.operator-building.b1 { left: 0; width: 110px; height: 58px; transform: skewX(-18deg); }
.operator-building.b2 { left: 98px; width: 118px; height: 72px; border-radius: 48% 48% 0 0; }
.operator-building.b3 { right: 50px; width: 72px; height: 94px; transform: skewX(-10deg); }
.operator-tower {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 22px;
  height: 140px;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
}
.operator-tower::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -24px;
  width: 4px;
  height: 28px;
  background: #fff;
  transform: translateX(-50%);
}
.operator-tower::after {
  content: '';
  position: absolute;
  left: -23px;
  right: -23px;
  top: 22px;
  height: 5px;
  background: #fff;
  box-shadow: 0 28px 0 #fff, 0 56px 0 #fff, 0 84px 0 #fff;
}
.operator-core-section {
  margin: 8px 0 38px;
  padding-top: 4px;
}
.operator-core-section h2 {
  color: #006488;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}
.operator-core-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 70px;
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px dashed #d9d9d9;
}
.operator-core-list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.operator-core-list span {
  color: #2f4357;
  font-size: 15px;
  line-height: 1.55;
}
.operator-core-list span::before {
  content: '›';
  color: #006488;
  margin-right: 10px;
  font-weight: 700;
}
.operator-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
  gap: 44px;
  align-items: start;
  margin-top: 36px;
}
.operator-intro-text p {
  color: #263a4d;
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: .03em;
  margin: 0 0 24px;
  text-align: justify;
}
.operator-intro-photo {
  margin: 0;
}
.operator-intro-photo img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
}
@media (max-width: 991px) {
  .operator-blue-visual { padding: 42px 32px; }
  .operator-blue-skyline { opacity: .25; width: 70%; }
  .operator-intro-section { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 767px) {
  .operator-core-list { grid-template-columns: 1fr; gap: 0; }
  .operator-blue-copy h2 { font-size: 30px; }
  .operator-blue-copy p { font-size: 16px; }
}


/* v24: About / Operator pages based on uploaded HTML content */
.operator-digital-content {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  color: #1f3440;
  border: 1px solid #d7e8ee;
  border-left: 5px solid #007391;
  border-radius: 8px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 18px 42px rgba(13, 72, 93, .10);
}
.operator-digital-content--has-hero-image {
  background: transparent;
  border: 0;
  border-left: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.operator-digital-hero {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 54px 26px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef8fb 0%, #dceff5 100%);
  border: 1px solid #d7e8ee;
  box-shadow: 0 12px 28px rgba(13, 72, 93, .12);
}
.operator-digital-hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -260px;
  background: radial-gradient(circle, rgba(56,189,248,.28), rgba(56,189,248,0) 62%);
}
.operator-digital-hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -230px;
  background: radial-gradient(circle, rgba(52,211,153,.20), rgba(52,211,153,0) 64%);
}
.operator-digital-hero--image {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.operator-digital-hero--image::before,
.operator-digital-hero--image::after {
  content: none;
}
.operator-digital-hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #d7e8ee;
  box-shadow: 0 14px 30px rgba(13, 72, 93, .12);
}
.operator-digital-content--has-hero-image .operator-digital-hero {
  margin-bottom: 26px;
}
.operator-digital-content--has-hero-image .operator-digital-hero-image {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.operator-digital-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.operator-digital-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 4px 18px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #006b82;
  border: 1px solid rgba(0, 115, 145, .22);
  letter-spacing: .12em;
  font-weight: 700;
}
.operator-digital-hero h2 {
  color: #173744;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: .08em;
  margin: 0 0 18px;
}
.operator-digital-hero p {
  color: #526976;
  font-size: 18px;
  line-height: 1.9;
  margin: 0;
}
.operator-glass-panel {
  background: #fff;
  border: 1px solid #d7e8ee;
  border-radius: 8px;
  padding: clamp(22px, 2.6vw, 30px);
  margin-bottom: 24px;
  box-shadow: 0 12px 28px rgba(13, 72, 93, .08);
}
.operator-glass-panel h2 {
  color: #006b82;
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dcebf0;
}
.operator-glass-panel p {
  color: #4f6370;
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: .01em;
  text-align: justify;
  margin: 0 0 16px;
}
.operator-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.operator-service-card {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 14px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfd 100%);
  border: 1px solid #dcebf0;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.operator-service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  background: #00a69c;
}
.operator-service-card:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: #a8d2dd;
  box-shadow: 0 10px 22px rgba(13, 72, 93, .10);
}
.operator-service-card span {
  color: #173744;
  font-size: 16px;
  font-weight: 600;
}
.operator-supplementary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.operator-mini-panel {
  margin-bottom: 0;
}
.operator-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(300px, 1.02fr);
  align-items: center;
  gap: 28px;
}
.operator-intro-copy {
  min-width: 0;
}
.operator-intro-copy p:last-child {
  margin-bottom: 0;
}
.operator-intro-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #d7e8ee;
  background: #f6fbfd;
  box-shadow: 0 12px 26px rgba(13, 72, 93, .12);
}
.operator-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 460px;
  object-fit: cover;
}

.about-hall-intro-content {
  color: #344054;
}
.about-hall-main-title {
  text-align: center;
  color: #24364b;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.35;
  margin: 4px 0 34px;
  padding-bottom: 18px;
  border-bottom: 3px solid #2f8fc7;
}
.about-hall-block,
.about-eco-block {
  background: #fff;
  border: 1px solid #e6eef5;
  border-radius: 16px;
  padding: 34px;
  margin-bottom: 34px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.about-hall-block h2,
.about-eco-block h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f78a8;
  background: #f0f8ff;
  border-left: 5px solid #3498db;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.45;
}
.about-hall-block p,
.about-eco-block p,
.about-eco-block li {
  color: #3f4f5f;
  font-size: 16px;
  line-height: 2;
  letter-spacing: .02em;
  text-align: justify;
}
.about-hall-block p,
.about-eco-block p {
  margin: 0 0 16px;
}
.about-hall-image {
  margin: 0 0 24px;
  text-align: center;
}
.about-hall-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15,23,42,.13);
}
.about-hall-image figcaption {
  color: #7f8c8d;
  font-size: 14px;
  font-style: italic;
  margin-top: 10px;
}
.about-eco-block {
  background: #fff;
  border-color: #c8e6c9;
}
.about-eco-block h2 {
  color: #23945a;
  background: transparent;
  border-left-color: #27ae60;
  padding-top: 0;
  padding-bottom: 0;
}
.about-eco-block h3 {
  display: inline-block;
  color: #16a085;
  font-size: 19px;
  line-height: 1.55;
  margin: 20px 0 10px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #16a085;
}
.about-eco-block ul {
  margin: 0 0 14px;
  padding-left: 22px;
}
.about-eco-block li {
  margin-bottom: 9px;
}
.about-eco-block strong {
  color: #145f48;
}
.about-eco-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 24px;
}
.about-eco-gallery__item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 160, 133, .28);
  background: #fff;
  box-shadow: 0 8px 18px rgba(20, 95, 72, .09);
}
.about-eco-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.about-eco-item-figure {
  display: block;
  width: min(360px, 100%);
  margin: 10px 0 16px;
  overflow: hidden;
  border: 1px solid rgba(22, 160, 133, .28);
  background: #fff;
  box-shadow: 0 10px 22px rgba(20, 95, 72, .10);
}
.about-eco-item-figure img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .operator-digital-content { padding: 22px; }
  .operator-intro-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .operator-intro-photo img {
    min-height: 260px;
  }
  .operator-supplementary-grid { grid-template-columns: 1fr; }
  .about-hall-block,
  .about-eco-block { padding: 26px; }
}
@media (max-width: 767px) {
  .operator-digital-hero { min-height: 220px; padding: 40px 18px; }
  .operator-digital-hero h2 { font-size: 30px; }
  .operator-glass-panel { padding: 24px; }
  .about-hall-block,
  .about-eco-block { padding: 22px; border-radius: 12px; }
  .about-eco-gallery { grid-template-columns: 1fr; gap: 12px; }
}


/* v25 floor-map hall selector */
.floor-map-content {
  margin-top: 18px;
}
.floor-map-hall-tab {
  margin: 4px 0 24px;
}
.floor-map-hall-tab .home-hall-tab {
  min-width: 132px;
  font-weight: 800;
}
.floor-map-feature-image {
  margin-top: 0;
  overflow: hidden;
  border: 1px solid #d7e8ee;
  background: #fff;
}
.floor-map-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}
@media (max-width: 760px) {
  .floor-map-hall-tab { width: 100%; }
  .floor-map-hall-tab .home-hall-tab { flex: 1 1 0; min-width: 0; }
}


/* Round 26: ESG ISO 20121 / friendly program media blocks */
.esg-hero-image-wrap {
  margin: 22px 0 30px;
  padding: 18px;
  border: 1px solid #d7e8ee;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 80, 110, .08);
}
.esg-hero-image {
  display: block;
  width: 100%;
  max-width: 860px;
  height: auto;
  margin: 0 auto;
}
.esg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 30px;
}
.esg-gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid #d7e8ee;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 80, 110, .08);
}
.esg-gallery-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.esg-link-list a {
  padding: 10px 14px;
  border: 1px solid #bfd8e2;
  border-radius: 4px;
  background: #f7fbfd;
}
.esg-link-list a:hover,
.esg-link-list a:focus {
  background: #eaf5f8;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .esg-gallery-grid {
    grid-template-columns: 1fr;
  }
  .esg-gallery-card img {
    height: auto;
  }
  .esg-hero-image-wrap {
    padding: 10px;
  }
}


/* ESG 建築相關設施合格認證：1館 / 2館標章與文件 */
.official-hall-tabs {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin: 22px 0 22px;
  padding: 3px;
  border: 1px solid #d6e6ec;
  background: #eef6f8;
}
.official-hall-tabs .home-hall-tab {
  position: relative;
  --home-hall-tab-color: #7a8b92;
  min-width: 86px;
  height: 34px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: var(--home-hall-tab-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  text-decoration: none;
  opacity: .68;
  transition: background .15s ease, opacity .15s ease, transform .15s ease;
}
.official-hall-tabs .home-hall-tab:first-child {
  --home-hall-tab-color: var(--official-blue);
  background: var(--official-blue);
}
.official-hall-tabs .home-hall-tab:nth-child(2) {
  --home-hall-tab-color: var(--official-teal);
  background: var(--official-teal);
}
.official-hall-tabs .home-hall-tab.is-active {
  opacity: 1;
}
.official-hall-tabs .home-hall-tab.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid var(--home-hall-tab-color);
}
.official-hall-tabs .home-hall-tab:hover,
.official-hall-tabs .home-hall-tab:focus {
  opacity: .92;
  color: #fff;
  transform: translateY(-1px);
}
.official-hall-tabs .home-hall-tab.is-active:hover,
.official-hall-tabs .home-hall-tab.is-active:focus {
  opacity: 1;
}
.public-art-content {
  margin-top: 28px;
}
.public-art-hall-tabs {
  margin-top: 0;
  margin-bottom: 30px;
}
.public-art-works {
  display: grid;
  gap: 34px;
}
.public-art-work {
  padding: 0 0 32px;
  border-bottom: 1px dashed #d8e2e6;
}
.public-art-work:last-child {
  border-bottom: 0;
}
.public-art-work__head {
  margin-bottom: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid #edf3f5;
}
.public-art-work__head h2 {
  margin: 0;
  color: #333;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
}
.public-art-work__author {
  margin: 8px 0 0;
  color: #7c878d;
  font-size: 15px;
  line-height: 1.6;
}
.public-art-work__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: 28px;
  align-items: start;
}
.public-art-work__copy p {
  margin: 0 0 14px;
  color: #666;
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0;
}
.public-art-work__meta {
  margin: 0;
  padding: 18px 20px;
  border-left: 5px solid var(--official-blue);
  background: #f0f7f9;
  color: #56656d;
}
.public-art-work__meta div + div {
  margin-top: 10px;
}
.public-art-work__meta dt {
  display: inline;
  color: var(--official-blue);
  font-weight: 700;
}
.public-art-work__meta dt::after {
  content: "：";
}
.public-art-work__meta dd {
  display: inline;
  margin: 0;
  line-height: 1.7;
}
.public-art-work__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.public-art-work__figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #d7e3e8;
  background: #f7fafb;
}
.public-art-work__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (max-width: 991px) {
  .public-art-work__body {
    grid-template-columns: 1fr;
  }
  .public-art-work__meta {
    max-width: 520px;
  }
}
@media (max-width: 640px) {
  .public-art-hall-tabs {
    width: 100%;
  }
  .public-art-hall-tabs .home-hall-tab {
    flex: 1 1 0;
    min-width: 0;
  }
  .public-art-work__head h2 {
    font-size: 22px;
  }
  .public-art-work__copy p {
    font-size: 16px;
    line-height: 1.9;
  }
  .public-art-work__gallery {
    grid-template-columns: 1fr;
  }
}
.esg-license-section {
  margin-top: 10px;
}
.esg-license-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}
.esg-license-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 22px;
  padding: 22px 0;
  border-top: 1px dashed #c9d8de;
}
.esg-license-card:first-child {
  border-top: 0;
  padding-top: 0;
}
.esg-license-copy h3 {
  display: inline-block;
  margin: 0 0 10px;
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--official-blue);
  color: var(--official-blue);
  font-size: 18px;
  font-weight: 800;
}
.esg-license-copy p {
  margin: 0 0 12px;
  color: #4a5964;
  font-size: 15.5px;
  line-height: 1.9;
}
.esg-license-docs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.esg-license-docs a,
.esg-license-doc-text {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--official-blue);
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
}
.esg-license-docs a:hover,
.esg-license-docs a:focus {
  text-decoration: underline;
}
.esg-license-image {
  margin: 0;
  align-self: start;
}
.esg-license-image img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border: 1px solid #dce8ec;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 50, 70, .08);
}
@media (max-width: 991.98px) {
  .esg-license-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .official-hall-tabs {
    display: flex;
    width: 100%;
  }
  .official-hall-tabs .home-hall-tab {
    flex: 1 1 0;
    min-width: 0;
  }
}


/* Round 31: official public facilities floor map parity */
.public-facilities-page .official-left-menu li a {
  text-decoration: none;
}
.public-facilities-page .facilities-floor-tab {
  margin-bottom: 24px;
}
.facilities-map-panel {
  width: 100%;
  max-width: 800px;
  background: #777;
  border: 1px solid #d7d7d7;
  overflow: hidden;
  margin: 0 0 34px;
}
.facilities-legend {
  display: grid;
  grid-template-columns: repeat(4, minmax(135px, 1fr));
  gap: 10px 22px;
  padding: 20px 18px 16px;
  background: #e7e7e7;
  color: #111;
  font-size: 15px;
  line-height: 1.35;
}
.facility-legend-item {
  display: flex;
  align-items: center;
  min-height: 28px;
  gap: 8px;
  white-space: nowrap;
}
.facility-legend-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background: #de5a2b;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}
.facilities-map-figure {
  margin: 0;
  background: #777;
  text-align: center;
}
.facilities-map-figure img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  background: #777;
}
.public-facilities-page .hall_tab,
.public-facilities-page .trans_item {
  max-width: 800px;
}
@media (max-width: 991.98px) {
  .facilities-legend { grid-template-columns: repeat(2, minmax(135px, 1fr)); }
}
@media (max-width: 575.98px) {
  .facilities-legend { grid-template-columns: 1fr; }
  .facility-legend-item { white-space: normal; }
}


/* Round 32: public facilities maps now use full floor images from front tainex_asset_store */
.public-facilities-page .facilities-map-panel {
  max-width: 800px;
  background: transparent;
  border: 0;
  overflow: visible;
}
.public-facilities-page .facilities-map-figure {
  background: transparent;
}
.public-facilities-page .facilities-map-figure img {
  background: transparent;
}

/* Round 31: ESG PDF downloads match application-file style, and ESG image lightbox */
.esg-doc-block {
  margin: 22px 0 30px;
}
.esg-doc-list,
.venue-doc-list.esg-license-docs {
  width: 100%;
  margin: 0 0 26px;
  padding: 0;
  border-top: 1px dotted #ccd8de;
}
.esg-doc-list li,
.venue-doc-list.esg-license-docs li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dotted #ccd8de;
}
.venue-doc-list.esg-license-docs {
  display: block;
  flex-direction: initial;
  gap: 0;
  margin-top: 8px;
}
.venue-doc-list.esg-license-docs a,
.venue-doc-list.esg-license-docs .esg-license-doc-text {
  color: #006f88;
  font-weight: 600;
  line-height: 1.65;
  text-decoration: none;
}
.venue-doc-list.esg-license-docs a:hover,
.venue-doc-list.esg-license-docs a:focus,
.esg-doc-list a:hover,
.esg-doc-list a:focus {
  color: #003b50;
  text-decoration: underline;
}
.js-esg-lightbox-image {
  cursor: zoom-in;
}
.js-esg-lightbox-image:focus-visible {
  outline: 3px solid rgba(0, 111, 136, .42);
  outline-offset: 4px;
}
body.has-esg-lightbox {
  overflow: hidden;
}

/* Round 16: 移除內頁左右兩側灰色裝飾長條，避免被誤認為破圖 */
.official-detail-section .container::before,
.official-detail-section .container::after {
  display: none !important;
  content: none !important;
  background: none !important;
}
.esg-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 28px;
}
.esg-image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 22, 32, .78);
}
.esg-image-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1120px, 94vw);
  height: min(820px, 88vh);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(8, 25, 34, .94);
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
}
.esg-image-lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,.08);
}
.esg-image-lightbox-toolbar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}
.esg-image-lightbox-toolbar button:hover,
.esg-image-lightbox-toolbar button:focus {
  background: rgba(255,255,255,.18);
  outline: none;
}
.esg-image-lightbox-stage {
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 22px;
}
.esg-image-lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(var(--esg-lightbox-scale, 1));
  transform-origin: center center;
  transition: transform .15s ease;
  user-select: none;
}
@media (max-width: 767.98px) {
  .esg-image-lightbox {
    padding: 14px;
  }
  .esg-image-lightbox-panel {
    width: 96vw;
    height: 86vh;
  }
  .esg-image-lightbox-stage {
    padding: 14px;
  }
  .esg-doc-list li,
  .venue-doc-list.esg-license-docs li {
    align-items: flex-start;
  }
}

/* Round 32: media center news detail aligned with legacy official layout */
body[data-page="news-detail"] .official-page-banner.page_banner {
  margin-top: 0;
}

body[data-page="news-detail"] .official-detail-section {
  padding: 0 0 82px;
  background: #fafafa;
}

body[data-page="news-detail"] .official-detail-section .container {
  width: min(1074px, calc(100% - 48px));
  max-width: 1074px;
}

.official-news-detail-page .bread_crumb {
  margin: 30px 0 28px;
  color: #707070;
  font-size: 14px;
  letter-spacing: .04em;
}

.official-news-detail-page .bread_crumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.official-news-detail-page .bread_crumb li {
  margin-right: 0;
}

.official-news-detail-page .bread_crumb a {
  color: #707070;
}

.official-news-detail-page .bread_crumb a:hover,
.official-news-detail-page .official-news-content a {
  color: #0088c7;
}

.official-news-detail {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0 0 30px;
}

.official-news-detail .official-news-detail-title {
  color: #103247;
  font-size: clamp(28px, 2.55vw, 36px);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: .07em;
  margin: 0 0 24px;
}

.official-news-detail .official-news-title-line {
  height: 4px;
  margin: 0 0 32px;
  background: #e7e7e7;
}

.official-news-detail .official-news-title-line .blue_line {
  height: 4px;
  width: 100%;
  background: #bed5de;
}

.official-news-detail .official-news-detail-meta {
  margin: 0 0 24px;
  min-height: 28px;
}

.official-news-detail .new_ed_list,
.official-news-detail .new_ed_list2,
.official-news-detail .new_ed_list3 {
  min-width: 38px;
  height: 24px;
  padding: 0 8px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.official-news-detail .new_ed_hall {
  font-size: 13px;
  line-height: 24px;
  font-weight: 700;
}

.official-news-detail .new_ed_date {
  color: #505050;
  font-size: 14px;
  margin-left: auto;
  letter-spacing: .03em;
}

.official-news-content {
  color: #414141;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: .10em;
  word-break: break-word;
}

.official-news-content p {
  margin: 0 0 20px;
}

.official-news-content ul,
.official-news-content ol {
  margin: 0 0 22px 1.5em;
  padding: 0;
}

.official-news-content li {
  margin-bottom: 10px;
}

.official-news-content img {
  max-width: 100%;
  height: auto;
  margin: 18px 0;
}

.official-news-content table {
  min-width: 0;
  margin: 18px 0;
  background: #fff;
}

.official-news-content th,
.official-news-content td {
  border: 1px solid #d8e3e7;
  padding: 10px 12px;
}

@media (max-width: 768px) {
  body[data-page="news-detail"] .official-detail-section .container {
    width: min(100% - 32px, 1074px);
  }

  .official-news-detail-page .bread_crumb {
    margin: 22px 0 22px;
    font-size: 13px;
  }

  .official-news-detail .official-news-detail-title {
    font-size: 26px;
    letter-spacing: .03em;
    line-height: 1.5;
  }

  .official-news-detail .official-news-detail-meta {
    align-items: flex-start;
  }

  .official-news-detail .new_ed_date {
    flex-basis: 100%;
    margin-left: 0;
    margin-top: 6px;
  }

  .official-news-content {
    font-size: 15px;
    line-height: 2.05;
    letter-spacing: .04em;
  }
}

/* === Round33: Media center news badge / readmore / back button enhancement === */
.official-news-meta,
.official-news-detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.official-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  border: 1px solid #d8e7ee;
  background: linear-gradient(180deg, #ffffff 0%, #f4fafc 100%);
  box-shadow: 0 6px 14px rgba(16, 73, 99, .08);
}

.official-chip__icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.official-chip__icon--category::before {
  content: '';
  position: absolute;
  inset: 1px 2px 1px 1px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.official-chip__icon--category::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 1px;
  width: 4px;
  height: 4px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
}

.official-chip__icon--hall::before {
  content: '';
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 2px 2px 1px 1px;
}

.official-chip__icon--hall::after {
  content: '';
  position: absolute;
  top: 0;
  left: 3px;
  width: 8px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
}

.official-chip.new_ed_list,
.official-chip.new_ed_list2,
.official-chip.new_ed_list3 {
  min-width: auto;
  height: 32px;
  padding: 0 14px;
  color: #fff;
  border: 0;
  box-shadow: 0 8px 18px rgba(0, 46, 121, .18);
}

.official-chip.new_ed_list {
  background: linear-gradient(135deg, #0c3d8c 0%, #0f5eb0 100%);
}

.official-chip.new_ed_list2 {
  background: linear-gradient(135deg, #00889c 0%, #10a6ba 100%);
}

.official-chip.new_ed_list3 {
  background: linear-gradient(135deg, #1c5d8f 0%, #287fb5 100%);
}

.official-chip.new_ed_hall {
  min-width: auto;
  height: 32px;
  margin-right: 0;
  border-width: 1px;
}

.official-chip.new_ed_hall.blue {
  color: #0b5d8d;
  border-color: rgba(11, 93, 141, .18);
  background: linear-gradient(180deg, #ffffff 0%, #edf7fb 100%);
}

.official-chip.new_ed_hall.blue_d {
  color: #008aa2;
  border-color: rgba(0, 138, 162, .18);
  background: linear-gradient(180deg, #ffffff 0%, #edfafa 100%);
}

.official-chip.official-chip--hall.new_ed_hall {
  gap: 0;
  min-width: 50px;
  height: 32px;
  min-height: 32px;
  margin-right: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(0, 46, 121, .12);
}

.official-chip.official-chip--hall.new_ed_hall .official-chip__icon--hall {
  display: none;
}

.official-chip.official-chip--hall.new_ed_hall.blue {
  color: #fff;
  background: var(--official-blue);
}

.official-chip.official-chip--hall.new_ed_hall.blue_d {
  color: #fff;
  background: var(--official-teal);
}

.official-meta-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0;
  color: #6c7b83;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .03em;
}

.official-meta-date::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #9bb9c6;
  border-radius: 4px;
  box-sizing: border-box;
  background: linear-gradient(#9bb9c6, #9bb9c6) 2px 4px/10px 2px no-repeat,
              linear-gradient(#9bb9c6, #9bb9c6) 4px 0/2px 4px no-repeat,
              linear-gradient(#9bb9c6, #9bb9c6) 10px 0/2px 4px no-repeat;
}

.official-news-list .news_readmore {
  margin-top: 14px;
}

.official-news-list .news_readmore span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(11, 93, 141, .18);
  background: linear-gradient(180deg, #ffffff 0%, #f2f9fc 100%);
  box-shadow: 0 6px 14px rgba(16, 73, 99, .08);
  color: var(--official-blue);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.official-news-list .news_readmore span::after {
  content: '→';
  font-size: 16px;
  line-height: 1;
  transition: transform .2s ease;
}

.official-news-list .news_od a:hover .news_readmore span {
  color: var(--official-teal);
  border-color: rgba(0, 137, 161, .26);
  box-shadow: 0 10px 20px rgba(0, 137, 161, .12);
  transform: translateY(-1px);
}

.official-news-list .news_od a:hover .news_readmore span::after {
  transform: translateX(3px);
}

.official-news-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 18px;
}

.official-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(11, 93, 141, .18);
  background: linear-gradient(180deg, #ffffff 0%, #f2f9fc 100%);
  box-shadow: 0 8px 18px rgba(16, 73, 99, .08);
  color: var(--official-blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}

.official-back-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(11, 93, 141, .1);
  color: inherit;
  font-size: 14px;
  line-height: 1;
}

.official-back-btn:hover {
  color: var(--official-teal);
  border-color: rgba(0, 137, 161, .26);
  box-shadow: 0 12px 22px rgba(0, 137, 161, .12);
  transform: translateY(-1px);
}

.official-news-detail .official-news-detail-meta {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .official-chip,
  .official-chip.new_ed_list,
  .official-chip.new_ed_list2,
  .official-chip.new_ed_list3,
  .official-chip.new_ed_hall {
    min-height: 30px;
    height: 30px;
    padding: 0 12px;
    font-size: 13px;
  }

  .official-meta-date {
    min-height: auto;
    margin-top: 4px;
  }

  .official-back-btn {
    width: 100%;
    justify-content: center;
  }
}

/* === Round34: Media center filter dropdown pill style === */
.official-filter-bar {
  gap: 12px;
}

.official-dropdown {
  position: relative;
}

.official-dropdown > button {
  position: relative;
  border: 1px solid rgba(11, 93, 141, .18);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f9fc 100%);
  color: #34505f;
  min-width: 94px;
  min-height: 42px;
  padding: 0 42px 0 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 8px 18px rgba(16, 73, 99, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.official-dropdown > button:hover,
.official-dropdown:focus-within > button {
  color: var(--official-blue);
  border-color: rgba(0, 137, 161, .26);
  box-shadow: 0 12px 24px rgba(0, 137, 161, .12);
  transform: translateY(-1px);
}

.official-dropdown > button::after {
  right: 16px;
  margin-top: -3px;
  border-top: 6px solid #6c8795;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transition: transform .2s ease, border-top-color .2s ease;
}

.official-dropdown:hover > button::after,
.official-dropdown:focus-within > button::after {
  border-top-color: var(--official-blue);
  transform: rotate(180deg);
}

.official-dropdown-menu {
  margin-top: 8px;
  min-width: 100%;
  border: 1px solid rgba(11, 93, 141, .14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(16, 73, 99, .14);
}

.official-dropdown-menu a {
  padding: 10px 18px;
}

@media (max-width: 768px) {
  .official-dropdown {
    width: calc(50% - 6px);
  }

  .official-dropdown > button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .official-dropdown {
    width: 100%;
  }
}


/* === Round35: Public facilities legacy icon legend === */
.public-facilities-page .facilities-map-panel {
  width: 100%;
  max-width: 800px;
  margin: 0 0 34px;
  border: 0;
  overflow: hidden;
  box-shadow: none;
}

.public-facilities-page .facilities-map-panel--hall1 {
  background: #777;
}

.public-facilities-page .facilities-map-panel--hall2 {
  background: #fff;
}

.public-facilities-page .facilities-legend {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 8px 30px;
  padding: 22px 18px 20px;
  color: #111;
  font-size: 14px;
  line-height: 1.35;
  border: 0;
}

.public-facilities-page .facilities-map-panel--hall1 .facilities-legend {
  background: #e6e6e6;
}

.public-facilities-page .facilities-map-panel--hall2 .facilities-legend {
  background: #fff;
}

.public-facilities-page .facility-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  white-space: nowrap;
  letter-spacing: .02em;
}

.public-facilities-page .facility-legend-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
  overflow: visible;
}

.public-facilities-page .facility-legend-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.public-facilities-page .facilities-map-figure {
  margin: 0;
  text-align: center;
}

.public-facilities-page .facilities-map-panel--hall1 .facilities-map-figure {
  background: #777;
}

.public-facilities-page .facilities-map-panel--hall2 .facilities-map-figure {
  background: #fff;
}

.public-facilities-page .facilities-map-figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: transparent;
}

@media (max-width: 991.98px) {
  .public-facilities-page .facilities-legend {
    grid-template-columns: repeat(2, minmax(145px, 1fr));
  }
}

@media (max-width: 575.98px) {
  .public-facilities-page .facilities-legend {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 16px;
  }

  .public-facilities-page .facility-legend-item {
    white-space: normal;
  }
}


/* === Round35: Public facilities legacy icon legend === */
.public-facilities-page .facilities-map-panel {
  width: 100%;
  max-width: 800px;
  margin: 0 0 34px;
  border: 0;
  overflow: hidden;
  background: #777;
}

.public-facilities-page .facilities-map-panel--hall2 {
  background: #fff;
}

.public-facilities-page .facilities-legend {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 30px;
  padding: 22px 18px 20px;
  background: #e6e6e6;
  color: #111;
  font-size: 15px;
  line-height: 1.35;
}

.public-facilities-page .facilities-map-panel--hall2 .facilities-legend {
  background: #f1f1f1;
}

.public-facilities-page .facility-legend-item {
  display: flex;
  align-items: center;
  min-height: 27px;
  gap: 9px;
  white-space: nowrap;
}

.public-facilities-page .facility-legend-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 0;
  line-height: 1;
  box-shadow: none;
}

.public-facilities-page .facility-legend-icon img {
  display: block;
  width: 28px;
  height: 28px;
  max-width: none;
  object-fit: contain;
}

.public-facilities-page .facility-legend-icon img[src$="facility-h1-taxi.svg"],
.public-facilities-page .facility-legend-icon img[src$="facility-h1-mrt.svg"] {
  width: 34px;
  min-width: 34px;
}

.public-facilities-page .facility-legend-icon--text {
  font-size: 15px;
  color: #fff;
  background: #df5a2f;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}

.public-facilities-page .facilities-map-figure {
  margin: 0;
  background: transparent;
  text-align: center;
}

.public-facilities-page .facilities-map-figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: transparent;
}

@media (max-width: 991.98px) {
  .public-facilities-page .facilities-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .public-facilities-page .facilities-legend {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 18px 16px;
  }

  .public-facilities-page .facility-legend-item {
    white-space: normal;
  }
}

/* === Round35b: Public facilities icon fallback style === */
.public-facilities-page .facility-legend-icon--text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #de5a2b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

.public-facilities-page .facilities-map-panel--hall2 .facility-legend-icon--text {
  background: #2aa9c7;
}

/* === Round36: Public facilities legend matches legacy icon-layout screenshots === */
.public-facilities-page .facilities-map-panel {
  width: 100%;
  max-width: 800px;
  margin: 0 0 34px;
  border: 0;
  overflow: hidden;
  box-shadow: none;
}

.public-facilities-page .facilities-map-panel--hall1 {
  background: #777;
}

.public-facilities-page .facilities-map-panel--hall2 {
  background: #fff;
}

.public-facilities-page .facilities-legend {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  column-gap: 30px;
  row-gap: 4px;
  padding: 22px 16px 20px;
  color: #111;
  font-size: 14px;
  line-height: 1.35;
  border: 0;
}

.public-facilities-page .facilities-map-panel--hall1 .facilities-legend {
  background: #e6e6e6;
}

.public-facilities-page .facilities-map-panel--hall2 .facilities-legend {
  background: #f1f1f1;
}

.public-facilities-page .facility-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  white-space: nowrap;
  letter-spacing: .01em;
}

.public-facilities-page .facility-legend-icon {
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 0;
  line-height: 1;
  box-shadow: none;
  overflow: visible;
}

.public-facilities-page .facility-legend-icon img {
  display: block;
  width: 28px;
  height: 28px;
  max-width: none;
  object-fit: contain;
}

.public-facilities-page .facility-legend-icon img[src$="facility-h1-mrt.png"],
.public-facilities-page .facility-legend-icon img[src$="facility-h1-taxi.png"] {
  object-fit: contain;
}

.public-facilities-page .facility-legend-icon--text {
  font-size: 11px;
  color: #fff;
  background: #de5a2b;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

.public-facilities-page .facilities-map-panel--hall2 .facility-legend-icon--text {
  background: #2aa9c7;
}

.public-facilities-page .facilities-map-figure {
  margin: 0;
  background: transparent;
  text-align: center;
}

.public-facilities-page .facilities-map-figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: transparent;
}

@media (max-width: 991.98px) {
  .public-facilities-page .facilities-legend {
    grid-template-columns: repeat(2, minmax(145px, 1fr));
    row-gap: 8px;
  }
}

@media (max-width: 575.98px) {
  .public-facilities-page .facilities-legend {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 18px 16px;
  }

  .public-facilities-page .facility-legend-item {
    white-space: normal;
  }
}


/* === Round35: Public facilities legacy-icon legend and transportation pills === */
.public-facilities-page .facilities-map-panel {
  max-width: 808px;
}

.public-facilities-page .facilities-legend {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 12px 14px;
  padding: 22px 20px;
  background: linear-gradient(180deg, #f8fbfc 0%, #eef5f7 100%);
  border: 1px solid #d7e8ee;
  border-radius: 18px 18px 0 0;
  color: #203642;
  box-shadow: 0 14px 28px rgba(16, 73, 99, .08);
}

.public-facilities-page .facility-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(11, 93, 141, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 6px 14px rgba(16, 73, 99, .06);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}

.public-facilities-page .facility-legend-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.public-facilities-page .facility-legend-icon img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.public-facilities-page .facility-legend-icon--text {
  background: var(--official-blue);
  color: #fff;
}

.public-facilities-page .facilities-map-figure {
  border: 1px solid #d7e8ee;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}

.transport-content-card {
  padding-top: 28px;
}

.transport-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0 0 24px;
  border-bottom: 1px solid #e0edf2;
}

.transport-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 137, 161, .22);
  background: linear-gradient(180deg, #ffffff 0%, #f2f9fc 100%);
  color: #174458;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(16, 73, 99, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.transport-pill:hover {
  color: var(--official-teal);
  border-color: rgba(0, 137, 161, .34);
  box-shadow: 0 12px 24px rgba(0, 137, 161, .14);
  transform: translateY(-1px);
}

.transport-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0089a1 0%, #0bb4c7 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}

.transport-pill-icon img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  display: block;
}

.transport-content-card .content-section {
  scroll-margin-top: 120px;
}

@media (max-width: 991.98px) {
  .public-facilities-page .facilities-legend {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 575.98px) {
  .public-facilities-page .facilities-legend {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .transport-pill {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Round 17: official transportation page content restored from legacy frontend */
.transportation-page .transportation-breadcrumb {
  margin: 28px 0 26px;
  font-size: 14px;
  color: #666;
}
.transportation-page .transportation-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.transportation-page .official-transportation-tabs {
  margin-bottom: 30px;
}
.transportation-page .tficc,
.transportation-page .tficc_ti,
.transportation-page .onder_dotelist,
.transportation-page .park_bggreen,
.transportation-page .park_bggreen2 {
  list-style: none;
  margin: 0;
  padding: 0;
}
.transportation-page .tficc {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--official-blue);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  padding: 0 0 12px;
  margin: 0 0 18px;
  border-bottom: 1px dashed #d4d4d4;
}
.transportation-page .bus_icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.transportation-page .bus_icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
.transportation-page .googlemap {
  width: 100%;
  margin: 0 0 30px;
  background: #eef3f5;
  overflow: hidden;
}
.transportation-page .googlemap iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
}
.transportation-page .tficc_ti {
  color: var(--official-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  margin: 8px 0 8px;
}
.transportation-page .onder_dotelist {
  color: #444;
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 28px;
}
.transportation-page .onder_dotelist > li {
  position: relative;
  padding-left: 22px;
  margin: 0 0 4px;
}
.transportation-page .onder_dotelist > li::before {
  content: '>';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--official-blue);
  font-weight: 700;
}
.transportation-page .aboutcontent {
  color: #555;
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 22px;
}
.transportation-page .transportation-station-list .aboutcontent,
.transportation-page .onder_list_title .aboutcontent {
  margin: 6px 0 20px 18px;
}
.transportation-page .aboutpic {
  width: 100%;
  max-width: 920px;
  margin: 26px 0 0;
  background: #fff;
  overflow: hidden;
}
.transportation-page .aboutpic a {
  display: block;
}
.transportation-page .aboutpic img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.transportation-page .transportation-route-map {
  max-width: 920px;
  margin-top: 24px;
}
.transportation-page .bus_logo {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #fff;
}
.transportation-page .bus_logo img {
  max-width: min(280px, 100%);
  max-height: 150px;
  object-fit: contain;
}
.transportation-page .park_bggreen,
.transportation-page .park_bggreen2 {
  display: inline-flex;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 16px;
  margin: 0 0 14px;
}
.transportation-page .park_bggreen { background: #009a43; }
.transportation-page .park_bggreen2 { background: #00a0a8; }
.transportation-page .col-md-10,
.transportation-page .col-lg-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.transportation-page .col-md-12,
.transportation-page .col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .transportation-page .col-md-10,
  .transportation-page .col-lg-10 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .transportation-page .trans_item li {
    padding: 0 12px;
    font-size: 14px;
  }
  .transportation-page .googlemap iframe {
    height: 300px;
  }
}

/* === Round38: Media center filters use the same flat tab style as transportation tabs === */
.media-center-page .official-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2px;
  margin: 0 0 30px;
}

.media-center-page .official-dropdown {
  position: relative;
  display: inline-block;
  width: auto;
}

.media-center-page .official-dropdown > button {
  position: relative;
  min-width: 96px;
  min-height: 40px;
  padding: 0 38px 0 18px;
  border: 0;
  border-radius: 0;
  background: #aaa;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: .02em;
  box-shadow: none;
  transform: none;
}

.media-center-page .official-dropdown.is-active > button,
.media-center-page .official-dropdown > button:hover,
.media-center-page .official-dropdown:focus-within > button {
  background: var(--official-blue);
  color: #fff;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.media-center-page .official-dropdown > button::after {
  right: 14px;
  margin-top: -2px;
  border-top: 5px solid #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  transition: transform .18s ease;
}

.media-center-page .official-dropdown:hover > button::after,
.media-center-page .official-dropdown:focus-within > button::after {
  border-top-color: #fff;
  transform: rotate(180deg);
}

.media-center-page .official-dropdown-menu {
  top: 100%;
  margin-top: 2px;
  min-width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.media-center-page .official-dropdown-menu a {
  padding: 10px 16px;
  color: #333;
  background: #fff;
}

.media-center-page .official-dropdown-menu a:hover,
.media-center-page .official-dropdown-menu a:focus {
  color: #fff;
  background: var(--official-blue);
}

@media (max-width: 767.98px) {
  .media-center-page .official-dropdown > button {
    min-width: 86px;
    padding-right: 34px;
    padding-left: 14px;
    font-size: 14px;
  }
}


/* Round 18: legacy venue public / VIP / function-room content */
.legacy-venue-content-wrap {
  overflow: visible;
}
.legacy-venue-content {
  color: var(--official-text);
  line-height: 1.75;
}
.legacy-venue-content .onder_title {
  margin: 0 0 14px;
  color: var(--official-blue);
  font-size: 20px;
  font-weight: 700;
}
.legacy-venue-content .onder_list_title,
.legacy-venue-content .onder_dotelist,
.legacy-venue-content .room_title,
.legacy-venue-content .download_goto {
  list-style: none;
  padding: 0;
}
.legacy-venue-content .onder_dotelist {
  margin: 0 0 22px;
  color: #4b4b4b;
}
.legacy-venue-content .onder_dotelist li {
  margin: 6px 0;
}
.legacy-venue-content .expo_table {
  width: 100%;
  margin: 18px 0 22px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.legacy-venue-content .expo_table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
  color: #333;
  font-size: 15px;
}
.legacy-venue-content .expo_table td,
.legacy-venue-content .expo_table th {
  border: 1px solid #d6dfe3;
  padding: 10px 12px;
  vertical-align: middle;
  text-align: center;
}
.legacy-venue-content .expo_table p {
  margin: 0;
}
.legacy-venue-content .expo_table td[bgcolor="#006182"],
.legacy-venue-content .expo_table td[bgcolor="#006182"] strong,
.legacy-venue-content .expo_table td[bgcolor="#00AA9D"],
.legacy-venue-content .expo_table td[bgcolor="#00AA9D"] strong,
.legacy-venue-content .expo_table td[bgcolor="#00aa9d"],
.legacy-venue-content .expo_table td[bgcolor="#00aa9d"] strong {
  color: #fff;
}
.legacy-venue-content .expo_table td[bgcolor="#006182"] {
  background: var(--official-blue) !important;
}
.legacy-venue-content .expo_table td[bgcolor="#00AA9D"],
.legacy-venue-content .expo_table td[bgcolor="#00aa9d"] {
  background: var(--official-teal) !important;
}
.legacy-venue-content .expo_table td[bgcolor="#dfdfdf"],
.legacy-venue-content .expo_table th[bgcolor="#dfdfdf"] {
  background: #dfdfdf !important;
  font-weight: 700;
}
.legacy-venue-content .hall1_yo_title {
  color: #fff;
  font-size: 17px;
}
.legacy-venue-content .download_goto {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 30px;
  padding: 12px 16px;
  border-left: 4px solid var(--official-blue);
  background: #f3f8fa;
}
.legacy-venue-content .download_goto li {
  margin: 0;
}
.legacy-venue-content .download_goto a {
  color: var(--official-blue);
  font-weight: 700;
  text-decoration: none;
}
.legacy-venue-content .download_goto a:hover,
.legacy-venue-content .download_goto a:focus {
  text-decoration: underline;
}
.legacy-venue-content .mdi-file-pdf::before {
  content: 'PDF';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 24px;
  border-radius: 3px;
  background: var(--official-blue);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.legacy-venue-content .news_wrap {
  margin-top: 24px;
}
.legacy-venue-content .row.fontbox_mg {
  row-gap: 28px;
}
.legacy-venue-content .live_box {
  margin-bottom: 26px;
}
.legacy-venue-content .about_boderpic {
  aspect-ratio: 4 / 3;
  border: 1px solid #d7e5eb;
  background-color: #f6fafb;
  background-size: contain;
  box-shadow: 0 10px 26px rgba(0, 75, 100, .08);
}
.legacy-venue-content .live_box a:hover .about_boderpic,
.legacy-venue-content .live_box a:focus .about_boderpic {
  border-color: #a9ccd7;
}
.legacy-venue-content .room_title {
  margin: 14px 0 0;
  border: 1px solid #e0eaee;
  background: #fff;
}
.legacy-venue-content .room_title li {
  margin: 0;
  padding: 9px 12px;
  border-bottom: 1px solid #edf3f5;
}
.legacy-venue-content .room_title li:last-child {
  border-bottom: 0;
}
.legacy-venue-content .room_st {
  color: var(--official-blue);
  font-weight: 800;
  background: #f2f9fb;
}
.legacy-venue-content .room_sm {
  color: #444;
}
.legacy-venue-content .price {
  color: var(--official-blue);
  font-weight: 800;
}
.legacy-venue-content .call_box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 24px;
  padding: 14px 18px;
  background: #f3f8fa;
  border-left: 4px solid var(--official-blue);
}
.legacy-venue-content .callicon img {
  width: 28px;
  height: 28px;
}
.legacy-venue-content .call_font {
  color: #2e4b59;
  font-weight: 700;
}
@media (max-width: 768px) {
  .legacy-venue-content .expo_table table {
    min-width: 640px;
    font-size: 14px;
  }
  .legacy-venue-content .about_boderpic {
    aspect-ratio: 16 / 10;
  }
}

/* Round 19: legacy advertising / filming venue content */
.legacy-ad-content-wrap .legacy-venue-content .aboutpic {
  width: 100%;
  margin: 0 0 26px;
  text-align: left;
}
.legacy-ad-content-wrap .legacy-venue-content .aboutpic a {
  display: inline-block;
  max-width: 100%;
}
.legacy-ad-content-wrap .legacy-venue-content .aboutpic img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid #d7e5eb;
  background: #f6fafb;
  box-shadow: 0 10px 26px rgba(0, 75, 100, .08);
}
.legacy-ad-content-wrap .legacy-venue-content .fontbox_mg {
  margin: 10px 0 22px;
}
.legacy-ad-content-wrap .legacy-venue-content .onder_list_title {
  margin: 0 0 12px;
  color: var(--official-blue);
  font-size: 18px;
  font-weight: 800;
}
.legacy-ad-content-wrap .legacy-venue-content .onder_dotelist li {
  position: relative;
  padding-left: 1.1em;
}
.legacy-ad-content-wrap .legacy-venue-content .onder_dotelist li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--official-blue);
  font-weight: 900;
}
.legacy-ad-content-wrap .legacy-venue-content .mdi-export::before {
  content: '↪';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--official-blue);
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
}
.legacy-ad-content-wrap .legacy-venue-content .download_goto {
  width: fit-content;
  min-width: 210px;
}
.legacy-ad-content-wrap .legacy-venue-content .none_content {
  min-height: 24px;
}
.legacy-led200-content-wrap .legacy-venue-content .aboutpic img {
  width: auto;
}
@media (max-width: 768px) {
  .legacy-ad-content-wrap .legacy-venue-content .download_goto {
    width: 100%;
  }
}

/* Mobile content pages keep floating tools visible and hide duplicate side menu. */
@media (max-width: 920px) {
  body > .side_tab {
    display: block !important;
    left: 8px !important;
    right: auto !important;
    top: auto !important;
    bottom: 112px !important;
    transform: none !important;
    z-index: 1600 !important;
  }

  body > .fish_icon {
    display: block !important;
    right: 12px !important;
    bottom: 18px !important;
    width: 72px !important;
    height: 72px !important;
    z-index: 1600 !important;
  }

  .official-subpage .official-main-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .official-subpage .side_menu {
    display: none !important;
  }

  .official-subpage .side_menucontent {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: clamp(18px, 5vw, 28px) !important;
    padding-right: clamp(18px, 5vw, 28px) !important;
  }
}

/* Mobile footer RWD: stacked venue cards and floating-widget clearance. */
.tainex-official-footer .footer_box li:not(.footer_title) {
  overflow-wrap: anywhere;
}

@media (max-width: 920px) {
  .tainex-official-footer .footer_bg {
    padding: 24px 0 28px;
  }

  .tainex-official-footer .official-footer-inner {
    gap: 16px;
  }

  .tainex-official-footer .footer-venue {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 16px;
    border: 1px solid rgba(0, 97, 130, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .5);
  }

  .tainex-official-footer .footer-logo-block {
    order: 2;
    justify-content: flex-start;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 97, 130, .16);
  }

  .tainex-official-footer .footer-logo-block img {
    max-width: 168px;
    margin: 0;
  }

  .tainex-official-footer .footer-links-panel {
    align-items: start;
    justify-items: start;
    place-content: start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 97, 130, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .46);
    text-align: left;
  }

  .tainex-official-footer .footer-sustainability-icons {
    justify-content: flex-start;
  }

  body.footer-tools-hidden > .side_tab,
  body.footer-tools-hidden > .fish_icon {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 640px) {
  .tainex-official-footer .footer_bg {
    padding: 18px 0 calc(132px + env(safe-area-inset-bottom));
  }

  .tainex-official-footer .official-footer-inner {
    width: min(100% - 24px, 1180px);
    gap: 14px;
  }

  .tainex-official-footer .footer-venue {
    padding: 16px 16px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 8px 18px rgba(0, 60, 82, .06);
  }

  .tainex-official-footer .footer_box {
    font-size: 15px;
    line-height: 1.68;
  }

  .tainex-official-footer .footer_title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .tainex-official-footer .footer-logo-block {
    border-top: 1px solid rgba(0, 97, 130, .16);
  }

  .tainex-official-footer .footer-logo-block img {
    max-width: 176px;
  }

  .tainex-official-footer .footer-links-panel {
    padding: 15px 16px;
  }

  .tainex-official-footer .footer-sustainability-icons img {
    width: 32px;
    height: 32px;
  }

  .tainex-official-footer .footer_deepbg {
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  }

  /* Phone floating tools stay vertical on the left side. */
  body > .side_tab {
    left: 8px !important;
    bottom: 104px !important;
    width: 36px !important;
  }

  body > .side_tab ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
  }

  body > .side_tab li {
    margin: 0 !important;
    width: 36px !important;
  }

  body > .side_tab .side-tab-link,
  body > .side_tab .side-tab-button {
    width: 36px !important;
    transition: none !important;
  }

  body > .side_tab .side-label {
    display: none !important;
  }

  /* Phone 360 submenu opens beside the vertical floating tools. */
  body > .side_tab .side-submenu {
    display: none !important;
  }

  body > .side_tab .side-tab-vr.is-open .side-submenu {
    display: grid !important;
    position: absolute !important;
    left: calc(100% + 4px) !important;
    top: 0 !important;
    width: 156px !important;
    min-width: 156px !important;
    gap: 1px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 1601 !important;
  }

  body > .fish_icon {
    right: 10px !important;
    bottom: 18px !important;
    width: 64px !important;
    height: 64px !important;
  }
}
