:root {
  --black: #050505;
  --charcoal: #171717;
  --charcoal-2: #222222;
  --silver: #c7c7c7;
  --off-white: #f4f1ea;
  --steel: #7e8792;
  --red: #e23a3a;
  --gold: #c8a45d;
  --line: rgba(199, 199, 199, 0.18);
  --soft: rgba(244, 241, 234, 0.72);
  --max: 1720px;
  --read: 1180px;
  --gutter: clamp(24px, 3.2vw, 64px);
}

/* WordPress live layout hardening */
.entry-content .site-header,
.entry-content .site-footer,
.wp-site-blocks .site-header,
.wp-site-blocks .site-footer {
  box-sizing: border-box;
}

.entry-content .site-header *,
.entry-content .site-footer *,
.wp-site-blocks .site-header *,
.wp-site-blocks .site-footer * {
  box-sizing: border-box;
}

.entry-content .site-header a,
.entry-content .site-footer a,
.wp-site-blocks .site-header a,
.wp-site-blocks .site-footer a {
  color: inherit;
  text-decoration: none !important;
  text-underline-offset: 0;
}

.entry-content .site-header {
  width: 100%;
}

.entry-content .nav,
.wp-site-blocks .nav {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.entry-content .site-footer,
.wp-site-blocks .site-footer {
  overflow: hidden;
}

.entry-content .footer-inner,
.wp-site-blocks .footer-inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  max-width: var(--max);
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1fr);
  gap: clamp(72px, 10vw, 190px);
  align-items: start;
}

.entry-content .footer-brand,
.wp-site-blocks .footer-brand {
  max-width: 520px;
}

.entry-content .footer-brand p,
.wp-site-blocks .footer-brand p {
  max-width: 360px;
}

.entry-content .footer-newsletter,
.wp-site-blocks .footer-newsletter {
  width: min(100%, 500px);
}

.entry-content .footer-nav,
.wp-site-blocks .footer-nav {
  grid-column: 2;
  justify-self: stretch;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  padding-right: clamp(24px, 5vw, 92px);
  gap: clamp(28px, 4vw, 72px);
}

.entry-content .footer-copy,
.wp-site-blocks .footer-copy {
  right: clamp(24px, 5vw, 92px);
  bottom: 0;
  max-width: 520px;
  text-align: right;
}

@media (max-width: 920px) {
  .entry-content .footer-inner,
  .wp-site-blocks .footer-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .entry-content .footer-nav,
  .wp-site-blocks .footer-nav {
    grid-column: auto;
    max-width: none;
    margin-left: 0;
    padding-right: 0;
  }

  .entry-content .footer-copy,
  .wp-site-blocks .footer-copy {
    position: static;
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .entry-content .nav,
  .wp-site-blocks .nav,
  .entry-content .footer-inner,
  .wp-site-blocks .footer-inner {
    width: calc(100vw - 32px);
  }

  .entry-content .footer-newsletter,
  .wp-site-blocks .footer-newsletter {
    width: 100%;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--off-white);
  background:
    linear-gradient(90deg, rgba(226, 58, 58, 0.1), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(199, 199, 199, 0.12), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #111 46%, #050505 100%);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(244, 241, 234, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  position: relative;
}

.nav-toggle-input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  gap: 5px;
  padding: 12px 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--off-white);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle:hover,
.nav-toggle-input:checked + .menu-toggle {
  border-color: var(--line);
  background: rgba(244, 241, 234, 0.06);
}

.nav-toggle-input:checked + .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle-input:checked + .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-input:checked + .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  width: min(360px, calc(100vw - 32px));
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(226, 58, 58, 0.1), transparent 44%),
    rgba(5, 5, 5, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-panel-inner {
  display: grid;
  padding: 12px;
}

.menu-panel a {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(199, 199, 199, 0.12);
  color: rgba(244, 241, 234, 0.82);
  font-weight: 800;
}

.menu-panel a:last-child {
  border-bottom: 0;
}

.menu-panel a:hover,
.menu-panel a.active {
  color: var(--off-white);
  background: rgba(244, 241, 234, 0.07);
}

.nav-toggle-input:checked ~ .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-right: 20px;
}

.brand img {
  width: 58px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(199, 199, 199, 0.28));
}

.brand-mark {
  display: grid;
  line-height: 1;
}

.brand-title {
  font-family: Impact, "Arial Black", "Noto Sans TC", sans-serif;
  letter-spacing: 0;
  font-size: 1.25rem;
}

.eyebrow,
.meta,
.tag,
.section-kicker {
  color: var(--silver);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 900;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  color: rgba(244, 241, 234, 0.9);
  font-size: clamp(0.9rem, 0.72vw, 1.05rem);
  letter-spacing: 0.1em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 164, 93, 0));
}

.tag,
.meta {
  color: rgba(199, 199, 199, 0.88);
  font-size: 0.8rem;
  letter-spacing: 0.11em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-left: auto;
}

.nav-links a {
  color: rgba(244, 241, 234, 0.76);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--off-white);
  background: rgba(244, 241, 234, 0.08);
}

.language-link {
  color: var(--silver);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.82rem;
}

.section,
.hero {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 48px;
  padding: 56px 0 50px;
}

.editorial-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: min(860px, calc(100vh - 78px));
  grid-template-columns: minmax(340px, 760px) 1fr;
  padding: clamp(72px, 7vw, 118px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 27%, rgba(5, 5, 5, 0.42) 47%, rgba(5, 5, 5, 0.02) 76%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, transparent 42%, rgba(5, 5, 5, 0.22) 100%),
    url("assets/hero/hero-kt-slowgrind-mobile-9x16.png");
  background-position: center, center, right center;
  background-size: auto, auto, auto 100%;
  background-repeat: no-repeat;
  border-top: 0;
  border-bottom: 0;
  box-shadow: none;
}

.editorial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(226, 58, 58, 0.12), transparent 18%),
    radial-gradient(circle at 80% 43%, rgba(200, 164, 93, 0.05), transparent 24%);
  pointer-events: none;
}

.editorial-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(244, 241, 234, 0.028) 1px, transparent 1px);
  background-size: 100% 6px;
  mix-blend-mode: soft-light;
  opacity: 0.16;
  pointer-events: none;
}

.editorial-hero > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 36px;
  border: 0;
  background:
    radial-gradient(circle at 52% 42%, rgba(244, 241, 234, 0.13), transparent 30%),
    radial-gradient(circle at 18% 20%, rgba(226, 58, 58, 0.14), transparent 28%),
    linear-gradient(130deg, rgba(226, 58, 58, 0.07), transparent 34%),
    repeating-linear-gradient(135deg, rgba(244, 241, 234, 0.035) 0 1px, transparent 1px 20px),
    transparent;
  box-shadow: none;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% 4% 9%;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0), rgba(244, 241, 234, 0.04), rgba(5, 5, 5, 0)),
    radial-gradient(circle at 50% 50%, rgba(199, 199, 199, 0.08), transparent 55%);
  clip-path: polygon(5% 0, 100% 8%, 92% 100%, 0 88%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), transparent 18%, transparent 82%, rgba(5, 5, 5, 0.96)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.9), transparent 30%, transparent 70%, rgba(5, 5, 5, 0.92));
}

.hero-ghost-logo {
  position: absolute;
  z-index: 0;
  width: min(76%, 520px);
  opacity: 0.28;
  transform: rotate(-6deg) translate(2%, -8%);
  filter: grayscale(1) contrast(1.15) drop-shadow(0 28px 70px rgba(0, 0, 0, 0.9));
  mix-blend-mode: screen;
}

