:root {
  --tc-green: #1a7a62;
  --tc-green-dark: #125a49;
  --tc-green-soft: #e4f3ee;
  --tc-gold: #c17f3a;
  --tc-gold-soft: #fdf3e7;
  --tc-ink: #152019;
  --tc-ink-mid: #3d4a44;
  --tc-muted: #6e7a74;
  --tc-line: #d8e3de;
  --tc-surface: #f4f7f6;
  --tc-white: #ffffff;
  --tc-header: #0d3b4c;
  --tc-header-mid: #145a6e;
  --tc-header-text: #b8d4de;
  --tc-accent: #2d9a7a;
  --tc-max: 76rem;
  --tc-radius: 12px;
  --tc-radius-lg: 22px;
  --tc-font: "Outfit", system-ui, -apple-system, sans-serif;
  --tc-mono: "JetBrains Mono", ui-monospace, monospace;
  --tc-shadow: 0 8px 28px rgba(13, 59, 76, 0.1);
  --tc-shadow-lg: 0 24px 56px rgba(13, 59, 76, 0.16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 5.5rem; }

body {
  margin: 0;
  font-family: var(--tc-font);
  font-size: 1.03rem;
  line-height: 1.68;
  color: var(--tc-ink);
  background: var(--tc-surface);
}

a {
  color: var(--tc-green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--tc-green-dark); }

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

/* --- Shell --- */
.tc-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    url("/assets/images/pattern-mesh.svg") center top / 800px repeat,
    linear-gradient(180deg, #eef4f2 0%, var(--tc-surface) 18rem);
}

.tc-skip {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.tc-skip:focus {
  position: fixed; left: 1rem; top: 1rem; width: auto; height: auto;
  padding: 0.5rem 1rem; background: var(--tc-ink); color: #fff; z-index: 300;
  border-radius: var(--tc-radius);
}

/* --- Header --- */
.tc-header {
  background: linear-gradient(180deg, var(--tc-header) 0%, #0a3040 100%);
  color: var(--tc-header-text);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}

.tc-header__inner {
  max-width: var(--tc-max);
  margin: 0 auto;
  padding: 0.9rem 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.tc-brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: #fff; font-weight: 700; font-size: 1.02rem;
}
.tc-brand:hover { color: #fff; }
.tc-brand img {
  width: 42px; height: 42px; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.tc-navtoggle {
  display: none;
  background: rgba(255,255,255,0.1); color: #fff; border: 0;
  padding: 0.5rem 0.95rem; border-radius: 999px;
  font-weight: 600; font-size: 0.82rem; cursor: pointer;
}

.tc-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.2rem;
}
.tc-nav a {
  display: block; padding: 0.48rem 0.75rem;
  color: var(--tc-header-text); text-decoration: none;
  font-size: 0.83rem; font-weight: 500;
  border-radius: 999px;
  transition: background 120ms, color 120ms;
}
.tc-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.tc-nav a[aria-current="page"] {
  background: rgba(193, 127, 58, 0.28); color: #fff; font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(193, 127, 58, 0.5);
}

.tc-header__cta {
  background: linear-gradient(135deg, var(--tc-gold), #d4924a);
  color: var(--tc-header);
  padding: 0.55rem 1.15rem; border-radius: 999px;
  font-weight: 700; font-size: 0.84rem; text-decoration: none;
  box-shadow: 0 4px 14px rgba(193, 127, 58, 0.35);
  transition: transform 120ms, box-shadow 120ms;
}
.tc-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(193, 127, 58, 0.45);
  color: var(--tc-header);
}

.tc-banner {
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.48rem 1.75rem;
  font-size: 0.76rem;
  text-align: center;
  color: #9ec8d8;
}
.tc-banner a { color: #e8b87a; font-weight: 600; text-decoration: none; }
.tc-banner a:hover { color: #fff; }

/* --- Main --- */
.tc-content {
  flex: 1;
  width: 100%;
  max-width: var(--tc-max);
  margin: 0 auto;
  padding: 0.5rem 1.75rem 3.5rem;
}

.tc-crumb {
  padding: 1rem 0 0.35rem;
  font-size: 0.8rem;
  color: var(--tc-muted);
}
.tc-crumb a { color: var(--tc-muted); text-decoration: none; }
.tc-crumb a:hover { color: var(--tc-green); }
.tc-crumb span { color: var(--tc-ink); font-weight: 600; }

/* --- Buttons --- */
.tc-btn {
  display: inline-block; padding: 0.65rem 1.35rem;
  border-radius: 999px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; border: 2px solid transparent;
  cursor: pointer; font-family: inherit;
  transition: transform 120ms, box-shadow 120ms, background 120ms;
}
.tc-btn--primary {
  background: var(--tc-green); color: #fff; border-color: var(--tc-green);
  box-shadow: 0 6px 18px rgba(26, 122, 98, 0.28);
}
.tc-btn--primary:hover { background: var(--tc-green-dark); color: #fff; transform: translateY(-1px); }
.tc-btn--outline {
  background: transparent; color: var(--tc-ink); border-color: var(--tc-line);
}
.tc-btn--outline:hover { border-color: var(--tc-green); color: var(--tc-green); }
.tc-btn--light {
  background: #fff; color: var(--tc-green); border-color: #fff;
}
.tc-btn--light:hover { background: var(--tc-green-soft); color: var(--tc-green-dark); }
.tc-btn--gold {
  background: var(--tc-gold); color: var(--tc-header); border-color: var(--tc-gold);
}
.tc-btn--gold:hover { background: #d4924a; color: var(--tc-header); }

/* --- Hero --- */
.tc-hero {
  margin: 0 -1.75rem 2rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 420px;
  background:
    radial-gradient(circle at 85% 15%, rgba(193,127,58,0.22), transparent 45%),
    linear-gradient(135deg, var(--tc-header) 0%, var(--tc-header-mid) 45%, var(--tc-green) 100%);
  border-radius: 0 0 var(--tc-radius-lg) var(--tc-radius-lg);
  overflow: hidden;
  box-shadow: var(--tc-shadow-lg);
  position: relative;
}
.tc-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: url("/assets/images/pattern-mesh.svg") center / 600px;
  opacity: 0.08;
  pointer-events: none;
}
.tc-hero__copy {
  padding: 3rem 2.5rem 3rem 2.75rem;
  color: #e8f2ef;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.tc-hero__tag {
  display: inline-flex; align-self: flex-start;
  font-family: var(--tc-mono); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--tc-gold); margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(193,127,58,0.35);
}
.tc-hero__title {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  line-height: 1.14; margin: 0 0 1rem; color: #fff; font-weight: 800;
  letter-spacing: -0.02em;
}
.tc-hero__text { margin: 0 0 1.6rem; color: #b8d4c8; max-width: 34rem; }
.tc-hero__acts { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.tc-hero__visual {
  display: flex; align-items: flex-end; justify-content: center;
  padding: 2rem 1.75rem 0 0;
  position: relative; z-index: 1;
}
.tc-hero__visual img {
  border-radius: var(--tc-radius-lg) var(--tc-radius-lg) 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
}

/* --- Chips & strip --- */
.tc-chips {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  margin: 0 0 1.75rem;
}
.tc-chip {
  font-family: var(--tc-mono); font-size: 0.71rem;
  padding: 0.4rem 0.88rem; border-radius: 999px;
  background: var(--tc-white); border: 1px solid var(--tc-line);
  color: var(--tc-ink-mid);
  box-shadow: 0 2px 6px rgba(13, 59, 76, 0.05);
}

.tc-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.tc-strip__item {
  background: var(--tc-white);
  border: 1px solid var(--tc-line);
  border-radius: var(--tc-radius-lg);
  padding: 1.35rem 1.15rem;
  text-align: center;
  box-shadow: var(--tc-shadow);
  position: relative;
  overflow: hidden;
}
.tc-strip__item::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--tc-green), var(--tc-gold));
}
.tc-strip__item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--tc-header);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.tc-strip__item span { font-size: 0.82rem; color: var(--tc-muted); }

/* --- Bento card grid --- */
.tc-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-bottom: 2.75rem;
}
.tc-bento .tc-card { grid-column: span 3; }
.tc-bento .tc-card:nth-child(1) { grid-column: span 6; background: linear-gradient(145deg, #fff 0%, var(--tc-green-soft) 100%); }
.tc-bento .tc-card:nth-child(2) { grid-column: span 6; background: linear-gradient(145deg, #fff 0%, var(--tc-gold-soft) 100%); }
.tc-bento .tc-card:nth-child(3),
.tc-bento .tc-card:nth-child(4) { grid-column: span 6; }

.tc-grid {
  display: grid; gap: 1.15rem; margin-bottom: 2.75rem;
}
.tc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.tc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tc-grid--4 { grid-template-columns: repeat(4, 1fr); }

.tc-card {
  background: var(--tc-white);
  border: 1px solid var(--tc-line);
  border-radius: var(--tc-radius-lg);
  padding: 1.5rem 1.45rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 0.6rem;
  min-height: 100%;
  transition: box-shadow 160ms, transform 160ms, border-color 160ms;
}
.tc-card:hover {
  box-shadow: var(--tc-shadow-lg);
  border-color: rgba(26, 122, 98, 0.35);
  transform: translateY(-4px);
  color: inherit;
}
.tc-card__icon {
  width: 52px; height: 52px;
  padding: 0.5rem;
  border-radius: 14px;
  background: var(--tc-white);
  box-shadow: 0 4px 12px rgba(13, 59, 76, 0.08);
}
.tc-card h3 { margin: 0; font-size: 1.08rem; color: var(--tc-ink); letter-spacing: -0.01em; }
.tc-card p { margin: 0; font-size: 0.9rem; color: var(--tc-muted); flex: 1; }
.tc-card__link {
  font-size: 0.82rem; font-weight: 700; color: var(--tc-green);
  display: inline-flex; align-items: center; gap: 0.25rem;
}

/* --- Columns --- */
.tc-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.5rem;
  margin-bottom: 2.75rem;
  align-items: start;
}
.tc-rail {
  position: sticky; top: 6rem; align-self: start;
  background: var(--tc-white);
  border: 1px solid var(--tc-line);
  border-radius: var(--tc-radius-lg);
  padding: 0;
  box-shadow: var(--tc-shadow);
  overflow: hidden;
}
.tc-rail__art img { width: 100%; height: auto; }
.tc-rail__body { padding: 1.25rem 1.35rem 1.35rem; }
.tc-rail h2 { margin: 0 0 0.75rem; font-size: 0.95rem; color: var(--tc-header); }
.tc-rail ul { margin: 0; padding: 0; list-style: none; }
.tc-rail li { margin-bottom: 0.45rem; }
.tc-rail a { font-size: 0.88rem; text-decoration: none; color: var(--tc-ink-mid); }
.tc-rail a:hover { color: var(--tc-green); }

/* --- Blocks --- */
.tc-block { margin-bottom: 2.5rem; }
.tc-block__head {
  font-size: 1.5rem; margin: 0 0 0.4rem; color: var(--tc-ink);
  letter-spacing: -0.02em;
}
.tc-block__sub { margin: 0 0 1.35rem; color: var(--tc-muted); font-size: 0.96rem; max-width: 42rem; }

.tc-box, .tc-panel {
  background: var(--tc-white);
  border: 1px solid var(--tc-line);
  border-radius: var(--tc-radius-lg);
  padding: 1.35rem 1.5rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 8px rgba(13, 59, 76, 0.04);
}
.tc-box--accent, .tc-panel--accent {
  border-left: 4px solid var(--tc-green);
  background: linear-gradient(90deg, var(--tc-green-soft), var(--tc-white) 35%);
}
.tc-panel h3 { margin: 0 0 0.45rem; font-size: 1rem; }
.tc-panel p { margin: 0; color: var(--tc-muted); font-size: 0.92rem; }

.tc-steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.tc-steps li {
  counter-increment: step;
  padding: 1.15rem 0 1.15rem 3.25rem;
  border-bottom: 1px solid var(--tc-line);
  position: relative;
}
.tc-steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 1.15rem;
  width: 2.15rem; height: 2.15rem;
  background: linear-gradient(135deg, var(--tc-header), var(--tc-green));
  color: #fff;
  border-radius: 10px; font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.tc-steps li:last-child { border-bottom: 0; }
.tc-steps h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.tc-steps p { margin: 0; color: var(--tc-muted); font-size: 0.92rem; }

/* --- FAQ --- */
.tc-faq { max-width: 50rem; }
.tc-faq details {
  background: var(--tc-white);
  border: 1px solid var(--tc-line);
  border-radius: var(--tc-radius);
  margin-bottom: 0.55rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(13, 59, 76, 0.04);
}
.tc-faq summary {
  padding: 1rem 1.2rem; cursor: pointer;
  font-weight: 600; font-size: 0.95rem; list-style: none;
}
.tc-faq summary::-webkit-details-marker { display: none; }
.tc-faq details[open] summary { border-bottom: 1px solid var(--tc-line); color: var(--tc-green); background: var(--tc-green-soft); }
.tc-faq__body { padding: 1rem 1.2rem; color: var(--tc-muted); font-size: 0.92rem; }
.tc-faq__body p { margin: 0; }

/* --- Table --- */
.tc-table-wrap { overflow-x: auto; margin-bottom: 1.5rem; border-radius: var(--tc-radius-lg); box-shadow: var(--tc-shadow); }
.tc-table {
  width: 100%; border-collapse: collapse;
  background: var(--tc-white);
  font-size: 0.9rem;
}
.tc-table caption {
  text-align: left; font-weight: 700; padding: 1rem 1.15rem 0.5rem;
  font-size: 0.95rem;
}
.tc-table th, .tc-table td {
  padding: 0.8rem 1.15rem;
  border-bottom: 1px solid var(--tc-line);
  text-align: left;
}
.tc-table th { background: var(--tc-header); color: #fff; font-weight: 600; font-size: 0.82rem; }
.tc-table tr:last-child td { border-bottom: 0; }
.tc-table tbody tr:nth-child(even) { background: rgba(228, 243, 238, 0.35); }

/* --- Forms --- */
.tc-form {
  background: var(--tc-white);
  border: 1px solid var(--tc-line);
  border-radius: var(--tc-radius-lg);
  padding: 1.75rem;
  max-width: 32rem;
  box-shadow: var(--tc-shadow);
}
.tc-form--wide {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.tc-field { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--tc-ink-mid); }
.tc-input, .tc-select, .tc-textarea {
  width: 100%; padding: 0.68rem 0.9rem;
  border: 1px solid var(--tc-line); border-radius: var(--tc-radius);
  font-family: inherit; font-size: 0.95rem;
  margin-bottom: 1rem; background: var(--tc-surface);
}
.tc-input:focus, .tc-select:focus, .tc-textarea:focus {
  outline: 2px solid var(--tc-green-soft); border-color: var(--tc-green);
}
.tc-textarea { min-height: 6rem; resize: vertical; }
.tc-alert {
  font-size: 0.88rem; padding: 0.65rem 0.85rem;
  border-radius: var(--tc-radius); margin-bottom: 1rem;
  background: var(--tc-green-soft); color: var(--tc-green-dark);
}

/* --- Page header (inner) --- */
.tc-pagehead {
  padding: 1.25rem 0 1.5rem;
  margin-bottom: 2rem;
}
.tc-pagehead--split {
  display: grid;
  grid-template-columns: 1fr min(360px, 38%);
  gap: 2rem;
  align-items: center;
  background: var(--tc-white);
  border: 1px solid var(--tc-line);
  border-radius: var(--tc-radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--tc-shadow);
}
.tc-pagehead h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.tc-pagehead p { margin: 0; color: var(--tc-muted); max-width: 40rem; }
.tc-pagehead__art img {
  border-radius: var(--tc-radius);
  box-shadow: 0 8px 24px rgba(13, 59, 76, 0.12);
}

/* --- Prose --- */
.tc-prose h2 { font-size: 1.2rem; margin: 1.75rem 0 0.65rem; }
.tc-prose h3 { font-size: 1.05rem; margin: 1.25rem 0 0.5rem; }
.tc-prose p, .tc-prose li { color: var(--tc-ink-mid); font-size: 0.95rem; }
.tc-prose ul, .tc-prose ol { padding-left: 1.35rem; }
.tc-prose li { margin-bottom: 0.35rem; }

/* --- Band --- */
.tc-band {
  background: linear-gradient(135deg, var(--tc-header) 0%, var(--tc-green-dark) 100%);
  color: #c8ddd6;
  border-radius: var(--tc-radius-lg);
  padding: 2.25rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: var(--tc-shadow-lg);
  position: relative;
  overflow: hidden;
}
.tc-band::before {
  content: "";
  position: absolute; inset: 0;
  background: url("/assets/images/pattern-mesh.svg") center / 500px;
  opacity: 0.07;
}
.tc-band h2, .tc-band p { position: relative; z-index: 1; }
.tc-band h2 { margin: 0 0 0.5rem; color: #fff; font-size: 1.35rem; }
.tc-band p { margin: 0; font-size: 0.94rem; }
.tc-band a { color: #e8b87a; }

/* --- Footer --- */
.tc-footer {
  background: linear-gradient(180deg, #0a3040 0%, var(--tc-header) 100%);
  color: #9ec8d8;
  padding: 2.75rem 1.75rem 2rem;
  margin-top: auto;
}
.tc-footer__grid {
  max-width: var(--tc-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}
.tc-footer h2 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  margin: 0 0 0.75rem; color: #e8b87a;
}
.tc-footer ul { list-style: none; margin: 0; padding: 0; }
.tc-footer li { margin-bottom: 0.4rem; }
.tc-footer a { font-size: 0.88rem; text-decoration: none; color: #b8d4de; }
.tc-footer a:hover { color: #fff; }
.tc-footer__brand p { margin: 0; font-size: 0.88rem; color: #9ec8d8; line-height: 1.6; }
.tc-footer__copy {
  max-width: var(--tc-max); margin: 1.75rem auto 0;
  font-size: 0.78rem; color: #6a9aad;
  padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1);
}

.tc-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.tc-badges img { height: 32px; width: auto; opacity: 0.75; }

/* --- Login --- */
.tc-signin {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.25rem;
  align-items: start; margin-bottom: 2.25rem;
}
.tc-signinbox {
  background: var(--tc-white);
  border: 1px solid var(--tc-line);
  border-radius: var(--tc-radius-lg);
  padding: 2rem;
  box-shadow: var(--tc-shadow-lg);
  border-top: 4px solid var(--tc-gold);
}
.tc-signinbox h2 { margin: 0 0 0.35rem; font-size: 1.25rem; }
.tc-signinbox > p { margin: 0 0 1.25rem; color: var(--tc-muted); font-size: 0.9rem; }

/* --- Notice --- */
.tc-notice {
  position: fixed; bottom: 1rem; right: 1rem; left: 1rem;
  max-width: 26rem; margin-left: auto;
  background: var(--tc-header); color: #b0c8bc;
  padding: 1rem 1.15rem; border-radius: var(--tc-radius-lg);
  box-shadow: var(--tc-shadow-lg); z-index: 200;
  font-size: 0.85rem;
}
.tc-notice p { margin: 0 0 0.75rem; }
.tc-notice a { color: #e8b87a; }
.tc-notice__acts { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* --- Responsive --- */
@media (max-width: 960px) {
  .tc-header__inner { grid-template-columns: 1fr auto; }
  .tc-navtoggle { display: block; grid-column: 2; }
  .tc-header__cta { display: none; }
  .tc-nav {
    display: none;
    grid-column: 1 / -1;
    background: rgba(0,0,0,0.15);
    padding: 0.75rem; border-radius: var(--tc-radius);
  }
  .tc-nav.tc-nav--open { display: block; }
  .tc-nav ul { flex-direction: column; align-items: stretch; }
  .tc-hero { grid-template-columns: 1fr; min-height: auto; }
  .tc-hero__visual { display: none; }
  .tc-hero__copy { padding: 2.25rem 1.75rem; }
  .tc-bento .tc-card,
  .tc-bento .tc-card:nth-child(n) { grid-column: span 12; }
  .tc-columns { grid-template-columns: 1fr; }
  .tc-rail { position: static; }
  .tc-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .tc-grid--3 { grid-template-columns: 1fr; }
  .tc-signin { grid-template-columns: 1fr; }
  .tc-footer__grid { grid-template-columns: 1fr 1fr; }
  .tc-strip { grid-template-columns: 1fr; }
  .tc-pagehead--split { grid-template-columns: 1fr; padding: 1.5rem; }
  .tc-pagehead__art { order: -1; max-width: 280px; }
  .tc-form--wide { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .tc-grid--4, .tc-grid--2 { grid-template-columns: 1fr; }
  .tc-footer__grid { grid-template-columns: 1fr; }
  .tc-content { padding: 0 1rem 2.5rem; }
  .tc-hero { margin: 0 -1rem 1.75rem; }
}
