/* === TARNOVSKI INSIGHTS — Header & Footer cloned from production tarnovski.com === */

/* ---- HEADER (cloned from rec641594693) ---- */
.tk-header {
    position: sticky; top: 0; z-index: 1000;
    background-color: #1a2b2b;
    font-family: 'TLB', 'Arial', sans-serif;
}
.tk-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto;
    padding: 0 50px; min-height: 80px;
}
.tk-header__logo img { height: 30px; width: auto; display: block; }

.tk-header__menu {
    display: flex; align-items: center; gap: 0;
    list-style: none; margin: 0; padding: 0;
}
.tk-menu__link {
    display: block; padding: 29px 20px;
    color: #bac5cb; font-size: 13px; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; position: relative;
    transition: color 0.3s ease-in-out;
}
.tk-menu__link::after {
    content: ''; position: absolute; left: 20px; bottom: 20%;
    width: calc(100% - 40px); height: 100%; opacity: 0;
    border-bottom: 1px solid #bac5cb;
    box-shadow: inset 0px -1px 0px 0px #bac5cb;
    transition: all 0.3s ease; pointer-events: none;
}
.tk-menu__link:hover { color: #c87fa2; }
.tk-menu__link:hover::after { opacity: 1; bottom: calc(20% - 1px); }
.tk-menu__link.active::after { opacity: 1; bottom: -2px; border-bottom-width: 2px; }

/* Mega submenu (cloned from Tilda t-menusub) */
.tk-menu__has-sub { position: relative; }
.tk-submenu {
    position: absolute; top: 100%; left: 0;
    width: 220px; padding: 10px 0;
    background-color: #1a2b2b;
    border: 1px solid #6a787b;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
    list-style: none; margin: 0;
}
.tk-menu__has-sub:hover .tk-submenu,
.tk-menu__has-sub:focus-within .tk-submenu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
}
.tk-submenu__link {
    display: block; padding: 10px 20px;
    color: #bac5cb; font-size: 13px; font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.3s ease;
}
.tk-submenu__link:hover { color: #f0d074; }

/* Hamburger */
.tk-header__burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
}
.tk-header__burger span {
    display: block; width: 24px; height: 2px;
    background: #bac5cb; transition: all 0.3s ease;
}