.visual-topline {
  position: absolute;
  top: 8%;
  left: 7%;
  right: 7%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(244, 241, 234, 0.58);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(0.78rem, 1vw, 1rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.visual-stack {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 30%;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.visual-stack span {
  padding: 7px 10px;
  border: 1px solid rgba(199, 199, 199, 0.18);
  background: rgba(5, 5, 5, 0.38);
  color: rgba(244, 241, 234, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-panel {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 8%;
  z-index: 2;
  border: 0;
  border-top: 1px solid rgba(199, 199, 199, 0.2);
  border-bottom: 1px solid rgba(199, 199, 199, 0.12);
  background:
    linear-gradient(90deg, rgba(200, 164, 93, 0.12), transparent 22%),
    rgba(5, 5, 5, 0.58);
  padding: 18px 0 16px;
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.hero-panel p {
  margin: 8px 0 0;
}

.hero-panel .section-kicker {
  margin: 0;
}

.hero h1,
.page-hero h1 {
  margin: 12px 0 20px;
  font-family: Impact, "Arial Black", "Noto Sans TC", sans-serif;
  font-size: clamp(2.8rem, 5.2vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
  padding: 0 0.08em;
}

.hero-title-accent {
  color: transparent;
  background: linear-gradient(100deg, var(--off-white), var(--silver) 42%, rgba(126, 135, 146, 0.92));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 18px 52px rgba(199, 199, 199, 0.08);
}

.hero-title {
  line-height: 1.2;
}

.page-hero h1 {
  font-size: clamp(3rem, 6.6vw, 5.8rem);
  line-height: 1;
}

.hero-copy {
  max-width: 760px;
  color: rgba(244, 241, 234, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  border-left: 3px solid var(--red);
  padding-left: 18px;
}

.hero-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-label-row span {
  border: 1px solid rgba(199, 199, 199, 0.22);
  color: rgba(244, 241, 234, 0.8);
  padding: 5px 9px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.ticker {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto 28px;
  display: flex;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.035);
}

.ticker span {
  flex: 1 0 auto;
  min-width: max-content;
  padding: 12px 20px;
  border-right: 1px solid var(--line);
  color: var(--silver);
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.impact-strip {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(199, 199, 199, 0.2);
  border-bottom: 1px solid rgba(199, 199, 199, 0.2);
  background:
    linear-gradient(90deg, rgba(226, 58, 58, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(244, 241, 234, 0.055), rgba(244, 241, 234, 0.02));
}

.impact-item {
  position: relative;
  min-height: 156px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  padding: 30px 24px;
  border-right: 1px solid rgba(199, 199, 199, 0.22);
  overflow: hidden;
}

.impact-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 54px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(200, 164, 93, 0), var(--gold), rgba(200, 164, 93, 0));
  opacity: 0.68;
}

.impact-item:last-child {
  border-right: 0;
}

.impact-item p {
  margin: 0;
  color: rgba(199, 199, 199, 0.9);
  font-size: clamp(0.95rem, 0.9vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.impact-item strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  width: 100%;
  color: transparent;
  background: linear-gradient(100deg, var(--off-white) 0%, #f7f3e8 36%, var(--silver) 70%, var(--gold) 112%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Impact, "Arial Black", "Noto Sans TC", sans-serif;
  font-size: clamp(3rem, 4.6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-align: center;
  filter: drop-shadow(0 18px 38px rgba(200, 164, 93, 0.14));
}

.impact-item strong::after {
  content: none;
}

.featured-content {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 16px;
}

.featured-content-balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(320px, 0.44fr);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(226, 58, 58, 0.1), transparent 42%),
    rgba(23, 23, 23, 0.92);
}

.featured-story > * {
  min-width: 0;
}

.featured-story-card {
  grid-template-columns: 1fr;
  align-content: start;
}

.featured-story-card .media-frame {
  aspect-ratio: 16 / 9;
  min-height: 0;
  background: #050505;
}

.featured-story-card .media-frame img,
.media-frame-contain img {
  object-fit: contain;
}

.featured-story-card .featured-copy {
  min-height: 0;
  align-content: start;
}

.featured-archive-link {
  grid-column: 1 / -1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid rgba(200, 164, 93, 0.64);
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.03em;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.featured-archive-link:hover {
  color: var(--off-white);
  border-color: var(--red);
  transform: translateX(3px);
}

.feature-image,
.content-thumb {
  min-height: 330px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 28%, rgba(199, 199, 199, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(226, 58, 58, 0.32), rgba(5, 5, 5, 0.12)),
    repeating-linear-gradient(135deg, rgba(244, 241, 234, 0.08) 0 1px, transparent 1px 16px),
    #111;
}

.feature-image img,
.content-thumb img,
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease;
}

.feature-image.has-image::after,
.content-thumb.has-image::after,
.video-thumb.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.2));
  pointer-events: none;
}

.feature-image.has-image:hover img,
.content-thumb.has-image:hover img,
.video-thumb.has-image:hover img {
  transform: scale(1.04);
  opacity: 1;
  filter: none;
}

.feature-image > span:first-child,
.content-thumb span {
  position: absolute;
  left: 18px;
  top: 16px;
  color: rgba(244, 241, 234, 0.7);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.feature-image .play,
.video-thumb .play {
  position: relative;
  z-index: 3;
}

.featured-copy {
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.featured-copy h3,
.featured-copy h2,
.editorial-rail h3 {
  margin: 0;
  line-height: 1.15;
}

.featured-copy h3,
.featured-copy h2 {
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  line-height: 1.18;
  overflow-wrap: normal;
  text-wrap: pretty;
  word-break: normal;
}

.featured-copy p,
.editorial-rail p {
  color: rgba(244, 241, 234, 0.72);
}

.featured-copy .btn {
  justify-self: start;
}

.editorial-rail {
  display: grid;
  gap: 16px;
}

.editorial-rail a {
  display: grid;
  align-content: start;
  min-height: 184px;
  border: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.045);
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.editorial-rail a:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 164, 93, 0.48);
  background: rgba(244, 241, 234, 0.075);
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.latest-card-wide {
  grid-column: span 6;
}

.latest-card-short {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
}

.latest-card-short .content-thumb {
  border-bottom: 0;
  border-right: 1px solid var(--line);
  aspect-ratio: auto;
  min-height: 260px;
}

.latest-card-wide .body,
.latest-card-short .body {
  min-height: 190px;
}

.content-thumb {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
}

.content-thumb:not(.has-image)::after {
  content: "";
  width: 54px;
  height: 54px;
  border: 1px solid rgba(244, 241, 234, 0.34);
  border-radius: 50%;
  background: rgba(244, 241, 234, 0.05);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.06);
  color: var(--off-white);
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 241, 234, 0.4);
  background: rgba(244, 241, 234, 0.1);
}

.btn.primary {
  color: #070707;
  background: var(--off-white);
  border-color: var(--off-white);
}

.btn.red {
  background: var(--red);
  border-color: var(--red);
}

.section {
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.section h2 {
  margin: 8px 0 0;
  font-family: Impact, "Arial Black", "Noto Sans TC", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head > p {
  font-size: 1.08rem;
  margin: 0 0 4px;
  max-width: 470px;
  justify-self: end;
  text-wrap: pretty;
}

.section-head .section-kicker {
  margin: 0 0 8px;
}

.section-head > .btn {
  align-self: start;
  justify-self: end;
  margin-top: 44px;
}

.section-head p,
.intro,
.card p,
.feature p,
.service-detail p,
.page-hero p,
.empty-state p {
  color: rgba(244, 241, 234, 0.74);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card,
.feature,
.service-detail,
.partner-card,
.video-card,
.article-card,
.form-shell,
.empty-state {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 241, 234, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(23, 23, 23, 0.95), rgba(8, 8, 8, 0.96));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card,
.feature {
  padding: 24px;
}

.card:hover,
.feature:hover,
.service-detail:hover,
.partner-card:hover,
.video-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 164, 93, 0.48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.card h3,
.feature h3,
.service-detail h2,
.partner-card h3,
.video-card h3,
.article-card h3 {
  margin: 10px 0 10px;
  line-height: 1.18;
}

.category-strip .partner-card {
  position: relative;
  overflow: hidden;
}

.category-strip .partner-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-left: 1px solid rgba(200, 164, 93, 0.32);
  border-bottom: 1px solid rgba(200, 164, 93, 0.32);
  background: linear-gradient(135deg, rgba(200, 164, 93, 0.18), transparent);
  opacity: 0;
  transform: translate(12px, -12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.category-strip .partner-card:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.category-strip .partner-card .body {
  min-height: 136px;
  display: grid;
  align-content: start;
}

.category-strip .partner-card .tag {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  color: rgba(200, 164, 93, 0.95);
}

.category-strip .partner-card h3 {
  margin-top: 4px;
}

.number {
  color: var(--gold);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.8rem;
}

.service-card {
  min-height: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  isolation: isolate;
  padding: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0.72;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: -1;
  opacity: 0.22;
  background:
    radial-gradient(circle at 86% 16%, rgba(200, 164, 93, 0.24) 0 2px, transparent 3px),
    linear-gradient(135deg, transparent 0 42%, rgba(244, 241, 234, 0.1) 42% 43%, transparent 43% 100%);
  transform: translate3d(0, 0, 0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-card .service-card-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(199, 199, 199, 0.16);
  background: #050505;
}

.service-card .service-card-visual::after,
.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 42%, rgba(5, 5, 5, 0.42) 100%),
    radial-gradient(circle at 84% 18%, rgba(200, 164, 93, 0.16), transparent 28%);
  pointer-events: none;
}

.service-card .service-card-visual img,
.service-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 220ms ease, filter 220ms ease;
}

.service-card .service-card-visual span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  color: rgba(244, 241, 234, 0.92);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}

.service-card-body {
  padding: 22px 22px 26px;
  display: grid;
  align-content: start;
}

.service-card:hover .service-card-visual img,
.service-detail:hover .service-visual img {
  transform: scale(1.045);
  filter: contrast(1.04) saturate(1.04);
}

.service-card:hover::before {
  opacity: 0.42;
  transform: translate3d(3px, -3px, 0);
}

.service-card:nth-child(1)::before {
  background:
    repeating-radial-gradient(circle at 14% 22%, transparent 0 12px, rgba(244, 241, 234, 0.13) 13px 14px, transparent 15px 24px),
    linear-gradient(90deg, rgba(226, 58, 58, 0.16), transparent 48%);
  animation: ktWave 3.2s ease-in-out infinite;
}

.service-card:nth-child(2)::before {
  background:
    linear-gradient(135deg, transparent 0 54%, rgba(200, 164, 93, 0.38) 54% 56%, transparent 56%),
    radial-gradient(circle at 72% 24%, rgba(200, 164, 93, 0.38) 0 3px, transparent 4px),
    radial-gradient(circle at 52% 48%, rgba(244, 241, 234, 0.22) 0 2px, transparent 3px);
  animation: ktRise 3.6s ease-in-out infinite;
}

.service-card:nth-child(3)::before {
  background:
    conic-gradient(from 220deg at 78% 18%, transparent 0 18%, rgba(244, 241, 234, 0.22) 19% 21%, transparent 22% 100%),
    conic-gradient(from 300deg at 18% 20%, transparent 0 16%, rgba(200, 164, 93, 0.18) 17% 19%, transparent 20% 100%);
  animation: ktLights 4s ease-in-out infinite;
}

.service-card:nth-child(4)::before {
  background:
    radial-gradient(circle at 22% 28%, rgba(244, 241, 234, 0.22) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 66%, rgba(200, 164, 93, 0.32) 0 3px, transparent 4px),
    linear-gradient(145deg, transparent 0 38%, rgba(199, 199, 199, 0.16) 39% 40%, transparent 41%);
  animation: ktPulse 3.4s ease-in-out infinite;
}

.service-card:nth-child(5)::before {
  background:
    linear-gradient(90deg, rgba(244, 241, 234, 0.18) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, rgba(226, 58, 58, 0.14), transparent 48%);
  background-size: 18px 100%, auto;
  animation: ktScan 4s linear infinite;
}

.service-card:nth-child(6)::before {
  background:
    linear-gradient(180deg, transparent 0 56%, rgba(200, 164, 93, 0.28) 56% 63%, transparent 63%),
    linear-gradient(180deg, transparent 0 42%, rgba(244, 241, 234, 0.18) 42% 49%, transparent 49%),
    linear-gradient(180deg, transparent 0 68%, rgba(226, 58, 58, 0.24) 68% 75%, transparent 75%);
  background-size: 22px 100%, 34px 100%, 46px 100%;
  animation: ktBars 3.2s ease-in-out infinite;
}

.service-card:nth-child(7)::before {
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.14) 0 1px, transparent 1px 18px),
    linear-gradient(45deg, transparent 0 54%, rgba(200, 164, 93, 0.2) 54% 56%, transparent 56%);
  animation: ktLayers 4s ease-in-out infinite;
}

.service-icon {
  width: 46px;
  height: 46px;
  color: var(--silver);
  margin-bottom: 18px;
  opacity: 0.95;
  transform-origin: center;
  animation: ktIconFloat 4.4s ease-in-out infinite;
  transition: transform 180ms ease, filter 180ms ease;
}

.service-card:hover .service-icon,
.service-detail:hover .service-icon {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 0 12px rgba(200, 164, 93, 0.32));
}

.service-icon.large {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 20px;
  align-items: stretch;
}

.statement {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--off-white);
  color: #070707;
}

.statement h2 {
  color: #070707;
}

.statement p {
  color: rgba(5, 5, 5, 0.72);
  font-weight: 600;
}

.stats {
  display: grid;
  gap: 16px;
}

.stat {
  border: 1px solid var(--line);
  padding: 22px;
  background: rgba(23, 23, 23, 0.88);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.page-hero {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 82px 0 58px;
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.14rem;
  text-wrap: pretty;
}

.page-hero h1 {
  text-wrap: balance;
}

.news-page-hero {
  padding: clamp(54px, 5.4vw, 78px) 0 clamp(22px, 2.8vw, 34px);
}

.news-page-hero h1 {
  margin-bottom: 0;
}

.contact-hero p {
  max-width: 980px;
}

.about-hero {
  width: min(100%, 1920px);
  aspect-ratio: 3852 / 2152;
  min-height: 0;
  margin: 0 auto;
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.about-hero::before {
  content: none;
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.about-intro {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding-top: clamp(34px, 4.6vw, 62px);
  padding-bottom: clamp(30px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
}

.about-intro h1 {
  max-width: 1120px;
  margin: 0;
  font-family: Impact, "Arial Black", "Noto Sans TC", sans-serif;
  font-size: clamp(3rem, 5.8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(244, 241, 234, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.75;
}

.about-story-grid,
.about-culture-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.78fr);
  gap: 22px;
  align-items: stretch;
  padding-top: clamp(46px, 5vw, 72px);
  padding-bottom: clamp(46px, 5vw, 72px);
}

.about-statement {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 0;
  padding: clamp(24px, 3vw, 42px);
  background:
    linear-gradient(135deg, rgba(226, 58, 58, 0.14), transparent 42%),
    rgba(244, 241, 234, 0.95);
}

.about-statement h2 {
  font-size: clamp(2rem, 3.5vw, 3.9rem);
  line-height: 1.02;
}

.about-image-card,
.about-motion-card {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.08), transparent 46%),
    #050505;
  overflow: hidden;
  min-height: 0;
}

.about-image-card {
  aspect-ratio: 16 / 10;
}

.about-image-card img,
.about-motion-card video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-pillars {
  padding-top: clamp(36px, 4vw, 56px);
  padding-bottom: clamp(42px, 4.6vw, 64px);
}

.about-pillars .stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-pillars .stat {
  min-height: 142px;
  display: grid;
  align-content: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.about-pillars .stat:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 164, 93, 0.5);
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.08), transparent 56%),
    rgba(23, 23, 23, 0.96);
}

.about-culture-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
}

