/* ==========================================================
   TRESOR CAPITAL NIEUWS — huisstijl bovenop Source (concept 2)
   Geladen na built/screen.css via default.hbs.
   Kleuren en fonts: alleen de variabelen hieronder aanpassen.
   ========================================================== */

/* ---------- Fonts (zelf gehost, geen Google-verzoeken) ---------- */
@font-face { font-family: "Newsreader"; font-weight: 500; font-style: normal; font-display: swap; src: url("fonts/newsreader-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Newsreader"; font-weight: 600; font-style: normal; font-display: swap; src: url("fonts/newsreader-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-weight: 400; font-style: normal; font-display: swap; src: url("fonts/source-sans-3-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-weight: 600; font-style: normal; font-display: swap; src: url("fonts/source-sans-3-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-weight: 700; font-style: normal; font-display: swap; src: url("fonts/source-sans-3-latin-700-normal.woff2") format("woff2"); }

/* html:root wint van de :root-variabelen die Ghost zelf zet */
html:root {
    --tc-blue: #356a9d;
    --tc-blue-light: #8fb3da;
    --tc-navy: #13263b;
    --tc-slate: #434d67;
    --tc-text: #13263b;
    --tc-text-soft: #4a5561;
    --tc-text-muted: #5b6573;
    --tc-line: #e6e9ee;
    --tc-tint: #eaf0f6;
    --tc-field: #f1f4f8;
    --tc-radius: 12px;
    --tc-serif: "Newsreader", Georgia, "Times New Roman", serif;
    --tc-sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Source-thema laten meedoen */
    --gh-font-heading: var(--tc-serif);
    --gh-font-body: var(--tc-sans);
    --font-sans: var(--tc-sans);
    --font-serif: var(--tc-serif);
    --ghost-accent-color: var(--tc-blue);
    --color-primary-text: var(--tc-text);
}
body { color: var(--tc-text); }
.is-title, .gh-article-title, .gh-card-title, .gh-content :is(h2, h3) { font-family: var(--tc-serif); font-weight: 600; letter-spacing: -.01em; }

/* ---------- Zichtbaarheid per bezoekertype ---------- */
.tc-only-known { display: none !important; }
html.tc-known .tc-only-known { display: block !important; }
html.tc-known .tc-closing-box.tc-only-known { display: grid !important; }
html.tc-known .tc-btn.tc-only-known { display: inline-flex !important; }
html.tc-known .tc-only-anon { display: none !important; }
html.tc-member .tc-only-guest { display: none !important; }

/* ---------- Navigatie ---------- */
/* Menu: Home = logo (verborgen), Media + Nieuwsbrief altijd onder "…", Contact altijd zichtbaar (zie assets/js/dropdown.js) */
#gh-navigation .nav-home { display: none; }
#gh-navigation .gh-navigation-menu .nav { gap: 24px; }
@media (min-width: 992px) { .gh-navigation.is-middle-logo .gh-navigation-menu { margin-right: 0; } }
.gh-navigation-members { gap: 14px; }
.gh-navigation-members .tc-nav-login { font-weight: 500; margin-right: 4px; }
#gh-navigation .gh-button.tc-nav-secondary { background: transparent; color: var(--tc-text); box-shadow: inset 0 0 0 1px #c9d3de; }
#gh-navigation .gh-button.tc-nav-secondary:hover { box-shadow: inset 0 0 0 1px var(--tc-blue); color: var(--tc-blue); }
#gh-navigation .gh-button.tc-nav-primary { background: var(--tc-blue); color: #fff; }

/* ---------- Typografie & basisonderdelen ---------- */
.tc-kicker { display: block; margin: 0 0 10px; font-family: var(--tc-sans); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--tc-blue); }
.tc-display { margin: 0 0 20px; font-family: var(--tc-serif); font-size: clamp(38px, 3.2vw + 12px, 54px); line-height: 1.06; font-weight: 600; letter-spacing: -.012em; color: var(--tc-text); }
.tc-h2 { margin: 0 0 14px; font-family: var(--tc-serif); font-size: clamp(30px, 1.8vw + 16px, 44px); line-height: 1.1; font-weight: 600; letter-spacing: -.01em; color: inherit; }
.tc-h3 { margin: 0 0 16px; font-family: var(--tc-serif); font-size: 28px; line-height: 1.2; font-weight: 600; color: inherit; }
.tc-lead { margin: 0 0 18px; font-size: 18px; line-height: 1.62; color: var(--tc-text-soft); }
.tc-small { margin: 12px 0 0; font-size: 14px; color: var(--tc-text-muted); }
.tc-title { display: block; font-family: var(--tc-serif); font-size: 23px; line-height: 1.22; font-weight: 600; color: var(--tc-text); }
.tc-title--xl { font-size: clamp(26px, 1.4vw + 14px, 36px); line-height: 1.14; }
.tc-meta { display: block; font-size: 14px; color: var(--tc-text-muted); }
.tc-link { color: var(--tc-text); font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; }
.tc-link:hover { color: var(--tc-blue); }
.tc-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 0 24px; border-radius: 999px;
    background: var(--tc-blue); color: #fff; border: 1px solid var(--tc-blue);
    font-size: 15px; font-weight: 600; text-decoration: none; white-space: nowrap; transition: opacity .15s;
}
.tc-btn:hover { opacity: .9; }
.tc-btn--white { background: #fff; border-color: #fff; color: var(--tc-navy); }
.tc-btn--outline { background: transparent; border-color: currentColor; color: inherit; }
.tc-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.tc-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.tc-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 28px; }
.tc-section-head .tc-h2, .tc-section-head .tc-lead { margin-bottom: 0; }
.tc-section-head > div { max-width: 640px; }

/* Pill-formulier om Ghosts email-subscription heen */
.tc-pillform .gh-form { max-width: 560px; background: var(--tc-field); }
.tc-pillform--white .gh-form { background: #fff; }
.tc-pillform .gh-form:hover { background: var(--tc-field); }
.tc-pillform--white .gh-form:hover { background: #fff; }
.tc-pillform .gh-button { background: var(--tc-blue); color: #fff; }

/* ==========================================================
   HOMEPAGE
   ========================================================== */
.tc-home { padding-bottom: 8px; }
.tc-hero { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(48px, 5vw, 80px); }
.tc-hero-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 4vw, 56px); align-items: center; }
.tc-hero-list { list-style: none; margin: 0 0 20px; padding: 0; }
.tc-hero-list li { margin: 0; padding: 14px 0; border-bottom: 1px solid var(--tc-line); }
.tc-hero-list a { display: block; text-decoration: none; }
.tc-hero-list .tc-kicker { margin-bottom: 4px; }
.tc-hero-list .tc-title { font-size: 21px; font-weight: 500; }
.tc-hero-list a:hover .tc-title { color: var(--tc-blue); }
.tc-hero-card { display: flex; flex-direction: column; gap: 12px; text-decoration: none; }
.tc-hero-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--tc-radius); margin-bottom: 4px; }
.tc-hero-card .tc-kicker { margin: 0; }
.tc-hero-card:hover .tc-title { color: var(--tc-blue); }

.tc-section-tile { display: flex; flex-direction: column; gap: 10px; padding-top: 26px; border-top: 3px solid var(--tc-blue); text-decoration: none; color: var(--tc-text); }
.tc-section-name { font-family: var(--tc-serif); font-size: 26px; font-weight: 600; }
.tc-section-desc { font-size: 16px; line-height: 1.55; color: var(--tc-text-soft); }
.tc-section-tile .tc-meta { margin-top: 4px; }
.tc-section-tile .tc-meta strong { color: var(--tc-text); font-weight: 600; }
.tc-section-tile:hover .tc-section-name { color: var(--tc-blue); }

.tc-card { display: flex; flex-direction: column; gap: 10px; text-decoration: none; }
.tc-card-img { display: block; aspect-ratio: 3 / 2; border-radius: 10px; overflow: hidden; background: var(--tc-tint); margin-bottom: 4px; }
.tc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tc-card:hover .tc-card-img img { transform: scale(1.03); }
.tc-card .tc-kicker { margin: 0; }
.tc-card:hover .tc-title { color: var(--tc-blue); }

.tc-band { margin-top: clamp(72px, 8vw, 104px); padding-top: clamp(56px, 6vw, 80px); padding-bottom: clamp(56px, 6vw, 80px); background: var(--tc-navy); color: #dfe6ee; }
.tc-band .tc-h2, .tc-band .tc-title { color: #fff; }
.tc-band .tc-lead { color: #dfe6ee; }
.tc-band .tc-kicker { color: var(--tc-blue-light); }
.tc-band .tc-meta { color: #a9b8c8; }
.tc-band .tc-card-img { background: #2b4766; }
.tc-band .tc-card:hover .tc-title { color: var(--tc-blue-light); }
.tc-band .tc-btn--outline { color: #fff; }

.tc-about-home { margin-top: clamp(72px, 8vw, 112px); }
.tc-about-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 4vw, 56px); align-items: center; }
.tc-team-label { margin: 0 0 20px; text-align: center; }
.tc-team-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.tc-team-grid li { margin: 0; padding: 0; }
.tc-team-grid a { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; text-decoration: none; color: var(--tc-text); }
.tc-team-grid img, .tc-avatar { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; background: #d8e2ec; display: block; margin-bottom: 4px; }
.tc-team-grid strong { font-size: 16px; font-weight: 600; }
.tc-team-grid span { font-size: 14px; color: var(--tc-text-muted); }

.tc-media { margin-top: clamp(64px, 7vw, 88px); }
.tc-media-item { display: flex; align-items: center; gap: 20px; padding: 20px; border: 1px solid var(--tc-line); border-radius: 10px; text-decoration: none; color: var(--tc-text); }
.tc-media-item:hover { border-color: var(--tc-blue); }
.tc-media-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: var(--tc-tint); color: var(--tc-blue); display: inline-flex; align-items: center; justify-content: center; }
.tc-media-item .tc-kicker { margin-bottom: 4px; }
.tc-media-title { display: block; font-size: 18px; font-weight: 600; line-height: 1.35; }

.tc-closing { margin-top: clamp(72px, 8vw, 104px); margin-bottom: clamp(72px, 8vw, 104px); }
.tc-closing-box { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 4vw, 56px); align-items: center; padding: clamp(32px, 4vw, 64px); border-radius: 16px; background: var(--tc-tint); }
.tc-closing-box .tc-lead { margin-bottom: 0; }

/* ---------- Rubrieken-tabs + carrousel ---------- */
.tc-explorer { margin-top: 8px; }
/* Donkerblauwe band over de volle breedte */
.tc-dark { background: var(--tc-navy); color: #dfe6ee; padding-top: clamp(48px, 5vw, 72px); padding-bottom: clamp(56px, 6vw, 88px); }
.tc-dark .tc-tab { color: #fff; border-top-color: rgba(255,255,255,.18); }
.tc-dark .tc-tab:hover { border-top-color: rgba(143,179,218,.6); }
.tc-dark .tc-tab[aria-selected="true"] { border-top-color: var(--tc-blue-light); }
.tc-dark .tc-tab[aria-selected="false"] .tc-tab-name { color: #8fa3b8; }
.tc-dark .tc-tab-desc { color: #c9d4df; }
.tc-dark .tc-tab-latest { color: #a9b8c8; }
.tc-dark .tc-tab-latest strong { color: #fff; }
.tc-dark .tc-tab:focus-visible { outline-color: var(--tc-blue-light); }
.tc-dark .tc-title { color: #fff; }
.tc-dark .tc-card:hover .tc-title { color: var(--tc-blue-light); }
.tc-dark .tc-kicker { color: var(--tc-blue-light); }
.tc-dark .tc-meta { color: #a9b8c8; }
.tc-dark .tc-card-img { background: #2b4766; }
.tc-dark .tc-link { color: #fff; }
.tc-dark .tc-link:hover { color: var(--tc-blue-light); }
.tc-dark .tc-panel-note { color: #c9d4df; }
.tc-dark .tc-arrow { background: transparent; border-color: rgba(255,255,255,.3); color: #fff; }
.tc-dark .tc-arrow:hover:not(:disabled) { border-color: #fff; color: #fff; }
.tc-dark .tc-track:focus-visible { outline-color: var(--tc-blue-light); }
.tc-explorer + .tc-media { margin-top: clamp(56px, 6vw, 88px); }
/* Over Tresor Capital (gecombineerd blok) */
.tc-about-home { margin-top: clamp(56px, 6vw, 88px); }
.tc-about-box { align-items: center; }
.tc-about-box .tc-lead { margin-bottom: 14px; }
.tc-about-note { margin: 0 0 24px; font-size: 16px; line-height: 1.6; color: var(--tc-text-soft); }
.tc-about-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.tc-team-card { padding: 28px; border-radius: 14px; background: #fff; }
.tc-team-card .tc-kicker { margin-bottom: 18px; }
/* Aanmeldbalk (bezoekers) */
.tc-signup-bar-wrap { margin-top: 24px; margin-bottom: clamp(64px, 7vw, 104px); }
.tc-signup-bar { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 28px 40px; border: 1px solid var(--tc-line); border-radius: 16px; }
.tc-signup-bar strong { display: block; font-size: 24px; font-weight: 600; }
.tc-signup-bar p { margin: 4px 0 0; font-size: 16px; color: var(--tc-text-soft); }
.tc-signup-bar .tc-pillform { flex: 0 1 520px; }
html.tc-known .tc-about-home { margin-bottom: clamp(64px, 7vw, 104px); }
.tc-tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: auto auto; column-gap: 32px; }
/* subgrid: naam en omschrijving staan in alle tegels op dezelfde hoogte */
.tc-tab {
    display: grid; grid-row: span 2; grid-template-rows: subgrid; row-gap: 10px; align-content: start;
    padding: 26px 0 4px; margin: 0; border: 0; border-top: 3px solid #d3dbe4; background: none;
    text-align: left; font: inherit; color: var(--tc-text); cursor: pointer; transition: border-color .2s;
}
.tc-tab:hover { border-top-color: var(--tc-blue-light); }
.tc-tab[aria-selected="true"] { border-top-color: var(--tc-blue); }
.tc-tab:focus-visible { outline: 2px solid var(--tc-blue); outline-offset: 4px; }
.tc-tab-name { font-family: var(--tc-serif); font-size: 24px; font-weight: 600; line-height: 1.2; }
.tc-tab[aria-selected="false"] .tc-tab-name { color: var(--tc-text-muted); }
.tc-tab-desc { font-size: 15px; line-height: 1.55; color: var(--tc-text-soft); }
.tc-tab-latest { align-self: start; font-size: 14px; line-height: 1.45; color: var(--tc-text-muted); }
.tc-tab-latest strong { color: var(--tc-text); font-weight: 600; }
.tc-panel { margin-top: 36px; }
.tc-panel[hidden] { display: none; }
.tc-panel-head { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 20px; min-height: 44px; }
.tc-panel-note { font-size: 15px; color: var(--tc-text-soft); }
.tc-arrows { display: flex; gap: 8px; margin-left: auto; }
.tc-arrow { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--tc-line); background: #fff; color: var(--tc-text); cursor: pointer; transition: border-color .15s, color .15s; }
.tc-arrow:hover:not(:disabled) { border-color: var(--tc-blue); color: var(--tc-blue); }
.tc-arrow:disabled { opacity: .35; cursor: default; }
.tc-track {
    --tc-visible: 3;
    display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - (var(--tc-visible) - 1) * 32px) / var(--tc-visible));
    gap: 32px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    scrollbar-width: none; padding-bottom: 4px;
}
.tc-track::-webkit-scrollbar { display: none; }
.tc-track > * { scroll-snap-align: start; }
.tc-track:focus-visible { outline: 2px solid var(--tc-blue); outline-offset: 6px; }

/* Source's eigen homepage-onderdelen niet tonen op onze homepage */
.home-template .gh-header, .home-template .gh-cta, .home-template .gh-featured { display: none; }

/* ==========================================================
   INTERESSE-LADDER, BLOKKEN (posts)
   ========================================================== */
.tc-ladder { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.tc-ladder li { margin: 0; padding: 0; }
.tc-ladder a {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    min-height: 58px; padding: 12px 22px; border-radius: 10px; background: #fff; border: 1px solid transparent;
    color: var(--tc-text); text-decoration: none; font-size: 16px; font-weight: 600; line-height: 1.35;
}
.tc-ladder a:hover { border-color: var(--tc-blue); }
.tc-ladder a.tc-ladder-primary { background: var(--tc-blue); color: #fff; }
.tc-ladder a.tc-ladder-primary span:last-child { color: #dbe7f3; }
.tc-ladder a.tc-ladder-primary:hover { background: #2d5b87; }
.tc-ladder a span:last-child { color: var(--tc-blue); font-size: 13px; font-weight: 500; white-space: nowrap; }
.gh-content .tc-ladder a { text-decoration: none; }

.tc-block { padding: 32px 36px; border-radius: var(--tc-radius); background: var(--tc-tint); color: var(--tc-text); }
.tc-block h3 { margin: 0 0 10px; font-size: 28px; line-height: 1.2; color: inherit; }
.tc-block p { margin: 0 0 16px; font-size: 16px; line-height: 1.6; color: var(--tc-text-soft); }
.tc-block .tc-ladder { margin-top: 18px; }
.tc-block .tc-ladder a:not(.tc-ladder-primary) { border-color: var(--tc-line); }
.tc-eyebrow { margin: 0 0 10px; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--tc-blue); }
.tc-block--dark { background: var(--tc-navy); color: #fff; }
.tc-block--dark p, .tc-block--dark .tc-form-note { color: #d7dde2; }
.tc-block--dark .tc-eyebrow { color: var(--tc-blue-light); }
.tc-block--dark .tc-link { color: #fff; }
.tc-block--dark .gh-form, .tc-block--dark .gh-form:hover { background: #fff; color: var(--tc-text); }
.tc-block--dark .tc-ladder a { border-color: transparent; }
.tc-form-note { margin: 12px 0 0; font-size: 14px; color: var(--tc-text-muted); }
.gh-content .tc-block { margin: 2em 0; }

.tc-post-end { margin-top: 56px; row-gap: 24px; }
.tc-author { display: flex; gap: 18px; align-items: center; padding: 24px 0; border-top: 1px solid var(--tc-line); border-bottom: 1px solid var(--tc-line); }
.tc-author img, .tc-author .tc-team-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; background: #d8e2ec; flex-shrink: 0; }
.tc-author strong { font-size: 17px; }
.tc-author p { margin: 4px 0 0; font-size: 15px; line-height: 1.5; color: var(--tc-text-soft); }
.tc-bridge { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 24px; align-items: center; padding: 20px; border: 1px solid var(--tc-line); border-radius: var(--tc-radius); background: #fff; color: var(--tc-text); text-decoration: none; }
.tc-bridge:hover { border-color: var(--tc-blue); }
.tc-bridge img { width: 160px; height: 104px; object-fit: cover; border-radius: 8px; }
.tc-bridge > span { display: flex; flex-direction: column; gap: 4px; }
.tc-bridge .tc-eyebrow { margin: 0; }
.tc-bridge strong { font-size: 22px; line-height: 1.25; }
.tc-bridge em { font-style: normal; font-size: 14px; color: var(--tc-text-muted); }

.tc-welcome { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 32px 0; padding: 16px 20px; border-radius: 10px; background: var(--tc-navy); color: #fff; font-size: 16px; }
.tc-welcome a { color: #fff; font-weight: 600; text-decoration: underline; }

/* Paywall (partials/content-cta.hbs) */
.tc-paywall { margin: 8px 0 0; padding: clamp(28px, 4vw, 48px); border-radius: var(--tc-radius); background: var(--tc-navy); color: #dfe6ee; text-align: center; }
.tc-paywall .tc-kicker { color: var(--tc-blue-light); }
.tc-paywall .tc-h3 { color: #fff; margin-bottom: 10px; }
.tc-paywall p { margin: 0 auto 20px; max-width: 520px; font-size: 16px; line-height: 1.6; }
.tc-paywall .tc-pillform .gh-form { margin: 0 auto; }
.tc-paywall .tc-small { margin: 16px auto 0; color: #c9d4df; }
.tc-paywall a:not(.tc-btn) { color: #fff; font-weight: 600; text-decoration: underline; }
.gh-content > .tc-paywall { grid-column: main; }
.gh-content .tc-paywall a.tc-btn, .gh-content .tc-block a.tc-btn { color: var(--tc-navy); text-decoration: none; }

/* Eigen formulier (inline card en slide-in, via tc.js) */
.tc-subform { display: flex; gap: 8px; flex-wrap: wrap; }
.tc-subform input[type="email"] { flex: 1 1 220px; min-height: 48px; padding: 0 18px; border: 1px solid var(--tc-line); border-radius: 999px; background: #fff; font-size: 16px; color: var(--tc-text); }
.tc-subform .tc-btn { flex: 0 0 auto; cursor: pointer; font-family: inherit; }
.tc-subform .tc-msg { display: none; flex-basis: 100%; margin: 6px 0 0; font-size: 14px; }
.tc-subform.success .tc-msg--ok, .tc-subform.error .tc-msg--err { display: block; }
.tc-subform.success input, .tc-subform.success .tc-btn { display: none; }
.tc-subform.loading .tc-btn { opacity: .6; pointer-events: none; }
.tc-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ==========================================================
   CONTACTPAGINA (page-contact.hbs)
   ========================================================== */
.tc-contact { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(64px, 7vw, 104px); }
.tc-contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.tc-steps { list-style: none; counter-reset: step; margin: 28px 0; padding: 0; display: grid; gap: 16px; }
.tc-steps li { counter-increment: step; display: grid; grid-template-columns: 40px 1fr; column-gap: 14px; margin: 0; }
.tc-steps li::before { content: counter(step); grid-row: span 2; width: 36px; height: 36px; border-radius: 50%; background: var(--tc-tint); color: var(--tc-blue); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.tc-steps strong { font-size: 16px; }
.tc-steps span { font-size: 15px; color: var(--tc-text-soft); }
.tc-contact-extra { margin: 0 0 20px; display: block; font-size: 16px; }
.tc-contact-extra > * { grid-column: auto; }
.tc-contact-card { padding: clamp(24px, 3vw, 40px); border: 1px solid var(--tc-line); border-radius: 16px; background: #fff; box-shadow: 0 12px 40px rgba(19, 38, 59, .06); }
.tc-cform { margin: 0; }
.tc-cform.is-sent { display: none; }
.tc-cgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.tc-cfield { display: flex; flex-direction: column; gap: 8px; margin: 0; min-width: 0; }
.tc-cfull, .tc-cradio { grid-column: 1 / -1; }
.tc-cform label, .tc-cform legend { font-size: 15px; font-weight: 600; color: var(--tc-text); }
.tc-req { color: #c0392b; }
.tc-cform input[type="text"], .tc-cform input[type="email"], .tc-cform input[type="tel"], .tc-cform textarea {
    width: 100%; box-sizing: border-box; min-height: 48px; padding: 12px 14px; border: 1px solid #d3dbe4; border-radius: 10px;
    background: #fff; font: inherit; font-size: 16px; color: var(--tc-text);
}
.tc-cform textarea { min-height: 140px; resize: vertical; }
.tc-cform input:focus, .tc-cform textarea:focus { outline: none; border-color: var(--tc-blue); box-shadow: 0 0 0 3px rgba(53, 106, 157, .15); }
.tc-cradio { border: 0; padding: 0; }
.tc-cradio legend { padding: 0; margin-bottom: 8px; }
.tc-cradio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.tc-cradio-group label { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px; border: 1px solid #d3dbe4; border-radius: 999px; font-weight: 500; cursor: pointer; }
.tc-cradio-group label:has(input:checked) { border-color: var(--tc-blue); background: var(--tc-tint); }
.tc-cactions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; }
.tc-cactions .tc-btn { cursor: pointer; font-family: inherit; }
.tc-cactions .tc-small { margin: 0; }
.tc-contact-error { margin: 14px 0 0; color: #c0392b; font-size: 15px; }
.tc-contact-sent { padding: 12px 0; outline: none; }
.tc-contact-sent p { font-size: 16px; line-height: 1.6; color: var(--tc-text-soft); }

/* ==========================================================
   NIEUWSBRIEFPAGINA (page-nieuwsbrief.hbs)
   ========================================================== */
.tc-nb-visual img { width: 100%; border-radius: var(--tc-radius); box-shadow: 0 20px 60px rgba(19, 38, 59, .12); }
.tc-inbox { display: grid; gap: 12px; padding: 24px; border-radius: 16px; background: var(--tc-tint); }
.tc-inbox-item { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; border-radius: 10px; background: #fff; text-decoration: none; color: var(--tc-text); box-shadow: 0 2px 8px rgba(19, 38, 59, .05); }
.tc-inbox-item:first-child { box-shadow: 0 10px 30px rgba(19, 38, 59, .10); }
.tc-inbox-from { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--tc-blue); }
.tc-inbox-from em { font-style: normal; font-weight: 500; color: var(--tc-text-muted); }
.tc-inbox-title { font-family: var(--tc-serif); font-size: 19px; font-weight: 600; line-height: 1.25; }
.tc-inbox-excerpt { font-size: 14px; line-height: 1.5; color: var(--tc-text-soft); }
.tc-nb-what, .tc-nb-recent, .tc-nb-faq { margin-top: clamp(64px, 7vw, 96px); }
.tc-nb-features a { display: flex; flex-direction: column; gap: 10px; padding: 28px; border: 1px solid var(--tc-line); border-radius: var(--tc-radius); text-decoration: none; color: var(--tc-text); }
.tc-nb-features a:hover { border-color: var(--tc-blue); }
.tc-nb-features strong { font-family: var(--tc-serif); font-size: 22px; font-weight: 600; }
.tc-nb-features span:last-child { font-size: 16px; line-height: 1.55; color: var(--tc-text-soft); }
.tc-nb-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--tc-tint); color: var(--tc-blue); display: inline-flex; align-items: center; justify-content: center; }
.tc-faq-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(32px, 4vw, 56px); }
.tc-faq details { border-bottom: 1px solid var(--tc-line); }
.tc-faq details:first-child { border-top: 1px solid var(--tc-line); }
.tc-faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 60px; padding: 8px 0; font-size: 18px; font-weight: 600; cursor: pointer; list-style: none; }
.tc-faq summary::-webkit-details-marker { display: none; }
.tc-faq summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--tc-blue); }
.tc-faq details[open] summary::after { content: "–"; }
.tc-faq p { margin: 0 0 20px; font-size: 16px; line-height: 1.65; color: var(--tc-text-soft); }
.tc-faq a { color: var(--tc-blue); font-weight: 600; }
.page-nieuwsbrief .tc-footer-signup { display: none; }

/* ==========================================================
   FOOTER
   ========================================================== */
.tc-footer { margin-top: clamp(64px, 7vw, 104px); padding-top: 56px; padding-bottom: 36px; background: var(--tc-navy); color: #c9d4df; }
.tc-footer a { color: #c9d4df; text-decoration: none; }
.tc-footer a:hover { color: #fff; }
.tc-footer-signup { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; align-items: center; padding-bottom: 48px; margin-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.14); }
.tc-footer-signup .tc-h3 { color: #fff; margin-bottom: 8px; }
.tc-footer-signup p { margin: 0; font-size: 16px; line-height: 1.55; }
.tc-footer-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
.tc-footer-logo-img { display: block; height: 60px; width: auto; margin-bottom: 18px; }
.tc-footer-line { display: flex; align-items: flex-start; gap: 12px; line-height: 1.55; }
.tc-footer-line svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; fill: var(--tc-blue-light); }
.tc-footer-logo { display: block; margin-bottom: 10px; font-family: var(--tc-serif); font-size: 20px; letter-spacing: .08em; color: #fff; }
.tc-footer-brand p { margin: 0 0 20px; max-width: 460px; font-size: 15px; line-height: 1.6; }
.tc-footer-brand .tc-btn { color: #fff; }
.tc-footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.tc-footer-col strong { margin-bottom: 4px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.tc-footer .gh-social-links { display: flex; gap: 14px; margin-top: 8px; justify-content: flex-start; }
.tc-footer .gh-social-links svg { width: 18px; height: 18px; fill: currentColor; }
.tc-footer-bar { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); font-size: 13px; }
.tc-footer-menu ul { display: flex; gap: 20px; margin: 0; padding: 0; list-style: none; }

/* ==========================================================
   SLIDE-IN
   ========================================================== */
.tc-slidein { position: fixed; right: 24px; bottom: 24px; z-index: 900; width: 360px; max-width: calc(100vw - 32px); box-sizing: border-box; padding: 24px; border-radius: var(--tc-radius); background: #fff; color: var(--tc-text); border: 1px solid var(--tc-line); box-shadow: 0 16px 48px rgba(19, 38, 59, .18); transform: translateY(24px); opacity: 0; visibility: hidden; transition: transform .3s ease, opacity .3s ease, visibility .3s; }
.tc-slidein.is-open { transform: none; opacity: 1; visibility: visible; }
.tc-slidein h3 { margin: 0 36px 8px 0; font-size: 21px; line-height: 1.25; }
.tc-slidein p { margin: 0 0 14px; font-size: 14px; line-height: 1.5; color: var(--tc-text-soft); }
.tc-slidein .tc-subform input[type="email"] { flex-basis: 100%; }
.tc-slidein .tc-subform .tc-btn { flex: 1 1 auto; }
.tc-close { position: absolute; top: 8px; right: 8px; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: transparent; color: var(--tc-text-soft); font-size: 24px; line-height: 1; cursor: pointer; }
.tc-close:hover { background: var(--tc-tint); color: var(--tc-text); }

/* ==========================================================
   MOBIEL
   ========================================================== */
@media (max-width: 991px) {
    .tc-hero-grid, .tc-about-grid, .tc-closing-box, .tc-footer-signup { grid-template-columns: 1fr; }
    html.tc-known .tc-closing-box.tc-only-known { grid-template-columns: 1fr; }
    .tc-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tc-footer-grid { grid-template-columns: 1fr 1fr; }
    .tc-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 991px) {
    .tc-contact-grid, .tc-faq-grid { grid-template-columns: 1fr; }
    .tc-signup-bar { flex-direction: column; align-items: stretch; }
    .tc-signup-bar .tc-pillform { flex-basis: auto; }
    .tc-track { --tc-visible: 2; }
    .tc-tabs { display: flex; gap: 24px; overflow-x: auto; scrollbar-width: none; }
    .tc-tabs::-webkit-scrollbar { display: none; }
    .tc-tab { display: flex; flex: 0 0 auto; padding-top: 14px; }
    .tc-tab-name { font-size: 21px; white-space: nowrap; }
    .tc-tab-desc, .tc-tab-latest { display: none; }
    .tc-panel { margin-top: 24px; }
}
@media (max-width: 767px) {
    .tc-grid-3, .tc-grid-2 { grid-template-columns: 1fr; gap: 28px; }
    .tc-tabs { display: flex; gap: 20px; column-gap: 20px; overflow-x: auto; scrollbar-width: none; margin: 0 -20px; padding: 0 20px; }
    .tc-tabs::-webkit-scrollbar { display: none; }
    .tc-tab { display: flex; flex: 0 0 auto; padding-top: 14px; }
    .tc-tab-name { font-size: 20px; white-space: nowrap; }
    .tc-tab-desc, .tc-tab-latest { display: none; }
    .tc-panel { margin-top: 20px; }
    .tc-track { --tc-visible: 1.15; gap: 16px; grid-auto-columns: 82%; }
    .tc-arrows { display: none; }
    .tc-cgrid { grid-template-columns: 1fr; }
    .tc-cactions { flex-direction: column; align-items: stretch; }
    .tc-section-head { flex-direction: column; align-items: flex-start; }
    .tc-team-grid img, .tc-avatar { width: 84px; height: 84px; }
    .tc-block { padding: 24px 20px; }
    .tc-bridge { grid-template-columns: 1fr; }
    .tc-bridge img { width: 100%; height: 160px; }
    .tc-footer-grid { grid-template-columns: 1fr; }
    .tc-slidein { left: 16px; right: 16px; bottom: 16px; width: auto; }
}
@media (prefers-reduced-motion: reduce) { .tc-slidein, .tc-card-img img { transition: none; } }

/* ==========================================================
   TUSSENKOPJES IN ARTIKELEN (Heading 3 in de editor)
   ========================================================== */
.gh-content h3 {
    font-size: 1.75em;      /* was 1.3em */
    font-weight: 600;
    line-height: 1.25;
    margin-top: 1.8em;
    color: var(--tc-navy);
}

/* Witruimte onder de FAQ als die het laatste blok op de nieuwsbriefpagina is */
.tc-nb-faq:last-child { margin-bottom: clamp(64px, 7vw, 104px); }

/* ==========================================================
   MEDIABALK (partials/tc/home/featured-in.hbs)
   ========================================================== */
.tc-press { background: #fff; margin-top: clamp(48px, 5vw, 72px); padding: 24px 0; border-top: 1px solid var(--tc-line); border-bottom: 1px solid var(--tc-line); }
.tc-press-label { margin: 0 0 16px; text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--tc-blue); }
.tc-press-viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.tc-press-track { display: flex; width: max-content; animation: tc-marquee 80s linear infinite; }
.tc-press:hover .tc-press-track { animation-play-state: paused; }
.tc-press-list { display: flex; flex-shrink: 0; gap: 56px; margin: 0; padding: 0 28px; list-style: none; }
.tc-press-list li { margin: 0; font-family: var(--tc-serif); font-size: 22px; font-weight: 600; color: var(--tc-slate); white-space: nowrap; }
@keyframes tc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 767px) {
    .tc-press-list { gap: 36px; padding: 0 18px; }
    .tc-press-list li { font-size: 18px; }
}
/* Wie in zijn systeem 'minder beweging' heeft ingesteld, krijgt een stilstaande lijst */
}

/* Mediabalk binnen het blok "In de media" */
.tc-media .tc-press { margin: 8px 0 40px; padding: 0; background: none; border: 0; }
.tc-media .tc-press-label { display: block; margin: 0 0 14px; text-align: center; }

/* Links in artikelen: alleen de gewone onderstreping, geen extra rand */
.gh-content a.tc-link { border-bottom: 0; }