/* ---- FOOTER (cloned from rec727949948) ---- */
.tk-footer {
    background-color: #1a2b2b; color: #ffffff;
    font-family: 'TLB', 'Arial', sans-serif;
    padding: 71px 0 0;
}
.tk-footer__inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0 40px;
}
.tk-footer__logo { margin-bottom: 30px; }
.tk-footer__logo img { height: 28px; width: auto; }
.tk-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
}
.tk-footer__col { display: flex; flex-direction: column; gap: 8px; }
.tk-footer__col-title {
    font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; color: #ffffff; margin-bottom: 14px;
}
.tk-footer__col a {
    color: #bac5cb; font-size: 13px; font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}
.tk-footer__col a:hover { color: #f0d074; }
.tk-footer__social { margin-top: 8px; }
.tk-footer__social a { display: inline-block; margin-right: 16px; }

.tk-footer__bottom {
    margin-top: 71px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
}
.tk-footer__bottom-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 50px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
}
.tk-footer__legal {
    font-size: 12px; color: #bac5cb;
}
.tk-footer__legal a { color: #bac5cb; text-decoration: none; }
.tk-footer__legal a:hover { color: #f0d074; }
.tk-footer__contact {
    font-size: 13px; color: #bac5cb; text-align: right;
}
.tk-footer__contact a { color: #f0d074; text-decoration: none; font-weight: 500; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
    .tk-header__inner { padding: 0 20px; min-height: 60px; }
    .tk-header__menu { display: none; }
    .tk-header__burger { display: flex; }
    .tk-header__menu.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; width: 100%;
        background: #1a2b2b; padding: 20px; gap: 0;
    }
    .tk-menu__link { padding: 16px 0; font-size: 16px; }
    .tk-submenu {
        position: static; width: 100%; padding: 0 0 0 16px;
        border: 0; opacity: 1; visibility: visible; pointer-events: auto;
        transform: none; background: transparent;
    }
    .tk-submenu__link { padding: 10px 0; }

    .tk-footer__inner { grid-template-columns: 1fr; padding: 0 20px; }
    .tk-footer__nav { grid-template-columns: 1fr; }
    .tk-footer__bottom-inner { flex-direction: column; text-align: center; padding: 0 20px; }
    .tk-footer__contact { text-align: center; }
}
/* ---- Hero (from production insights page) ---- */
.tk-hero.gh-outer {
    background-color: #ebf0f3 !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(26,43,43,.14) !important;
}
.tk-hero__bg {
    position: absolute; inset: 0;
    background-image: url("../brand/vector.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 90%;
    opacity: 0.5; pointer-events: none;
}
.tk-hero__inner.gh-inner {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    padding: 90px 0 70px;
    display: grid;
    grid-template-columns: minmax(280px,.85fr) minmax(320px,1fr);
    grid-template-areas: "title eyebrow" "title copy" "label copy";
    gap: 30px 80px; align-items: center;
}
.tk-hero__title {
    grid-area: title; margin: 0;
    font-weight: 100; font-size: clamp(96px,16vw,200px);
    line-height: 0.82; letter-spacing: -.06em;
    text-transform: uppercase; color: #1a2b2b;
}
.tk-hero__eyebrow {
    grid-area: eyebrow; align-self: end;
    font-size: clamp(22px,3.6vw,52px); font-weight: 300;
    letter-spacing: -.03em; text-transform: uppercase;
    color: #c87fa2; margin: 0;
}
.tk-hero__label {
    grid-area: label; align-self: start;
    font-size: clamp(22px,3.6vw,52px); font-weight: 300;
    letter-spacing: -.03em; text-transform: uppercase;
    color: #f0d074; margin: 0;
}
.tk-hero__copy {
    grid-area: copy; margin: 0; max-width: 620px;
    font-size: clamp(16px,1.3vw,19px); line-height: 1.55;
    color: #1a2b2b;
}
.tk-hero__copy a {
    color: inherit; text-decoration: underline;
    text-decoration-color: #f0d074; text-underline-offset: .18em;
}

/* ---- Post feed ---- */
.gh-feed { display: flex; flex-direction: column; gap: 0; }
.gh-card { border-bottom: 1px solid rgba(26,43,43,.14); }
.gh-card-link {
    display: grid; grid-template-columns: minmax(120px,260px) 1fr;
    gap: 30px; align-items: center; padding: 28px 0;
    text-decoration: none;
}
.gh-card-image {
    aspect-ratio: 16/9; overflow: hidden;
    background: #ebf0f3; margin: 0;
}
.gh-card-image img { width: 100%; height: 100%; object-fit: cover; }
.gh-card-title {
    font-size: clamp(22px,2vw,32px); font-weight: 300;
    line-height: 1.1; letter-spacing: -.02em;
    color: #1a2b2b; margin: 0 0 8px;
}
.gh-card-excerpt {
    font-size: 15px; line-height: 1.5;
    color: rgba(26,43,43,.6); margin: 0 0 8px;
}
.gh-card-meta { font-size: 13px; color: rgba(26,43,43,.6); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .tk-hero__inner.gh-inner {
        display: block; padding: 64px 20px 56px;
    }
    .tk-hero__title { font-size: clamp(64px,22vw,120px); margin: 8px 0 22px; }
    .tk-hero__eyebrow, .tk-hero__label {
        font-size: clamp(26px,8vw,42px); display: block;
    }
    .tk-hero__label { margin-bottom: 30px; }
    .gh-card-link { grid-template-columns: 1fr; gap: 16px; padding: 20px 0; }
}

/* =====================================================
   HERO SECTION (dark #1a2b2b) — Figma node 17:16745
   ===================================================== */
.tk-hero-dark {
    background-color: #1a2b2b;
    padding: 0;
    margin: 0;
    border: 0;
}
.tk-hero-dark__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(60px, 10vw, 140px) 50px clamp(50px, 8vw, 100px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
}
.tk-hero-dark__title {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(80px, 18vw, 250px);
    line-height: 0.9;
    letter-spacing: 0.01em;
    color: #bac5cb;
    margin: 0;
}
.tk-hero-dark__subscribe {
    position: relative;
    max-width: 360px;
    overflow: hidden;
}
.tk-hero-dark__subscribe-pattern {
    position: absolute;
    inset: 0;
    background-image: url('../brand/vector.svg');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 140px auto;
    opacity: 0.35;
    pointer-events: none;
}
.tk-hero-dark__subscribe-content {
    position: relative;
    z-index: 1;
}
.tk-hero-dark__subscribe-title {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.6vw, 22px);
    line-height: 1.1;
    color: #bac5cb;
    margin: 0 0 12px;
}
.tk-hero-dark__subscribe-text {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(13px, 1.6vw, 22px);
    line-height: 1.15;
    color: #bac5cb;
    margin: 0;
}

@media (max-width: 980px) {
    .tk-hero-dark__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px 50px;
        align-items: start;
    }
    .tk-hero-dark__title {
        font-size: clamp(64px, 22vw, 150px);
    }
    .tk-hero-dark__subscribe {
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .tk-hero-dark__inner {
        padding: 40px 16px 40px;
    }
    .tk-hero-dark__title {
        font-size: clamp(56px, 28vw, 80px);
    }
    .tk-hero-dark__subscribe-title,
    .tk-hero-dark__subscribe-text {
        font-size: 16px;
    }
}

/* =====================================================
   INTRO TEXT SECTION (light #ebf0f3)
   ===================================================== */
.tk-intro {
    background-color: #ebf0f3;
    padding: clamp(30px, 5vw, 50px) 0;
    margin: 0;
}
.tk-intro__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: start;
}
.tk-intro__heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tk-intro__label {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(30px, 5vw, 60px);
    line-height: 1;
    color: #1a2b2b;
    margin: 0;
}
.tk-intro__blog {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(45px, 8vw, 100px);
    line-height: 1;
    color: #1a2b2b;
    margin: 0;
}
.tk-intro__body {
    max-width: 667px;
    padding-top: 8px;
}
.tk-intro__body p {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.6vw, 20px);
    line-height: 1.55;
    color: #000000;
    margin: 0 0 16px;
}
.tk-intro__body p:last-child {
    margin-bottom: 0;
}
.tk-intro__body a {
    color: #1a2b2b;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

@media (max-width: 980px) {
    .tk-intro__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
    .tk-intro__label {
        font-size: clamp(30px, 8vw, 50px);
    }
    .tk-intro__blog {
        font-size: clamp(45px, 12vw, 80px);
    }
    .tk-intro__body p {
        font-size: clamp(14px, 3.5vw, 18px);
    }
}
@media (max-width: 480px) {
    .tk-intro__inner {
        padding: 0 16px;
    }
    .tk-intro__label {
        font-size: 30px;
    }
    .tk-intro__blog {
        font-size: 45px;
    }
    .tk-intro__body p {
        font-size: 14px;
    }
}

/* =====================================================
   ARTICLES SECTION (dynamic Ghost post grid)
   ===================================================== */
.tk-articles {
    background-color: #ffffff;
    padding: clamp(40px, 6vw, 80px) 0;
}
.tk-articles__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.tk-article-card {
    background: #ffffff;
    border: 0;
    padding: 0;
}
.tk-article-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.tk-article-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ebf0f3;
    margin-bottom: 20px;
}
.tk-article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.tk-article-card__image--placeholder {
    background: #ebf0f3;
}
.tk-article-card__link:hover .tk-article-card__image img {
    transform: scale(1.03);
}
.tk-article-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.tk-article-card__tag {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #68647e;
    margin-bottom: 8px;
}
.tk-article-card__title {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #1a2b2b;
    margin: 0 0 12px;
    transition: color 0.2s ease;
}
.tk-article-card__link:hover .tk-article-card__title {
    color: #68647e;
}
.tk-article-card__excerpt {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #444444;
    margin: 0 0 16px;
    flex-grow: 1;
}
.tk-article-card__meta {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #68647e;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.tk-article-card__meta::before {
    content: '';
}
.tk-article-card__author::after {
    content: '·';
    margin-left: 12px;
}
.tk-article-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 12px 28px;
    background: #1a2b2b;
    color: #ffffff;
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.tk-article-card__link:hover .tk-article-card__button {
    background: #f0d074;
    color: #1a2b2b;
}