.about-culture-copy {
  grid-template-columns: 1fr;
  align-content: center;
  margin: 0;
  padding: clamp(26px, 3.2vw, 42px);
  border: 1px solid var(--line);
  background: rgba(23, 23, 23, 0.68);
}

.about-culture-copy p {
  max-width: 720px;
}

.about-motion-card {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.about-motion-card video {
  min-height: 0;
}

.about-final-cta {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  align-items: center;
  gap: clamp(22px, 3.5vw, 48px);
  padding: clamp(30px, 4vw, 56px);
}

.about-cta-section {
  padding-top: clamp(46px, 5vw, 72px);
  padding-bottom: clamp(54px, 5.5vw, 78px);
}

.about-final-cta h2 {
  max-width: none;
  font-size: clamp(2.05rem, 3vw, 3.35rem);
  text-wrap: normal;
}

.about-final-cta p:not(.section-kicker) {
  max-width: 1020px;
}

.about-final-cta .cta-actions,
.home-final-cta .cta-actions,
.video-final-cta .cta-actions,
.partner-final-cta .cta-actions {
  margin-top: 0;
}

.compact-final-cta {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  padding: clamp(26px, 3vw, 42px);
}

.compact-final-cta h2,
.empty-state.compact-final-cta h2 {
  max-width: 940px;
  font-size: clamp(2.2rem, 3.45vw, 3.6rem);
  line-height: 0.98;
  text-wrap: balance;
}

.compact-final-cta p:not(.section-kicker) {
  max-width: 860px;
  margin-top: 18px;
}

.compact-final-cta .cta-actions {
  align-self: center;
  justify-self: start;
  width: auto;
}

.cta-actions-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.empty-state .cta-actions-inline .btn {
  flex: 1 1 150px;
  width: auto;
  min-width: 0;
  margin-top: 0;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-detail {
  min-height: 100%;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  align-content: stretch;
  gap: 0;
  border-left: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.service-detail::before {
  content: "";
  position: absolute;
  right: -22px;
  top: -20px;
  width: 180px;
  height: 150px;
  z-index: -1;
  opacity: 0.14;
  background:
    radial-gradient(circle, rgba(200, 164, 93, 0.28), transparent 54%),
    repeating-linear-gradient(90deg, rgba(244, 241, 234, 0.2) 0 2px, transparent 2px 14px);
  animation: ktScan 5s linear infinite;
}

.service-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(199, 199, 199, 0.16);
  background: #050505;
}

.service-visual figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-detail-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 16px;
  align-items: start;
  padding: 24px 24px 0;
  border-bottom: 0;
}

.service-detail-head .number {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.service-detail-head h2 {
  grid-column: 1;
  grid-row: 1;
  padding-right: 18px;
}

.service-detail-body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 0 24px 24px;
}

.service-detail h2 {
  margin: 8px 0 0;
  font-size: clamp(1.82rem, 2.8vw, 3.2rem);
  line-height: 1.05;
}

.service-detail p {
  margin: 0;
}

.service-detail-body > p {
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(244, 241, 234, 0.82);
  font-size: 1.04rem;
  font-weight: 700;
}

@media (min-width: 1100px) {
  .service-detail-body > p {
    white-space: nowrap;
    font-size: clamp(0.9rem, 0.86vw, 0.98rem);
    line-height: 1.45;
  }
}

.service-meta {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

.service-audience {
  border: 1px solid rgba(200, 164, 93, 0.28);
  background:
    linear-gradient(90deg, rgba(200, 164, 93, 0.1), transparent 58%),
    rgba(200, 164, 93, 0.04);
  padding: 13px 14px;
}

.service-audience p {
  margin-top: 6px;
  color: rgba(244, 241, 234, 0.88);
  font-weight: 700;
}

.service-points {
  border: 1px solid rgba(199, 199, 199, 0.16);
  background: rgba(244, 241, 234, 0.035);
  padding: 14px 16px;
  display: grid;
  align-content: center;
}

.service-detail ul,
.plain-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(244, 241, 234, 0.74);
}

.pill-row,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-nav-section {
  padding: 18px 0;
}

.news-filter-row {
  align-items: center;
}

.pill,
.filter {
  border: 1px solid var(--line);
  color: rgba(244, 241, 234, 0.82);
  padding: 8px 11px;
  font-size: 0.88rem;
  background: rgba(244, 241, 234, 0.04);
}

.filter.active {
  color: #070707;
  background: var(--gold);
  border-color: var(--gold);
  font-weight: 800;
}

.filter-row a.filter {
  text-decoration: none;
}

.video-jump-row {
  align-items: center;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(226, 58, 58, 0.38), rgba(5, 5, 5, 0.12)),
    radial-gradient(circle at 72% 22%, rgba(199, 199, 199, 0.2), transparent 24%),
    repeating-linear-gradient(90deg, rgba(244, 241, 234, 0.09) 0 1px, transparent 1px 12px),
    #111;
}

