/**
 * 더샵 신길센트럴시티(조합원 취소분)
 * Official-site-derived navy palette with restrained white and steel accents.
 */

:root {
  --tsc-navy: #001241;
  --tsc-navy-deep: #00091f;
  --tsc-blue: #102b72;
  --tsc-steel: #3b528e;
  --tsc-sky: #aab9da;
  --tsc-ink: #111827;
  --tsc-body: #465166;
  --tsc-muted: #727c8e;
  --tsc-paper: #fff;
  --tsc-paper-alt: #f4f6fa;
  --tsc-line: #dce2ec;
  --tsc-accent: #c8a96c;
  --tsc-header-height: 80px;
  --tsc-max: 1180px;
  --tsc-radius: 18px;
  --tsc-ease: cubic-bezier(.22, 1, .36, 1);
  --tsc-shadow: 0 22px 60px rgba(0, 18, 65, .13);
}

html:has(body.apt44-tsc-active) {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--tsc-header-height) + 20px);
}

body.apt44-tsc-active {
  margin: 0;
  overflow-x: clip;
  color: var(--tsc-body);
  background: var(--tsc-paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: -.018em;
  -webkit-font-smoothing: antialiased;
}

body.apt44-tsc-active.admin-bar .tsc-header { top: 32px; }
body.apt44-tsc-active.tsc-menu-open { overflow: hidden; }
body.apt44-tsc-active :where(a, button, [tabindex]):focus-visible {
  outline: 3px solid #f0c878;
  outline-offset: 3px;
}

.tsc-shell,
.tsc-shell * { box-sizing: border-box; }
.tsc-shell { position: relative; min-height: 100vh; isolation: isolate; background: var(--tsc-paper); }
.tsc-shell a { color: inherit; text-decoration: none; }
.tsc-shell img { display: block; max-width: 100%; height: auto; }
.tsc-shell :where(h1, h2, h3, h4, p, figure, ul, ol) { margin-top: 0; }
.tsc-shell :where(.wp-block-group, .wp-block-columns, .wp-block-image, .wp-block-buttons, .wp-block-table) { margin-top: 0; margin-bottom: 0; }
.tsc-shell .wp-block-group__inner-container { max-width: none; }

/* Fixed project chrome */
.tsc-skip-link {
  position: fixed; z-index: 10001; top: 8px; left: 8px; padding: 12px 18px;
  color: #fff !important; background: var(--tsc-navy); border-radius: 999px;
  transform: translateY(-180%); transition: transform .2s ease;
}
.tsc-skip-link:focus { transform: translateY(0); }

.tsc-header {
  position: fixed; z-index: 9000; top: 0; right: 0; left: 0; height: var(--tsc-header-height);
  color: #fff; background: rgba(0, 9, 31, .78); border-bottom: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(16px) saturate(130%); transition: background .3s ease, box-shadow .3s ease;
}
.tsc-header.is-scrolled { background: rgba(0, 9, 31, .97); box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.tsc-header__inner { display: flex; align-items: center; gap: 20px; max-width: 1400px; height: 100%; margin: 0 auto; padding: 0 24px; }
.tsc-brand { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; color: #fff !important; }
.tsc-brand__symbol { padding: 8px 10px; border: 1px solid rgba(255,255,255,.72); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.tsc-brand__name { display: flex; flex-direction: column; line-height: 1.12; }
.tsc-brand__name strong { font-size: 19px; font-weight: 800; letter-spacing: .01em; }
.tsc-brand__name small { margin-top: 5px; color: var(--tsc-sky); font-size: 11px; letter-spacing: .1em; }
.tsc-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.tsc-nav > a { position: relative; padding: 10px 10px; color: rgba(255,255,255,.88); font-size: 14px; font-weight: 650; white-space: nowrap; border-radius: 8px; }
.tsc-nav > a:not(.tsc-nav__call)::after { content: ""; position: absolute; right: 10px; bottom: 4px; left: 10px; height: 2px; background: var(--tsc-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--tsc-ease); }
.tsc-nav > a:hover::after, .tsc-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.tsc-nav__call { display: flex !important; flex-direction: column; margin-left: 8px; padding: 7px 15px !important; color: #fff !important; background: var(--tsc-blue); border: 1px solid rgba(255,255,255,.48); border-radius: 999px !important; line-height: 1.15; animation: tsc-nudge 3.8s var(--tsc-ease) infinite; }
.tsc-nav__call small { color: var(--tsc-sky); font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.tsc-menu-toggle { display: none; align-items: center; gap: 8px; margin-left: auto; padding: 9px 14px; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.5); border-radius: 999px; font: inherit; font-size: 14px; font-weight: 750; cursor: pointer; animation: tsc-nudge 3.5s var(--tsc-ease) infinite; }
.tsc-menu-toggle i { display: block; width: 17px; height: 2px; background: #fff; transition: transform .25s var(--tsc-ease); }
.tsc-menu-toggle i + i { margin-top: 4px; }
.tsc-menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3px) rotate(45deg); }
.tsc-menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3px) rotate(-45deg); }

/* Official exterior hero */
.tsc-hero { position: relative; display: grid; min-height: 62vh; overflow: hidden; color: #fff; background: var(--tsc-navy); }
.tsc-hero--landing { min-height: 78svh; }
.tsc-hero__media, .tsc-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.tsc-hero__media img { object-fit: cover; object-position: center 48%; }
.tsc-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,7,28,.84) 0%, rgba(0,12,45,.44) 48%, rgba(0,7,28,.2) 100%), linear-gradient(0deg, rgba(0,7,28,.72) 0%, transparent 45%); }
.tsc-hero__content { position: relative; z-index: 2; align-self: end; width: min(var(--tsc-max), calc(100% - 48px)); margin: 0 auto; padding: calc(var(--tsc-header-height) + 60px) 0 100px; }
.tsc-hero--landing .tsc-hero__content { padding-bottom: 13vh; }
.tsc-eyebrow { margin-bottom: 16px; color: #d9c28e; font-size: 13px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.tsc-hero h1 { max-width: 980px; margin-bottom: 22px; color: #fff; font-size: clamp(44px, 6vw, 88px); font-weight: 760; line-height: 1.07; letter-spacing: -.055em; text-wrap: balance; text-shadow: 0 8px 40px rgba(0,0,0,.34); }
.tsc-title-primary, .tsc-title-secondary, .tsc-title-topic { display: block; }
.tsc-title-primary { white-space: nowrap; }
.tsc-title-secondary { margin-top: .08em; font-size: .72em; }
.tsc-title-topic { margin-top: .14em; font-size: .58em; letter-spacing: -.035em; }
.tsc-hero--sub h1 { font-size: clamp(40px, 5vw, 68px); }
.tsc-hero__content > p:last-of-type { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.86); font-size: clamp(16px, 1.5vw, 20px); }
.tsc-hero__scroll { display: inline-flex; gap: 12px; align-items: center; margin-top: 32px; padding: 13px 19px; color: #fff !important; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; font-size: 14px; font-weight: 700; }
.tsc-hero__scroll span { animation: tsc-down 1.8s ease-in-out infinite; }
.tsc-hero__caption { position: absolute; z-index: 2; right: 24px; bottom: 18px; margin: 0; color: rgba(255,255,255,.7); font-size: 12px; }

/* Direct official VR */
.tsc-vr-wrap { color: #fff; background: var(--tsc-navy-deep); border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.tsc-vr-toolbar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; width: min(var(--tsc-max), calc(100% - 48px)); margin: 0 auto; padding: 22px 0; }
.tsc-vr-toolbar > span { color: #d9c28e; font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.tsc-vr-toolbar strong { font-size: 18px; }
.tsc-vr-toolbar a { padding: 9px 13px; color: #fff !important; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; font-size: 13px; }
.tsc-vr-frame { width: 100%; height: clamp(520px, 72vh, 820px); background: #0a0f1c; }
.tsc-vr-frame iframe { display: block; width: 100%; height: 100%; border: 0; background: #0a0f1c; }
.tsc-vr-note { width: min(var(--tsc-max), calc(100% - 48px)); margin: 0 auto; padding: 16px 0 20px; color: rgba(255,255,255,.66); font-size: 13px; }

/* Editable Gutenberg content */
.tsc-content { background: var(--tsc-paper); }
.tsc-section { padding: clamp(72px, 9vw, 124px) 24px; }
.tsc-section > .wp-block-group__inner-container { width: min(var(--tsc-max), 100%); margin: 0 auto; }
.tsc-section--compact { padding-top: 58px; padding-bottom: 58px; }
.tsc-section--soft { background: var(--tsc-paper-alt); }
.tsc-section--navy { color: rgba(255,255,255,.78); background: var(--tsc-navy); }
.tsc-section--navy :where(h2,h3,h4,strong) { color: #fff; }
.tsc-section--navy a { color: #fff; }
.tsc-section-heading { max-width: 850px; margin-bottom: 42px; }
.tsc-section-heading > p:first-child, .tsc-kicker { margin-bottom: 10px; color: var(--tsc-steel); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.tsc-section--navy .tsc-section-heading > p:first-child, .tsc-section--navy .tsc-kicker { color: #d9c28e; }
.tsc-section-heading h2, .tsc-section h2 { margin-bottom: 18px; color: var(--tsc-ink); font-size: clamp(34px, 4.4vw, 58px); font-weight: 760; line-height: 1.14; letter-spacing: -.045em; text-wrap: balance; }
.tsc-section h3 { color: var(--tsc-ink); font-size: clamp(22px, 2.6vw, 31px); line-height: 1.3; letter-spacing: -.03em; }
.tsc-lead { max-width: 860px; color: var(--tsc-body); font-size: clamp(19px, 2vw, 23px); line-height: 1.65; }
.tsc-section--navy .tsc-lead { color: rgba(255,255,255,.78); }

.tsc-toc { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; padding: 0; list-style: none; }
.tsc-toc li { margin: 0; }
.tsc-toc a { display: flex; align-items: center; min-height: 64px; padding: 14px 16px; color: var(--tsc-ink); background: #fff; border: 1px solid var(--tsc-line); border-radius: 12px; font-size: 14px; font-weight: 700; transition: transform .25s var(--tsc-ease), border-color .25s ease, box-shadow .25s ease; }
.tsc-toc a:hover { transform: translateY(-3px); border-color: var(--tsc-steel); box-shadow: 0 12px 24px rgba(0,18,65,.09); }

.tsc-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.tsc-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tsc-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tsc-card { height: 100%; padding: 28px; background: #fff; border: 1px solid var(--tsc-line); border-radius: var(--tsc-radius); box-shadow: 0 10px 30px rgba(0,18,65,.055); }
.tsc-card h3, .tsc-card h4 { margin-bottom: 12px; }
.tsc-card p:last-child, .tsc-card ul:last-child { margin-bottom: 0; }
.tsc-card__number { display: block; margin-bottom: 20px; color: var(--tsc-blue); font-size: 42px; font-weight: 800; line-height: 1; }
.tsc-section--navy .tsc-card { color: rgba(255,255,255,.72); background: rgba(255,255,255,.065); border-color: rgba(255,255,255,.15); box-shadow: none; }
.tsc-section--navy .tsc-card__number { color: #d9c28e; }
.tsc-section--navy .tsc-card h3 { color: #fff; }

.tsc-facts { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; overflow: hidden; background: var(--tsc-line); border: 1px solid var(--tsc-line); border-radius: var(--tsc-radius); }
.tsc-fact { min-height: 150px; padding: 28px; background: #fff; }
.tsc-fact small { display: block; margin-bottom: 10px; color: var(--tsc-muted); font-size: 12px; font-weight: 750; letter-spacing: .08em; }
.tsc-fact strong { display: block; color: var(--tsc-navy); font-size: clamp(22px, 2.4vw, 31px); line-height: 1.25; }

.tsc-figure { overflow: hidden; background: var(--tsc-paper-alt); border-radius: var(--tsc-radius); box-shadow: var(--tsc-shadow); }
.tsc-figure img { width: 100%; }
.tsc-figure figcaption { padding: 16px 20px; color: var(--tsc-muted); font-size: 13px; }
.tsc-media-columns { align-items: center !important; gap: clamp(28px, 5vw, 70px); }

.tsc-note { padding: 20px 22px; color: var(--tsc-body); background: #f8f5ee; border-left: 4px solid var(--tsc-accent); border-radius: 0 12px 12px 0; }
.tsc-note strong { color: var(--tsc-ink); }
.tsc-source-list { padding-left: 1.25em; }
.tsc-source-list li + li { margin-top: 10px; }
.tsc-source-list a { color: var(--tsc-blue); text-decoration: underline; text-underline-offset: 3px; }
.tsc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px !important; }
.tsc-actions .wp-block-button__link { min-height: 48px; padding: 13px 22px; color: #fff; background: var(--tsc-blue); border: 1px solid var(--tsc-blue); border-radius: 999px; font-weight: 750; }
.tsc-actions .is-style-outline .wp-block-button__link { color: var(--tsc-navy); background: transparent; border-color: var(--tsc-navy); }
.tsc-section--navy .tsc-actions .is-style-outline .wp-block-button__link { color: #fff; border-color: rgba(255,255,255,.55); }

.tsc-table-hint { margin: 0 0 9px; color: var(--tsc-blue); font-size: 14px; font-weight: 750; }
.tsc-scroll-region { max-width: 100%; overflow-x: auto; border: 1px solid var(--tsc-line); border-radius: 12px; -webkit-overflow-scrolling: touch; }
.tsc-scroll-region table { width: 100%; min-width: 720px; margin: 0; border-collapse: collapse; background: #fff; }
.tsc-scroll-region th, .tsc-scroll-region td { padding: 14px 16px; border: 1px solid var(--tsc-line); text-align: left; white-space: nowrap; }
.tsc-scroll-region th { color: #fff; background: var(--tsc-navy); font-weight: 750; }
.tsc-scroll-region tbody tr:nth-child(even) td { background: #f7f9fc; }

/* Article */
.tsc-blog-masthead { position: relative; display: grid; min-height: 68vh; overflow: hidden; color: #fff; background: var(--tsc-navy); }
.tsc-blog-masthead__image, .tsc-blog-masthead__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.tsc-blog-masthead__image { object-fit: cover; }
.tsc-blog-masthead__shade { background: linear-gradient(90deg, rgba(0,7,28,.92), rgba(0,12,45,.45)), linear-gradient(0deg, rgba(0,7,28,.75), transparent 55%); }
.tsc-blog-masthead__inner { position: relative; z-index: 2; align-self: end; width: min(980px, calc(100% - 48px)); margin: 0 auto; padding: calc(var(--tsc-header-height) + 70px) 0 80px; }
.tsc-blog-masthead h1 { margin-bottom: 22px; color: #fff; font-size: clamp(40px, 5.7vw, 76px); line-height: 1.12; letter-spacing: -.05em; text-wrap: balance; }
.tsc-blog-masthead__inner > p:last-child { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.82); font-size: 19px; }
.tsc-blog-body { background: #fff; }
.tsc-blog-body > :not(.tsc-vr-wrap):not(.tsc-section) { width: min(900px, calc(100% - 48px)); margin-right: auto; margin-left: auto; }
.tsc-blog-body .tsc-section > .wp-block-group__inner-container { max-width: 900px; }
.tsc-blog-body .tsc-section-heading h2, .tsc-blog-body .tsc-section h2 { font-size: clamp(31px, 4vw, 48px); }
.tsc-blog-body .tsc-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.tsc-blog-body blockquote { margin: 24px 0; padding: 20px 24px; color: var(--tsc-navy); background: var(--tsc-paper-alt); border-left: 4px solid var(--tsc-steel); }
.tsc-blog-body code { padding: 2px 5px; background: #eef1f7; border-radius: 4px; }

/* Footer and persistent conversion */
.tsc-footer { padding: 72px 24px 110px; color: rgba(255,255,255,.72); background: var(--tsc-navy-deep); }
.tsc-footer__inner { display: grid; grid-template-columns: 1.1fr .8fr 1.4fr; gap: 42px; width: min(var(--tsc-max), 100%); margin: 0 auto; }
.tsc-footer__eyebrow { margin-bottom: 10px; color: #d9c28e; font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.tsc-footer__logo { margin-bottom: 0; color: #fff; font-size: 25px; font-weight: 750; line-height: 1.35; }
.tsc-footer address { font-style: normal; }
.tsc-footer address a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.tsc-footer-menu { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 9px; }
.tsc-footer-menu a { padding: 9px 12px; color: #fff; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: 13px; animation: tsc-footer-shift 5.2s ease-in-out infinite; }
.tsc-footer-menu a:nth-child(2n) { animation-delay: .7s; }
.tsc-footer__notice { width: min(var(--tsc-max), 100%); margin: 42px auto 0; padding-top: 24px; color: rgba(255,255,255,.48); border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.tsc-floating-call { position: fixed; z-index: 8800; right: 24px; bottom: 22px; display: flex; flex-direction: column; min-width: 184px; padding: 13px 20px; color: #fff !important; background: var(--tsc-blue); border: 1px solid rgba(255,255,255,.48); border-radius: 999px; box-shadow: 0 16px 38px rgba(0,9,31,.35); line-height: 1.15; text-align: center; animation: tsc-call 3.7s var(--tsc-ease) infinite; }
.tsc-floating-call small { color: var(--tsc-sky); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.tsc-floating-call strong { font-size: 18px; }

/* Progressive reveal: content remains visible without JavaScript. */
.tsc-motion-ready .tsc-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--tsc-ease), transform .8s var(--tsc-ease); }
.tsc-motion-ready .tsc-reveal.is-visible { opacity: 1; transform: none; }

@keyframes tsc-nudge { 0%, 82%, 100% { transform: translateX(0); } 88% { transform: translateX(-3px); } 93% { transform: translateX(3px); } }
@keyframes tsc-call { 0%, 80%, 100% { transform: translateY(0); } 87% { transform: translateY(-5px); } 93% { transform: translateY(0); } }
@keyframes tsc-down { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@keyframes tsc-footer-shift { 0%,90%,100% { transform: translateY(0); } 95% { transform: translateY(-2px); } }

@media (max-width: 1240px) {
  .tsc-menu-toggle { display: flex; }
  .tsc-nav { position: fixed; z-index: 8999; top: var(--tsc-header-height); right: 0; bottom: 0; width: min(420px, 100%); padding: 22px; overflow-y: auto; flex-direction: column; align-items: stretch; gap: 4px; color: #fff; background: rgba(0,9,31,.99); transform: translateX(105%); visibility: hidden; transition: transform .38s var(--tsc-ease), visibility .38s; }
  body.admin-bar .tsc-nav { top: calc(var(--tsc-header-height) + 32px); }
  .tsc-nav.is-open { transform: none; visibility: visible; }
  .tsc-nav > a { min-height: 48px; padding: 13px 14px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .tsc-nav__call { margin: 16px 0 0; padding: 12px 18px !important; align-items: center; }
}

@media (max-width: 900px) {
  .tsc-grid, .tsc-grid--4, .tsc-blog-body .tsc-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tsc-facts { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tsc-toc { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tsc-footer__inner { grid-template-columns: 1fr 1fr; }
  .tsc-footer-menu { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --tsc-header-height: 60px; }
  body.apt44-tsc-active { font-size: 16px; }
  body.apt44-tsc-active.admin-bar .tsc-header { top: 46px; }
  body.admin-bar .tsc-nav { top: calc(var(--tsc-header-height) + 46px); }
  .tsc-header__inner { padding: 0 14px; }
  .tsc-brand { gap: 8px; }
  .tsc-brand__symbol { padding: 6px 7px; font-size: 9px; }
  .tsc-brand__name strong { font-size: 15px; }
  .tsc-brand__name small { display: none; }
  .tsc-menu-toggle { padding: 8px 12px; }
  .tsc-hero--landing { min-height: 64svh; }
  .tsc-hero--sub { min-height: 54svh; }
  .tsc-hero__media img { object-position: center center; }
  .tsc-hero__shade { background: linear-gradient(0deg, rgba(0,7,28,.91) 0%, rgba(0,12,45,.42) 74%, rgba(0,7,28,.25) 100%); }
  .tsc-hero__content { width: calc(100% - 32px); padding-bottom: 70px; }
  .tsc-hero--landing .tsc-hero__content { padding-bottom: 11vh; }
  .tsc-hero h1 { font-size: clamp(35px, 11vw, 50px); }
  .tsc-title-primary { white-space: normal; }
  .tsc-title-brand, .tsc-title-site { display: block; }
  .tsc-title-secondary { font-size: .72em; }
  .tsc-hero__caption { right: 14px; bottom: 10px; left: 14px; font-size: 10px; text-align: right; }
  .tsc-vr-toolbar { grid-template-columns: 1fr; gap: 8px; width: calc(100% - 32px); padding: 17px 0; }
  .tsc-vr-toolbar a { justify-self: start; }
  .tsc-vr-frame { height: 62svh; min-height: 430px; }
  .tsc-vr-note { width: calc(100% - 32px); }
  .tsc-section { padding: 68px 16px; }
  .tsc-section--compact { padding-top: 44px; padding-bottom: 44px; }
  .tsc-grid, .tsc-grid--2, .tsc-grid--4, .tsc-blog-body .tsc-grid { grid-template-columns: 1fr; }
  .tsc-facts { grid-template-columns: 1fr; }
  .tsc-toc { grid-template-columns: 1fr; }
  .tsc-card { padding: 22px; }
  .tsc-blog-masthead { min-height: 63svh; }
  .tsc-blog-masthead__inner { width: calc(100% - 32px); padding-bottom: 58px; }
  .tsc-blog-masthead h1 { font-size: clamp(34px, 10vw, 47px); }
  .tsc-blog-body > :not(.tsc-vr-wrap):not(.tsc-section) { width: calc(100% - 32px); }
  .tsc-footer { padding: 60px 16px 124px; }
  .tsc-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .tsc-footer-menu { grid-column: auto; }
  .tsc-floating-call { right: 12px; bottom: 10px; left: 12px; min-width: 0; padding: 11px 16px; border-radius: 14px; }
  .tsc-floating-call strong { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html:has(body.apt44-tsc-active) { scroll-behavior: auto; }
  .tsc-shell *, .tsc-shell *::before, .tsc-shell *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .tsc-motion-ready .tsc-reveal { opacity: 1; transform: none; }
}