@media (max-width: 980px) {
    .tk-articles__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }
    .tk-article-card__image {
        aspect-ratio: 16 / 9;
    }
}
@media (max-width: 480px) {
    .tk-articles__inner {
        padding: 0 16px;
        gap: 28px;
    }
}

/* =====================================================
   PAGINATION
   ===================================================== */
.gh-pagination {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 50px;
}
.gh-pagination a,
.gh-pagination span {
    font-family: 'TLB', Arial, sans-serif;
    border-radius: 0 !important;
}
/* =====================================================
   PAGINATION v2 — clean TARNOVSKI button style
   ===================================================== */
.gh-pagination,
nav.pagination {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: clamp(40px,6vw,80px) 50px 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
}
.gh-pagination a,
.gh-pagination span,
.older-posts,
.newer-posts,
a.older-posts,
a.newer-posts {
    font-family: "TLB",Arial,sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    padding: 14px 32px !important;
    background: #1a2b2b !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    transition: background-color 0.2s ease,color 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
}
.gh-pagination a:hover,
.older-posts:hover,
.newer-posts:hover,
a.older-posts:hover,
a.newer-posts:hover {
    background: #f0d074 !important;
    color: #1a2b2b !important;
}
.gh-pagination .gh-pagination-item--current {
    background: #68647e !important;
    color: #ffffff !important;
}