.video-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.82fr) minmax(0, 0.82fr);
  gap: 16px;
}

.home-show-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.home-show-grid .video-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.home-show-wide {
  grid-column: span 6;
}

.home-show-short {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
}

.home-show-grid .media-frame {
  aspect-ratio: 16 / 9;
}

.home-show-short .content-thumb {
  border-right: 1px solid var(--line);
  border-bottom: 0;
  aspect-ratio: auto;
  min-height: 260px;
}

.home-show-grid .body {
  min-height: 0;
  align-content: start;
}

.video-library-section {
  padding-top: 52px;
}

.section-head.compact {
  margin-bottom: 26px;
}

.youtube-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.youtube-video-card .body {
  min-height: 190px;
}

.short-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.short-video-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.short-video-card .media-frame.instagram {
  aspect-ratio: 9 / 16;
  border-bottom: 1px solid var(--line);
}

.short-video-card .body {
  min-height: 178px;
}

.video-card-feature {
  grid-row: span 2;
}

.video-card-feature .video-thumb {
  aspect-ratio: 16 / 11.8;
}

.video-channel {
  position: absolute;
  left: 14px;
  top: 12px;
  color: rgba(244, 241, 234, 0.7);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.9rem;
  z-index: 3;
}

.play {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--off-white);
  color: #070707;
  font-weight: 900;
  line-height: 1;
  padding-left: 3px;
}

.media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.media-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050505;
  display: block;
}

.youtube-thumb-frame {
  display: block;
  color: var(--off-white);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.youtube-thumb-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.youtube-thumb-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.16)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.18), transparent 45%);
  pointer-events: none;
}

.youtube-thumb-frame:hover img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.youtube-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 72px;
  height: 50px;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  background: #ff0000;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.youtube-play::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid white;
}

.youtube-platform {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 9px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(244, 241, 234, 0.2);
  color: rgba(244, 241, 234, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.media-frame.instagram {
  aspect-ratio: 16 / 9;
  background: #fff;
}

.media-frame.instagram iframe,
.instagram-preview iframe {
  height: 620px;
  top: -86px;
  bottom: auto;
  background: #fff;
}

.instagram-preview {
  background: #fff;
}

.instagram-preview iframe {
  position: absolute;
  left: 0;
  width: 100%;
  border: 0;
  pointer-events: none;
}

.short-video-card .media-frame.instagram iframe {
  height: 100%;
  top: 0;
  bottom: 0;
}

.cover-link {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
}

.cover-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.22));
}

.featured-story .media-frame {
  min-height: 0;
  align-self: stretch;
  border-bottom: 0;
}

.video-card-feature .media-frame {
  aspect-ratio: 16 / 11.8;
}

.process-section {
  overflow: hidden;
}

.process-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(226, 58, 58, 0.1), transparent 36%),
    rgba(244, 241, 234, 0.025);
}

.process-step {
  position: relative;
  min-height: 245px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 14px;
  opacity: 0.2;
  background:
    radial-gradient(circle at 80% 18%, rgba(200, 164, 93, 0.34) 0 2px, transparent 3px),
    linear-gradient(135deg, transparent 0 46%, rgba(244, 241, 234, 0.12) 46% 47%, transparent 47% 100%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.process-step span {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.process-step h3,
.process-step p {
  position: relative;
  z-index: 1;
}

.process-step h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.process-step p {
  margin: 0;
  color: rgba(244, 241, 234, 0.68);
  font-weight: 600;
}

.process-step:hover {
  background: rgba(244, 241, 234, 0.055);
  border-color: rgba(200, 164, 93, 0.48);
  transform: translateY(-4px);
}

.process-step:hover::before {
  opacity: 0.4;
  transform: translate3d(3px, -3px, 0);
}

.video-card .body,
.article-card .body,
.partner-card .body {
  padding: 20px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.logo-marquee {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(199, 199, 199, 0.18);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), transparent 12%, transparent 88%, rgba(5, 5, 5, 0.96)),
    rgba(244, 241, 234, 0.025);
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 72px;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #050505, rgba(5, 5, 5, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #050505, rgba(5, 5, 5, 0));
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 12px;
  animation: ktLogoMarquee 34s linear infinite;
  will-change: transform;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-marquee .logo-tile {
  width: 205px;
  min-height: 154px;
  flex: 0 0 auto;
}

.logo-tile {
  min-height: 124px;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.065), transparent),
    rgba(244, 241, 234, 0.035);
  color: rgba(244, 241, 234, 0.56);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.4rem;
}

.logo-wall-real .logo-tile {
  padding: 20px;
  min-height: 168px;
  background:
    radial-gradient(circle at 18% 12%, rgba(200, 164, 93, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(244, 241, 234, 0.085), rgba(244, 241, 234, 0.02)),
    rgba(8, 8, 8, 0.92);
  border-color: rgba(199, 199, 199, 0.22);
  box-shadow: inset 0 1px 0 rgba(244, 241, 234, 0.06);
}

.logo-tile img {
  max-width: 90%;
  max-height: 96px;
  object-fit: contain;
  filter: grayscale(0.35) contrast(1.04) brightness(1.02);
  opacity: 0.96;
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.logo-tile-featured img {
  max-width: 96%;
  max-height: 120px;
}

.logo-tile:hover img {
  opacity: 1;
  filter: grayscale(0) contrast(1.04) brightness(1.04);
  transform: scale(1.03);
}

.logo-name {
  margin-top: 14px;
  color: rgba(244, 241, 234, 0.68);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.partner-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 16px;
}

.partner-note {
  border: 1px solid var(--line);
  background: var(--off-white);
  color: #070707;
  padding: 24px;
}

.partner-note p,
.partner-note .tag {
  color: rgba(5, 5, 5, 0.66);
}

.partner-note .tag {
  color: #7a5c22;
  font-size: 0.86rem;
}

.partner-card-logo {
  display: grid;
  grid-template-rows: 132px auto;
  overflow: hidden;
}

.partner-logo {
  display: grid;
  place-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.1), transparent),
    rgba(244, 241, 234, 0.055);
}

.partner-logo img {
  max-width: 88%;
  max-height: 82px;
  object-fit: contain;
  filter: grayscale(0.25) contrast(1.05) brightness(1.04);
}

.partner-logo-featured img {
  max-height: 104px;
}

.icon-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.icon-preview-card {
  min-height: 220px;
  border: 1px solid var(--line);
  background: rgba(23, 23, 23, 0.9);
  padding: 24px;
}

.icon-preview-card img {
  width: 64px;
  height: 64px;
  color: var(--silver);
  margin-bottom: 24px;
}

.icon-preview-card p {
  color: rgba(244, 241, 234, 0.62);
}

.logo-tile.gold {
  color: var(--gold);
}

@keyframes ktLogoMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 6px), 0, 0);
  }
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--silver);
  font-size: 0.82rem;
}

.read-more {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 800;
}

.article-list-section {
  padding-top: 24px;
}

.article-list-head {
  margin-bottom: 22px;
}

.article-list-head h2 {
  max-width: 760px;
}

.article-list {
  border-top: 1px solid rgba(199, 199, 199, 0.22);
}

.article-list-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 4vw, 72px);
  padding: 30px 0;
  border-bottom: 1px solid rgba(199, 199, 199, 0.2);
}

.article-list-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 199, 199, 0.2);
  background-color: #050505;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-blend-mode: normal;
  isolation: isolate;
  transition: border-color 180ms ease, transform 180ms ease, filter 180ms ease;
}

.article-list-thumb::before,
.article-list-thumb::after,
.article-video-cover::before,
.article-video-cover::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.article-list-thumb span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 10px;
  background: var(--red);
  color: var(--off-white);
  font-size: 0.82rem;
  font-weight: 900;
}

.article-list-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 164, 93, 0.54);
  filter: brightness(1.08);
}

.news-thumb-1 {
  background: url("https://img.youtube.com/vi/1RpC6_l--U0/maxresdefault.jpg") center / cover;
}

.news-thumb-2 {
  background: url("https://img.youtube.com/vi/tyHH0EECde4/maxresdefault.jpg") center / cover;
}

.news-thumb-5 {
  background:
    linear-gradient(120deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.76)),
    radial-gradient(circle at 70% 22%, rgba(199, 199, 199, 0.24), transparent 18rem),
    linear-gradient(135deg, rgba(226, 58, 58, 0.34), rgba(5, 5, 5, 0.38));
}

.news-thumb-6 {
  background: url("https://img.youtube.com/vi/3KPp7Mjt6f0/maxresdefault.jpg") center / cover;
}

.news-thumb-3 {
  background:
    linear-gradient(120deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.8)),
    radial-gradient(circle at 20% 18%, rgba(200, 164, 93, 0.28), transparent 14rem),
    repeating-linear-gradient(90deg, rgba(244, 241, 234, 0.08) 0 1px, transparent 1px 20px),
    #121212;
}

.news-thumb-4 {
  background:
    linear-gradient(120deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.8)),
    radial-gradient(circle at 68% 26%, rgba(226, 58, 58, 0.34), transparent 15rem),
    repeating-linear-gradient(0deg, rgba(244, 241, 234, 0.07) 0 1px, transparent 1px 18px),
    #101010;
}

.article-list-body {
  align-self: center;
  display: grid;
  gap: 12px;
  padding-right: clamp(0px, 5vw, 120px);
}

.article-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(199, 199, 199, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.article-list-meta span:first-child {
  color: var(--gold);
  font-weight: 900;
}

.article-list-title,
.article-list-body h3 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.16;
}

.article-list-body p {
  max-width: 760px;
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  font-weight: 600;
}

.article-list-body h3 a:hover {
  color: var(--gold);
}