/* =====================================================
   LOAD MORE BUTTON + hide page indicator
   ===================================================== */
.gh-pagination .gh-pagination-item:not(.older-posts):not(.newer-posts) {
    display: none !important;
}
nav.pagination .page-number,
.gh-pagination > span:not(.gh-pagination-item--current) {
    display: none !important;
}
.tk-load-more {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) 50px 0;
    display: flex;
    justify-content: center;
}
.tk-load-more__btn {
    font-family: "TLB", Arial, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 48px;
    background: #1a2b2b;
    color: #ffffff;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.tk-load-more__btn:hover {
    background: #f0d074;
    color: #1a2b2b;
}
.tk-load-more__btn.is-loading {
    opacity: 0.7;
    cursor: wait;
}
@media (max-width: 980px) {
    .tk-load-more { padding: 40px 20px 0; }
    .tk-load-more__btn { padding: 14px 36px; }
}

/* Paged articles — add top spacing since theres no hero/intro case Explora/ ghost-new/

/* Paged articles — top spacing (no hero above) */
.tk-articles--paged { padding-top: clamp(60px, 8vw, 120px) !important; }

/* =====================================================
   FOOTER v2 — from Figma node 22:5521
   BG: #111111 | Text: #bac5cb | Accent: #6a787b
   ===================================================== */
.tk-footer2 {
    background: #1a2b2b;
    color: #bac5cb;
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 500;
    padding: 0;
    margin: 0;
}
.tk-footer2 * {
    box-sizing: border-box;
}
.tk-footer2__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 40px 40px;
}
.tk-footer2 a {
    color: #bac5cb;
    text-decoration: none;
    transition: color 0.2s ease;
}
.tk-footer2 a:hover {
    color: #f0d074;
}

/* --- TOP SECTION --- */
.tk-footer2__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 30px;
}
.tk-footer2__brand {
    flex: 0 0 auto;
}
.tk-footer2__logo img {
    height: 28px;
    width: auto;
    display: block;
}
.tk-footer2__menu {
    display: flex;
    gap: 24px;
    margin-top: 28px;
}
.tk-footer2__menu a {
    font-size: 15px;
    font-weight: 500;
}

/* --- NEWSLETTER --- */
.tk-footer2__newsletter {
    flex: 0 1 470px;
}
.tk-footer2__newsletter-label {
    font-size: 17px;
    font-weight: 500;
    color: #bac5cb;
    margin: 0 0 12px;
}
.tk-footer2__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #6a787b;
    padding: 8px 0;
    font-family: 'TLB', Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #bac5cb;
    outline: none;
}
.tk-footer2__input::placeholder {
    color: #bac5cb;
    opacity: 0.6;
}
.tk-footer2__consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 14px;
}
.tk-footer2__checkbox {
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
    margin-top: 2px;
    accent-color: #6a787b;
}
.tk-footer2__consent label {
    font-size: 10px;
    line-height: 1.4;
    color: #bac5cb;
    opacity: 0.8;
}
.tk-footer2__subscribe {
    margin-top: 16px;
    padding: 14px 40px;
    background: #6a787b;
    color: #1a2b2b;
    border: none;
    border-radius: 0;
    font-family: 'TLB', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s ease;
}
.tk-footer2__subscribe:hover {
    background: #f0d074;
}

/* --- DIVIDER --- */
.tk-footer2__divider {
    height: 1px;
    background: #6a787b;
    margin: 0 0 30px;
}