.article-page {
  width: min(1500px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 46px 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.article-hero {
  max-width: min(1320px, 100%);
  grid-column: 1;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--silver);
  font-weight: 800;
}

.back-link:hover {
  color: var(--gold);
}

.article-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(199, 199, 199, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-kicker span:first-child {
  color: var(--gold);
  font-weight: 900;
}

.article-hero h1 {
  margin: 16px 0 14px;
  max-width: min(1280px, 100%);
  font-family: Impact, "Arial Black", "Noto Sans TC", sans-serif;
  font-size: clamp(2.2rem, 3.7vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: pretty;
}

.article-hero > p {
  max-width: 980px;
  color: rgba(244, 241, 234, 0.78);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 700;
  text-wrap: pretty;
}

.article-visual {
  display: block;
  position: relative;
  grid-column: 1;
  margin: 22px 0 30px;
  overflow: hidden;
  border: 1px solid rgba(199, 199, 199, 0.22);
  background-color: #050505;
}

.article-visual::after {
  display: none;
}

.article-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
}

.article-visual:not(:has(img)) {
  aspect-ratio: 16 / 9;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.article-visual span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 8px 12px;
  background: var(--red);
  color: var(--off-white);
  font-size: 0.86rem;
  font-weight: 900;
}

.article-content {
  grid-column: 1;
  max-width: min(760px, 100%);
  margin: 0;
}

.article-sidebar,
.ad-slot {
  display: none;
}

.article-content p {
  margin: 0 0 24px;
  color: rgba(244, 241, 234, 0.82);
  font-size: 1.08rem;
  line-height: 1.95;
}

.article-content .article-lead {
  color: var(--off-white);
  font-size: clamp(1.14rem, 1.55vw, 1.34rem);
  font-weight: 800;
  line-height: 1.62;
}

.article-sidebar {
  grid-column: 2;
  grid-row: 1 / span 3;
  position: sticky;
  top: 112px;
  min-width: 0;
}

.ad-slot {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 1px solid rgba(199, 199, 199, 0.18);
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.06), transparent 44%),
    rgba(244, 241, 234, 0.025);
  color: rgba(244, 241, 234, 0.42);
  text-align: center;
}

.ad-slot span {
  color: rgba(199, 199, 199, 0.72);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ad-slot p {
  margin: 0;
  color: rgba(244, 241, 234, 0.32);
  font-family: Impact, "Arial Black", "Noto Sans TC", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.article-note {
  margin-top: 38px;
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: rgba(244, 241, 234, 0.055);
}

.article-note span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-note p {
  margin: 8px 0 0;
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.96rem;
  line-height: 1.75;
}

.related-articles {
  padding-top: 44px;
}

.related-articles .section-head {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 22px;
  margin-bottom: 0;
}

.related-articles .cta-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  justify-items: stretch;
  width: 100%;
  margin-top: 0;
}

.related-articles .cta-actions .btn,
.related-articles .section-head > .btn {
  width: 100%;
  min-height: 54px;
  justify-content: flex-start;
  margin-top: 0;
  text-align: left;
  white-space: normal;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 34px 0 0;
}

.pagination a {
  min-width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  color: rgba(244, 241, 234, 0.78);
  font-weight: 900;
}

.pagination a:hover,
.pagination a.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #070707;
}

.pagination .next {
  padding: 0 18px;
}

.empty-state {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(240px, 0.34fr);
  gap: 36px;
  align-items: start;
}

.empty-state h2 {
  max-width: 780px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
}

.empty-state.compact-final-cta {
  width: min(100%, 1180px);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  padding: clamp(26px, 3vw, 42px);
}

.empty-state.compact-final-cta h2 {
  max-width: 940px;
  font-size: clamp(2.35rem, 4vw, 4.05rem);
  line-height: 0.98;
  text-wrap: balance;
}

.empty-state.compact-final-cta p:not(.section-kicker) {
  max-width: 860px;
  margin-top: 18px;
}

.empty-state.compact-final-cta .cta-actions {
  justify-self: start;
  width: auto;
  margin-top: 0;
}

.empty-state.compact-final-cta .cta-actions-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.empty-state.compact-final-cta .cta-actions-inline .btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 150px;
  margin-top: 0;
}

.empty-state.about-final-cta h2 {
  max-width: none;
  font-size: clamp(2.05rem, 3vw, 3.35rem);
  text-wrap: normal;
}

.empty-state.about-final-cta p:not(.section-kicker) {
  max-width: 1020px;
}

@media (min-width: 921px) {
  .empty-state.compact-final-cta,
  .compact-final-cta {
    width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  }

  .empty-state.compact-final-cta h2,
  .compact-final-cta h2 {
    max-width: none;
    text-wrap: normal;
  }

  .empty-state.home-final-cta h2 {
    white-space: nowrap;
    font-size: clamp(2.35rem, 4vw, 4.55rem);
  }

  .empty-state.video-final-cta h2 {
    white-space: nowrap;
    font-size: clamp(2.1rem, 3.4vw, 3.95rem);
  }

  .about-intro h1 {
    max-width: 1320px;
    text-wrap: normal;
    font-size: clamp(3rem, 5.2vw, 6rem);
  }

  .about-intro p:not(.eyebrow) {
    max-width: 920px;
  }
}

/* WordPress live local-layout match */
body.hello-elementor-default .wp-site-blocks,
body.hello-elementor-default .site-main,
body.hello-elementor-default .page-content,
body.hello-elementor-default .entry-content {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

body.hello-elementor-default .page-content > * {
  max-width: none !important;
}

body.hello-elementor-default .page-content .nav,
body.hello-elementor-default .page-content .section,
body.hello-elementor-default .page-content .hero,
body.hello-elementor-default .page-content .footer-inner {
  width: min(var(--max), calc(100vw - (var(--gutter) * 2))) !important;
  max-width: var(--max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.hello-elementor-default .page-content .editorial-hero {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))) !important;
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))) !important;
}

@media (min-width: 921px) {
  body.hello-elementor-default .page-content .site-footer {
    padding: 52px 0 34px !important;
  }

  body.hello-elementor-default .page-content .footer-inner {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(340px, 0.82fr) minmax(760px, 1.18fr) !important;
    grid-template-rows: auto !important;
    align-items: start !important;
    gap: clamp(64px, 8vw, 150px) !important;
    min-height: 0 !important;
  }

  body.hello-elementor-default .page-content .footer-brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    max-width: 520px !important;
  }

  body.hello-elementor-default .page-content .footer-nav {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: start !important;
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(22px, 3vw, 54px) !important;
  }

  body.hello-elementor-default .page-content .footer-copy {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    margin: 0 !important;
    text-align: right !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 920px) {
  body.hello-elementor-default .page-content .nav,
  body.hello-elementor-default .page-content .section,
  body.hello-elementor-default .page-content .hero,
  body.hello-elementor-default .page-content .footer-inner {
    width: calc(100vw - 32px) !important;
  }

  body.hello-elementor-default .page-content .editorial-hero {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.empty-state .btn {
  width: min(100%, 330px);
  justify-self: end;
  margin-top: 76px;
}

.cta-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
  margin-top: 76px;
}

.cta-actions .btn {
  width: min(100%, 330px);
  margin-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 26px;
}

.contact-card {
  align-self: start;
}

.contact-guide {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  display: grid;
  align-content: center;
  gap: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(200, 164, 93, 0.12), transparent 34%),
    linear-gradient(140deg, rgba(244, 241, 234, 0.06), rgba(8, 8, 8, 0.95) 46%),
    #0b0b0b;
}

.contact-guide::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(199, 199, 199, 0.16);
  border-radius: 38px;
  transform: rotate(12deg);
  opacity: 0.55;
}

.contact-guide h3 {
  margin: 0;
  max-width: 8em;
  color: var(--off-white);
  font-family: Impact, "Arial Black", "Noto Sans TC", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.05;
  text-wrap: balance;
}

.contact-guide > p {
  max-width: 520px;
  margin: 0;
  color: rgba(244, 241, 234, 0.74);
  font-size: 1.05rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.contact-guide-steps {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.contact-guide-steps span {
  border: 1px solid rgba(199, 199, 199, 0.16);
  background: rgba(244, 241, 234, 0.045);
  padding: 12px 14px;
  color: rgba(244, 241, 234, 0.88);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.contact-guide-note {
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.contact-guide-note strong {
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-guide-note p {
  margin: 8px 0 0;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.75;
}

.contact-newsletter {
  display: grid;
  gap: 2px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(200, 164, 93, 0.42);
  background: rgba(200, 164, 93, 0.08);
}

.contact-newsletter span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-newsletter strong {
  color: var(--off-white);
}

.social-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links {
  justify-self: end;
}

.social-links {
  margin-top: 22px;
  justify-content: center;
}

.contact-card .plain-list {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.contact-card .plain-list li {
  display: flex;
  justify-content: center;
}

.contact-card .social-icon-row {
  width: 100%;
}

.social-links a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  color: rgba(244, 241, 234, 0.78);
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  font-size: 0.86rem;
  background: transparent;
}

.social-icon-row a {
  font-size: 0;
}

.footer-email {
  color: var(--silver);
  font-weight: 700;
}

.social-icon-row img {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

.footer-links span,
.social-links span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.social-links a:hover,
.footer-links a:hover {
  color: var(--off-white);
  border-color: rgba(200, 164, 93, 0.48);
}

.form-shell {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--silver);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.78);
  color: var(--off-white);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  min-height: 152px;
  resize: vertical;
}

.trap-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.5em;
  margin: -2px 0 0;
  color: rgba(244, 241, 234, 0.76);
  font-weight: 800;
  line-height: 1.5;
}

.form-status.success {
  color: var(--gold);
}

.form-status.error {
  color: #ff8a8a;
}

.form-shell button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 52px 0 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(200, 164, 93, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(226, 58, 58, 0.08), transparent 30%),
    #050505;
}

.footer-inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(760px, 1.18fr);
  align-items: start;
  gap: clamp(64px, 8vw, 150px);
  color: rgba(244, 241, 234, 0.62);
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand > strong {
  color: var(--off-white);
  font-family: Impact, "Arial Black", "Noto Sans TC", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: rgba(244, 241, 234, 0.62);
  line-height: 1.7;
}

.footer-brand .ktsg-nowrap {
  white-space: nowrap;
}

.footer-brand .footer-links {
  justify-self: start;
}

.footer-nav {
  grid-column: 2;
  justify-self: end;
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 54px);
}

.footer-nav h3 {
  margin: 0 0 18px;
  color: var(--off-white);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  margin-top: 13px;
  color: rgba(244, 241, 234, 0.56);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-nav a:hover {
  color: var(--off-white);
}

.footer-newsletter {
  display: grid;
  gap: 3px;
  justify-self: start;
  width: min(100%, 360px);
  margin-top: 2px;
  padding: 16px 18px;
  border: 1px solid rgba(199, 199, 199, 0.2);
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.16), transparent 44%),
    rgba(244, 241, 234, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-newsletter span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-newsletter strong {
  color: var(--off-white);
  font-family: Impact, "Arial Black", "Noto Sans TC", sans-serif;
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.25;
}

.footer-newsletter small {
  color: rgba(244, 241, 234, 0.62);
  line-height: 1.45;
}

.footer-newsletter:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 164, 93, 0.56);
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.22), transparent 44%),
    rgba(244, 241, 234, 0.065);
}

.footer-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: right;
  white-space: nowrap;
}

.footer-copy span {
  display: inline;
}

@keyframes ktIconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes ktWave {
  0%, 100% {
    background-position: 0 0, 0 0;
  }
  50% {
    background-position: 8px 0, 0 0;
  }
}