/* --- CONTACT ROW --- */
.tk-footer2__contact-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 30px;
}
.tk-footer2__label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #bac5cb;
    margin-bottom: 10px;
}
.tk-footer2__link {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    margin-right: 16px;
}
.tk-footer2__address {
    font-size: 15px;
    font-weight: 500;
    margin: 8px 0 0;
}
.tk-footer2__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.tk-footer2__social-links a {
    font-size: 15px;
    font-weight: 500;
}

/* --- BOTTOM --- */
.tk-footer2__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(106, 120, 123, 0.3);
}
.tk-footer2__legal,
.tk-footer2__copyright {
    font-size: 14px;
    font-weight: 500;
    color: #bac5cb;
    opacity: 0.7;
}

/* --- RESPONSIVE --- */
@media (max-width: 980px) {
    .tk-footer2__top {
        flex-direction: column;
        gap: 30px;
    }
    .tk-footer2__newsletter {
        flex: 1 1 auto;
        max-width: 100%;
    }
}
@media (max-width: 720px) {
    .tk-footer2__inner {
        padding: 40px 20px 30px;
    }
    .tk-footer2__menu {
        flex-wrap: wrap;
        gap: 16px;
    }
    .tk-footer2__contact-row {
        flex-direction: column;
        gap: 24px;
    }
    .tk-footer2__bottom {
        flex-direction: column;
        gap: 12px;
    }
    .tk-footer2__menu {
        margin-top: 20px;
    }
}

/* =====================================================
   HERO BACKGROUND: consultancy.svg + teal overlay
   From Figma node 17:16745
   ===================================================== */
.tk-hero-dark {
    position: relative !important;
    overflow: hidden !important;
    background: #1a2b2b !important;
}
.tk-hero-dark::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background-image: url("../brand/consultancy.svg") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    z-index: 0 !important;
    opacity: 0.4 !important;
}
.tk-hero-dark__inner {
    position: relative !important;
    z-index: 1 !important;
}

/* =====================================================
   RELATED POSTS — premium TARNOVSKI layout for post pages
   ===================================================== */
.post-template .tk-related {
    background: #ebf0f3;
    margin-top: clamp(72px, 9vw, 140px);
    padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 110px);
    border-top: 1px solid rgba(26,43,43,0.12);
}
.post-template .tk-related__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}
.post-template .tk-related__heading {
    margin-bottom: clamp(28px, 4vw, 56px);
}
.post-template .tk-related__title {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(44px, 7vw, 96px);
    line-height: 0.92;
    letter-spacing: 0.005em;
    color: #1a2b2b;
    margin: 0;
}
.post-template .tk-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2.4vw, 34px);
}
.post-template .tk-related-card {
    background: #ffffff;
    border: 1px solid rgba(26,43,43,0.12);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.post-template .tk-related-card:hover {
    transform: translateY(-3px);
    border-color: rgba(26,43,43,0.28);
}
.post-template .tk-related-card__link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    text-decoration: none;
    color: inherit;
}
.post-template .tk-related-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    background: #bac5cb;
    overflow: hidden;
}
.post-template .tk-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.post-template .tk-related-card:hover .tk-related-card__image img {
    transform: scale(1.035);
}
.post-template .tk-related-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: clamp(20px, 2.2vw, 28px);
}
.post-template .tk-related-card__tag {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #68647e;
    margin-bottom: 12px;
}
.post-template .tk-related-card__title {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: #1a2b2b;
    margin: 0 0 14px;
}
.post-template .tk-related-card__excerpt {
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(26,43,43,0.66);
    margin: 0 0 18px;
}
.post-template .tk-related-card__meta {
    margin-top: auto;
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: rgba(26,43,43,0.55);
}
.post-template .tk-related-card__button {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 18px;
    padding: 12px 20px;
    background: #1a2b2b;
    color: #ffffff;
    font-family: 'TLB', Arial, sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.post-template .tk-related-card:hover .tk-related-card__button {
    background: #f0d074;
    color: #1a2b2b;
}
@media (max-width: 980px) {
    .post-template .tk-related__inner { padding: 0 24px; }
    .post-template .tk-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .post-template .tk-related__inner { padding: 0 20px; }
    .post-template .tk-related__grid {
        grid-template-columns: 1fr;
    }
}