@keyframes ktRise {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes ktLights {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

@keyframes ktPulse {
  0%, 100% {
    opacity: 0.18;
  }
  50% {
    opacity: 0.42;
  }
}

@keyframes ktScan {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 36px 0, 0 0;
  }
}

@keyframes ktBars {
  0%, 100% {
    transform: scaleY(0.92);
  }
  50% {
    transform: scaleY(1.05);
  }
}

@keyframes ktLayers {
  0%, 100% {
    background-position: 0 0, 0 0;
  }
  50% {
    background-position: 9px 9px, 0 -4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .logo-track {
    animation: none !important;
  }
}

@media (min-width: 1280px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: clamp(56px, 5vw, 96px);
  }

  .editorial-hero {
    grid-template-columns: minmax(360px, 780px) 1fr;
    gap: 0;
  }

  .hero-media {
    min-height: 560px;
  }

  .featured-content,
  .video-feature-grid,
  .youtube-video-grid,
  .short-video-grid {
    gap: 22px;
  }

  .feature-image,
  .content-thumb {
    min-height: 360px;
  }
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .hero,
  .section-head,
  .split-band,
  .about-story-grid,
  .about-culture-grid,
  .service-detail,
  .empty-state,
  .contact-layout,
  .video-feature-grid,
  .youtube-video-grid,
  .home-show-grid,
  .partner-editorial,
  .featured-content,
  .featured-story,
  .article-list-item {
    grid-template-columns: 1fr;
  }

  .featured-archive-link {
    justify-self: start;
  }

  .article-page {
    grid-template-columns: 1fr;
    width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  }

  .article-sidebar {
    display: none;
  }

  .impact-strip {
    grid-template-columns: 1fr;
  }

  .about-pillars .stats {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .about-hero-video {
    object-position: center;
  }

  .about-statement,
  .about-image-card {
    min-height: 0;
  }

  .about-image-card {
    aspect-ratio: 16 / 10;
  }

  .about-story-grid,
  .about-culture-grid,
  .about-pillars,
  .about-cta-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .about-culture-copy {
    padding: 26px;
  }

  .cta-actions-inline {
    justify-content: flex-start;
  }

  .impact-item {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 199, 199, 0.18);
  }

  .impact-item:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .editorial-hero {
    display: flex;
    align-items: flex-end;
    min-height: 780px;
    padding: 430px 22px 48px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.06) 38%, rgba(5, 5, 5, 0.78) 64%, rgba(5, 5, 5, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.42), transparent 44%, rgba(5, 5, 5, 0.25)),
      url("assets/hero/hero-kt-slowgrind-mobile-4x5.png") center top / 100% auto no-repeat;
    background-color: var(--black);
  }

  .editorial-hero > div:first-child {
    max-width: 680px;
  }

  .hero-media {
    min-height: 360px;
  }

  .visual-topline {
    top: 10%;
    left: 8%;
    right: 8%;
    font-size: 0.72rem;
  }

  .hero-ghost-logo {
    width: min(88%, 460px);
    opacity: 0.18;
    transform: rotate(-6deg) translate(2%, -18%);
  }

  .visual-stack {
    left: 8%;
    right: 8%;
    bottom: 34%;
    gap: 8px;
  }

  .visual-stack span {
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .section-head > p {
    margin-top: 0;
    justify-self: start;
    max-width: none;
  }

  .section-head > .btn {
    justify-self: start;
    margin-bottom: 0;
  }

  .empty-state .btn {
    justify-self: start;
    margin-top: 0;
  }

  .cta-actions {
    justify-items: start;
    margin-top: 0;
  }

  .service-detail > div:nth-child(2) {
    grid-template-columns: 1fr;
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.four,
  .grid.five,
  .process-board,
  .icon-preview-grid,
  .latest-grid,
  .short-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .latest-card-wide,
  .latest-card-short {
    grid-column: auto;
  }

  .latest-card-short {
    grid-template-columns: 1fr;
  }

  .latest-card-short .content-thumb,
  .home-show-short .content-thumb {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .home-show-wide,
  .home-show-short {
    grid-column: auto;
  }

  .home-show-short {
    grid-template-columns: 1fr;
  }

  .process-step:nth-child(2n) {
    border-right: 0;
  }

  .video-card-feature {
    grid-row: auto;
  }

  .article-list-body {
    padding-right: 0;
  }

  .article-visual {
    min-height: 340px;
  }

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

  .footer-newsletter {
    justify-self: start;
    width: min(100%, 420px);
  }

  .footer-links {
    justify-self: start;
  }

  .footer-nav {
    grid-column: auto;
    justify-self: start;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-copy {
    position: static;
    grid-column: auto;
    margin-top: 10px;
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .language-link {
    margin-left: auto;
  }

  .nav-links {
    display: none;
  }

  .nav-links a {
    padding: 8px 9px;
    font-size: 0.84rem;
  }

  .menu-panel {
    width: calc(100vw - 32px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.8rem);
  }

  .editorial-hero .hero-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 9.4vw, 2.65rem);
    line-height: 1.02;
  }

  .editorial-hero {
    width: 100%;
    min-height: auto;
    align-items: flex-start;
    padding: clamp(300px, 82vw, 350px) 16px 32px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.08) 48%, rgba(5, 5, 5, 0.82) 72%, #050505 100%),
      url("media/home-hero-mobile-centered.webp") center top / 100% auto no-repeat;
  }

  .editorial-hero > div:first-child {
    width: 100%;
    max-width: 100%;
  }

  .editorial-hero .eyebrow {
    max-width: 100%;
    font-size: 0.78rem;
  }

  .editorial-hero .hero-label-row {
    max-width: 100%;
    gap: 6px;
  }

  .hero-title span {
    white-space: normal;
  }

  .editorial-hero .hero-copy {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.62;
    padding-left: 12px;
  }

  .editorial-hero .button-row {
    margin-top: 24px;
  }

  .hero-media {
    min-height: 300px;
    padding: 18px;
  }

  .hero-media::after {
    display: none;
  }

  .visual-topline {
    display: none;
  }

  .hero-ghost-logo {
    width: 110%;
    opacity: 0.14;
    transform: rotate(-7deg) translate(0, -20%);
  }

  .visual-stack {
    display: none;
  }

  .hero-panel {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
    bottom: 18px;
    padding: 16px 0 14px;
  }

  .hero-panel p:not(.section-kicker) {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .article-list-section {
    padding-top: 10px;
  }

  .category-nav-section {
    padding: 14px 0;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 42px;
  }

  .logo-marquee .logo-tile {
    width: 168px;
    min-height: 134px;
  }

  .logo-track {
    animation-duration: 28s;
  }

  .short-video-grid {
    grid-template-columns: 1fr;
  }

  .short-video-card .media-frame.instagram {
    aspect-ratio: 4 / 5;
  }

  .article-list-item {
    gap: 16px;
    padding: 22px 0;
  }

  .article-list-thumb {
    min-height: 0;
  }

  .article-list-body h3 {
    font-size: clamp(1.42rem, 7vw, 2.1rem);
  }

  .article-page {
    padding-top: 50px;
  }

  .article-hero h1 {
    font-size: clamp(2.1rem, 9vw, 3.35rem);
  }

  .article-visual {
    min-height: 0;
    margin: 30px 0;
  }

  .article-content p {
    font-size: 1rem;
    line-height: 1.85;
  }

  .pagination {
    justify-content: flex-start;
  }

  .service-detail {
    padding: 20px;
  }

  .service-detail > div:first-child {
    grid-template-columns: 54px 36px minmax(0, 1fr);
    gap: 12px;
  }

  .service-icon.large {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
  }

  .service-detail h2 {
    font-size: clamp(1.55rem, 9vw, 2.5rem);
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .grid.five,
  .form-grid,
  .process-board,
  .icon-preview-grid,
  .latest-grid,
  .youtube-video-grid,
  .short-video-grid,
  .home-show-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(2n) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .ticker {
    overflow-x: auto;
  }

  .impact-strip {
    margin-top: 18px;
  }

  .impact-item strong {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .section,
  .page-hero {
    padding: 58px 0;
  }

  .footer-inner {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-newsletter {
    padding: 14px 16px;
  }

  .footer-newsletter strong {
    font-size: clamp(1.38rem, 8vw, 2rem);
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 22px;
  }

  .footer-nav h3 {
    margin-bottom: 12px;
    font-size: 0.88rem;
  }

  .footer-nav a {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .footer-nav > div:nth-child(3) {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 22px;
    padding-top: 4px;
    border-top: 1px solid rgba(199, 199, 199, 0.14);
  }

  .footer-nav > div:nth-child(3) h3 {
    width: 100%;
    margin: 0 0 2px;
  }

  .footer-nav > div:nth-child(3) a {
    margin-top: 0;
  }

  .footer-copy {
    margin-top: 0;
    font-size: 0.82rem;
  }
}

/* WordPress live full-bleed correction */
html,
body {
  overflow-x: hidden;
}

body.hello-elementor-default .site-main,
body.hello-elementor-default .page-content {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow-x: hidden;
}

body.hello-elementor-default .page-content > style {
  display: none;
}

body.hello-elementor-default .page-content .site-header,
body.hello-elementor-default .page-content .site-footer,
body.hello-elementor-default .page-content main {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.hello-elementor-default .page-content section {
  box-sizing: border-box;
}

body.hello-elementor-default .page-content .nav,
body.hello-elementor-default .page-content .footer-inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2))) !important;
  max-width: var(--max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.hello-elementor-default .page-content .site-footer {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.hello-elementor-default .page-content .footer-inner {
  min-height: 0;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1fr);
  gap: clamp(72px, 10vw, 190px);
}

body.hello-elementor-default .page-content .footer-nav {
  grid-column: 2;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  padding-right: 0;
}

body.hello-elementor-default .page-content .footer-copy {
  right: 0;
  bottom: 0;
}

body.hello-elementor-default .page-content a {
  text-decoration: none !important;
}

body.hello-elementor-default > .site-header,
body.hello-elementor-default > .site-footer,
body.hello-elementor-default .page-header,
body.hello-elementor-default .entry-header,
body.hello-elementor-default .entry-title {
  display: none !important;
}

@media (max-width: 920px) {
  body.hello-elementor-default .site-main,
  body.hello-elementor-default .page-content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.hello-elementor-default .page-content .nav,
  body.hello-elementor-default .page-content .footer-inner {
    width: min(var(--max), calc(100% - (var(--gutter) * 2))) !important;
  }

  body.hello-elementor-default .page-content .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body.hello-elementor-default .page-content .footer-nav {
    grid-column: auto;
  }

  body.hello-elementor-default .page-content .footer-copy {
    position: static;
  }
}

/* WordPress live desktop footer positioning */
@media (min-width: 921px) {
  body.hello-elementor-default .page-content .site-footer {
    padding: 52px 0 36px !important;
  }

  body.hello-elementor-default .page-content .footer-inner {
    display: grid !important;
    grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1fr) !important;
    grid-template-rows: auto auto !important;
    column-gap: clamp(72px, 10vw, 190px) !important;
    row-gap: 34px !important;
    align-items: start !important;
    min-height: 360px !important;
  }

  body.hello-elementor-default .page-content .footer-brand {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    max-width: 520px !important;
  }

  body.hello-elementor-default .page-content .footer-brand p {
    max-width: 360px !important;
  }

  body.hello-elementor-default .page-content .footer-newsletter {
    width: min(100%, 500px) !important;
  }

  body.hello-elementor-default .page-content .footer-nav {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: stretch !important;
    align-self: start !important;
    width: 100% !important;
    max-width: 760px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
    gap: clamp(32px, 5vw, 84px) !important;
  }

  body.hello-elementor-default .page-content .footer-copy {
    grid-column: 2 !important;
    grid-row: 2 !important;
    position: static !important;
    justify-self: end !important;
    align-self: start !important;
    margin: 0 !important;
    max-width: none !important;
    text-align: right !important;
    white-space: nowrap !important;
  }
}

/* Keep the tablet footer inside the viewport before the stacked layout begins. */
@media (min-width: 921px) and (max-width: 1199px) {
  body.hello-elementor-default .page-content .footer-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr) !important;
    column-gap: 48px !important;
  }

  body.hello-elementor-default .page-content .footer-nav {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.hello-elementor-default .page-content .footer-copy {
    position: static !important;
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    justify-self: start !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 8px !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}
