/* =====================================================
   Videnscenter Styles
   Hub page + article pages
   ===================================================== */

/* Hub Hero */
.vc-hero {
    padding: 170px 0 60px;
    background: url('../img/bg.webp') center center / cover no-repeat;
}

.vc-hero .legal-breadcrumb {
    margin-bottom: 32px;
}

.vc-hero-content {
    max-width: 740px;
}

.vc-hero .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.vc-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--color-text-primary);
    line-height: 1.2;
}

.vc-hero-description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Hero text + TV mockup side by side; stacks (image below) on small screens
   so the image stays visible to mobile-first crawlers. */
.vc-hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.vc-hero-media {
    flex: 0 0 40%;
    max-width: 460px;
}

.vc-hero-media img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .vc-hero-inner {
        flex-direction: column;
        gap: 28px;
    }

    /* Definite width so the img's aspect-ratio reserves height BEFORE the
       image loads (shrink-to-fit + width:100% is circular and collapses,
       shifting everything below the hero - CLS). */
    .vc-hero-media {
        flex-basis: auto;
        width: min(100%, 380px);
        max-width: 380px;
    }
}

/* Hub Page Layout */
.vc-page {
    padding: 60px 0 80px;
    background: var(--color-bg);
    min-height: 50vh;
}

/* Tail band (intro + CTA) sits on the same gray as the grid, below the
   full-width white downloads band. No min-height — it's short. */
.vc-page-tail {
    padding: 64px 0 80px;
    background: var(--color-bg);
}

/* Article Card Grid */
.vc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

/* "Load more": the extra cards are always in the HTML (so Google indexes them);
   we only visually collapse them, and only when JS is available. Without JS the
   :not(.js) fallback keeps every card visible. Cards get .vc-card-revealed in
   batches as the button is pressed. While a category filter or a text search is
   active the collapse is suspended - the filter/search decides visibility. */
.js .vc-grid:not(.vc-filtered):not(.vc-searching) .vc-card-collapsed:not(.vc-card-revealed) {
    display: none;
}

.js .vc-grid.vc-filtered .vc-card:not(.vc-card-match) {
    display: none;
}

.js .vc-grid.vc-searching .vc-card:not(.vc-card-search-match) {
    display: none;
}

/* Guide search box (JS-only feature; without JS all cards show anyway).
   Sits top-left above the filter bar, not centered. */
.vc-search {
    position: relative;
    max-width: 480px;
    margin: 0 0 18px;
}

.vc-search i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-secondary);
    pointer-events: none;
}

.vc-search-input {
    width: 100%;
    padding: 12px 18px 12px 46px;
    border: 1px solid var(--color-border-light);
    border-radius: 999px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--color-text-primary);
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.vc-search-input:focus {
    outline: none;
    border-color: #3bb4c4;
    box-shadow: 0 0 0 3px rgba(59, 180, 196, 0.18);
}

html:not(.js) .vc-search {
    display: none;
}

.vc-search-empty {
    text-align: center;
    color: var(--color-text-secondary);
    margin: 0 0 32px;
}

/* Smooth reveal: newly-shown cards fade and slide in instead of popping. */
.js .vc-card-revealed {
    animation: vc-card-reveal 0.4s ease both;
}

@keyframes vc-card-reveal {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .js .vc-card-revealed { animation: none; }
    .vc-more-btn i { transition: none; }
}

.vc-more-wrap {
    text-align: center;
    margin-bottom: 40px;
}

/* Section divider – thin centered line, same look as the auto section dividers
   used between sections elsewhere on the site. */
.vc-divider {
    border: 0;
    height: 1px;
    background: var(--color-border-light);
    width: min(1152px, 100%);
    margin: 0 auto 48px;
}

/* No JS = no button (all cards already visible). */
html:not(.js) .vc-more-wrap {
    display: none;
}

.vc-more-btn i {
    transition: transform var(--transition-fast);
}

.vc-more-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.vc-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.vc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.vc-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
}

.vc-card-icon.blue { background: var(--color-blue); }
.vc-card-icon.green { background: var(--color-green); }
.vc-card-icon.yellow { background: var(--color-yellow); }
.vc-card-icon.red { background: var(--color-red); }
.vc-card-icon.navy { background: var(--color-blue-dark); }

/* Category tag on each card - colour semantics match the icon and filter dots. */
.vc-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

/* Category filter bar (JS-only control: hidden without JS, where every card is
   visible anyway). */
.vc-filter {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0 28px;
}

.js .vc-filter {
    display: flex;
}

.vc-filter-btn {
    /* flex:1 so the chips stretch and cumulatively span the full grid width
       (same total width as the two card columns), centred content within each */
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.vc-filter-btn:hover {
    border-color: var(--color-blue);
    color: var(--color-text-primary);
}

.vc-filter-btn.is-active {
    /* accessible variant: white on bright brand blue is only 2.46:1 */
    background: var(--color-blue-accessible);
    border-color: var(--color-blue-accessible);
    color: #fff;
}

.vc-filter-btn.is-active .vc-filter-dot {
    outline: 2px solid rgba(255,255,255,0.6);
}

.vc-filter-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vc-filter-dot.green { background: var(--color-green); }
.vc-filter-dot.blue { background: var(--color-blue); }
.vc-filter-dot.yellow { background: var(--color-yellow); }
.vc-filter-dot.red { background: var(--color-red); }
.vc-filter-dot.navy { background: var(--color-blue-dark); }

/* Category chip in the guide byline - links back to the filtered index. */
.vc-byline-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-white);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.vc-byline-category i {
    font-size: 0.7rem;
    color: var(--color-blue);
}

.vc-byline-category:hover {
    border-color: var(--color-blue);
    color: var(--color-text-primary);
}

.vc-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vc-card-body h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-text-primary);
    line-height: 1.35;
}

.vc-card-teaser {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.vc-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    flex-wrap: wrap;
}

.vc-read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.vc-read-time i {
    color: var(--color-blue);
    font-size: 0.8rem;
}

.vc-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-link);
}

.vc-card-readmore i {
    transition: transform var(--transition-fast);
}

.vc-card:hover .vc-card-readmore i {
    transform: translateX(4px);
}

/* Article Byline */
.vc-byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: 10px;
}

.vc-byline i {
    color: var(--color-blue);
    margin-right: 6px;
    font-size: 0.85rem;
}

.vc-byline .vc-author strong {
    color: var(--color-text-secondary);
}

/* Related Articles Box */
.vc-related {
    background: var(--color-bg);
    border-left: 4px solid var(--color-blue);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-top: 40px;
}

/* Founder/author card in articles and on the hub: full content width like
   "Læs også" and the CTA box */
.legal-content .founder-card,
.vc-page .founder-card {
    max-width: none;
    margin: 40px 0 0;
}

/* Founder card at the top of the index (before the guide grid): tighter to the
   hero above, more breathing room down to the cards. */
.vc-page > .container > .founder-card {
    margin: 12px 0 48px;
}

.vc-related h2 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-primary);
}

.vc-related h2 i {
    color: var(--color-blue);
}

.vc-related ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vc-related li {
    margin-bottom: 10px;
}

.vc-related li:last-child {
    margin-bottom: 0;
}

.vc-related a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-link);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.vc-related a:hover {
    text-decoration: underline;
}

.vc-related a i {
    font-size: 0.8rem;
}

/* Article CTA Box */
.vc-cta-box {
    background: linear-gradient(135deg, var(--color-blue) 0%, #2f8f9d 100%);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    color: white;
    margin-top: 48px;
}

/* Inline links in the CTA prose: the default blue body-link colour is
   illegible on the blue gradient, so use white with an underline. */
.vc-cta-box p a:not(.btn) {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vc-cta-box p a:not(.btn):hover {
    color: rgba(255,255,255,0.8);
}

.vc-cta-box h2 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.vc-cta-box p {
    color: white;
    opacity: 0.92;
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.vc-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vc-cta-box .btn-primary {
    background: white;
    color: var(--color-link);
}

.vc-cta-box .btn-primary:hover {
    background: var(--color-bg);
    transform: translateY(-2px);
}

.vc-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-pill);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.vc-cta-ghost:hover {
    background: white;
    border-color: white;
    color: var(--color-link);
}

/* Checklists in articles: the check icon replaces the bullet */
.legal-content ul.check-list {
    list-style: none;
    padding-left: 0;
}

/* Hanging indent: wrapped lines align under the first TEXT line, not under
   the check icon (absolute icon + padded li — flex can't split the icon from
   the text, they're one contiguous inline run) */
.legal-content ul.check-list li {
    position: relative;
    padding-left: 26px;
}

.legal-content ul.check-list li i {
    color: var(--color-green);
    position: absolute;
    left: 0;
    top: 5px;
    margin-right: 0;
}

/* Guide prose flows in the full content width (no readable-measure cap). */

/* Article images */
.vc-article-figure {
    margin: 32px 0;
}

.vc-article-figure picture {
    display: block;
    width: 100%;
}

.vc-article-figure img {
    display: block;
    width: 100%;
    height: auto;
    /* Cap the height so tall source images never stretch the page;
       object-fit crops (instead of squeezing) when the cap kicks in.
       Wide images keep their natural, lower height. */
    max-height: 420px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .vc-article-figure img {
        max-height: 260px;
    }
}

.vc-article-figure figcaption {
    margin-top: 10px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .vc-grid {
        gap: 24px;
    }

    .vc-card {
        padding: 28px;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .vc-hero h1 {
        font-size: 2.2rem;
    }
}

/* Tablet keeps a 2-column guide grid; only phones drop to a single column.
   (Below 640px the two-up cards get too narrow to read comfortably.) */
@media (max-width: 640px) {
    .vc-grid {
        grid-template-columns: 1fr;
    }

    /* On phones a single chip left on its row stretched full-width looked like
       an inconsistent button; size chips to content and CENTER the wrapping
       rows like the site's other chip clouds. */
    .vc-filter-btn {
        flex: 0 0 auto;
    }

    .vc-filter {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .vc-hero {
        padding: 120px 0 40px;
    }

    .vc-hero-description {
        font-size: 1.05rem;
    }

    .vc-page {
        padding: 40px 0 60px;
    }

    .vc-page-tail {
        padding: 48px 0 60px;
    }

    .vc-downloads {
        padding: 48px 0;
    }

    .vc-cta-box {
        padding: 36px 24px;
    }

    .vc-cta-box h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .vc-hero h1 {
        font-size: 1.8rem;
    }

    .vc-card {
        flex-direction: column;
        padding: 24px 20px;
    }

    .vc-related {
        padding: 20px;
    }

    .vc-byline {
        gap: 6px 16px;
        font-size: 0.9rem;
    }

    /* Tighter end-CTA on phones; keep the action buttons full-width & stacked
       so they stay comfortably tappable. */
    .vc-cta-box {
        padding: 32px 20px;
        margin-top: 0;
    }

    .vc-cta-box h2 {
        font-size: 1.3rem;
    }

    .vc-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .vc-cta-actions .btn,
    .vc-cta-ghost {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   HUB INTRO ("Uvildige guides") – sits under the founder
   card and matches its full-width footprint on the hub.
   ===================================================== */
.vc-intro {
    margin: 0 0 40px;
}

.vc-intro h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.vc-intro p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.vc-intro p:last-child {
    margin-bottom: 0;
}

.vc-intro a {
    color: var(--color-link);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vc-intro a:hover {
    text-decoration: none;
}

/* Founder cut-out to the right of the hub intro: the photo drops toward the
   CTA box below (gap between intro and box is 88px — 40px intro margin +
   48px box margin — so -50px leaves the feet 38px above the box edge), with
   a small name card floating over the feet, 12px clear of the box. */
.vc-intro-founder {
    display: flex;
    align-items: flex-start;
    gap: 100px;
}

.vc-intro-founder .vc-intro-text {
    flex: 1;
    min-width: 0;
}

.vc-intro-figure {
    position: relative;
    z-index: 0;
    width: 350px;
    flex-shrink: 0;
    align-self: flex-end;
    margin: 0 7px -50px 0;
}

.vc-intro-figure img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.vc-intro-figure-card {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    z-index: 2;
    width: max-content;
    max-width: 100%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-yellow);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 10px 16px;
    text-align: left;
    font-size: 0.85rem;
}

.vc-intro-figure-card em {
    display: block;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
}

.vc-intro-figure-card strong {
    display: block;
    color: var(--color-text-primary);
}

.vc-intro-figure-card span {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* The CTA box must paint above the photo's feet. */
.vc-page-tail .vc-cta-box {
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .vc-intro-founder {
        display: block;
    }

    /* Centered text to match the centered founder figure below it */
    .vc-intro-text {
        text-align: center;
    }

    /* the founder photo sits directly on the CTA box below (the 40px bottom
       margin re-created the gap the desktop overhang design avoids) */
    .vc-intro {
        margin-bottom: 0;
    }

    /* The founder figure (photo + quote + link to om-os) now shows on mobile
       too. Drop the fixed 350px width and centre it under the intro text so it
       fits narrow screens without overflowing. */
    .vc-intro-figure {
        width: 100%;
        max-width: 340px;
        margin: 24px auto 0;
        align-self: center;
    }
}

@media (max-width: 640px) {
    .vc-intro h2 {
        font-size: 1.35rem;
    }
}

/* =====================================================
   INLINE (MID-ARTICLE) CTA
   Compact, contextual nudge placed between two sections
   mid-way through a guide. Lighter than the end .vc-cta-box:
   a soft brand tint, an accent border and an inline layout.
   ===================================================== */
.vc-inline-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: rgba(53, 152, 168, 0.08);
    border: 1px solid rgba(53, 152, 168, 0.25);
    border-left: 4px solid var(--color-blue);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin: 40px 0;
}

.vc-inline-cta p {
    margin: 0;
    flex: 1 1 320px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.vc-inline-cta p strong {
    color: var(--color-text-primary);
}

.vc-inline-cta .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .vc-inline-cta {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }

    /* the desktop row's flex-basis (320px) is a WIDTH there but becomes a
       320px minimum HEIGHT in the stacked column — huge gap after the text */
    .vc-inline-cta p {
        flex: 0 1 auto;
    }

    .vc-inline-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   Downloadable checklists section (hub page)
   ===================================================== */
.vc-downloads {
    background: var(--color-white);
    padding: 64px 0;
}

.vc-downloads-head {
    max-width: 720px;
    margin-bottom: 28px;
}

.vc-downloads-head .section-label {
    color: var(--color-red);
    margin-bottom: 12px;
}

.vc-downloads-head h2 {
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.vc-downloads-head p {
    color: var(--color-text-secondary);
    margin: 0;
}

.vc-downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vc-dl-card {
    display: flex;
    gap: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 22px;
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.vc-dl-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

/* These cards double as .kk-pdf-card so they inherit the mail-form styling and
   JS wiring from pdf-download.css/js. Reset the parts of .kk-pdf-card that would
   fight the hub card look (its gradient bg, accent border-left, outer margin,
   top alignment). */
.vc-dl-card.kk-pdf-card {
    align-items: stretch;
    margin: 0;
    border-left: 1px solid var(--color-border-light);
    background: var(--color-white);
}

.vc-dl-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-red);
    background: rgba(220, 53, 69, 0.08);
    border-radius: var(--radius-md);
}

.vc-dl-body {
    flex: 1;
    min-width: 0;
}

.vc-dl-body h3 {
    font-size: 1.05rem;
    color: var(--color-text-primary);
    margin: 0 0 6px;
}

.vc-dl-body p {
    color: var(--color-text-secondary);
    font-size: 0.94rem;
    line-height: 1.5;
    margin: 0 0 14px;
}

.vc-dl-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.vc-dl-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-red);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.vc-dl-download:hover {
    background: #b02a37;
    color: var(--color-white);
}

.vc-dl-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--color-link);
}

.vc-dl-source i {
    transition: transform var(--transition-fast);
}

.vc-dl-source:hover i {
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .vc-downloads-grid {
        grid-template-columns: 1fr;
    }
}

/* Links inside article prose chrome must not rely on color alone to be
   distinguishable (WCAG 1.4.1 / Lighthouse link-in-text-block). */
.vc-byline .vc-author a,
.vc-article-figure figcaption a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Centered hub hero when stacked (phones + the 769-900 tablet band) */
@media (max-width: 900px) {
    .vc-hero .legal-breadcrumb {
        justify-content: center;
    }

    .vc-hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .vc-hero-media {
        margin-left: auto;
        margin-right: auto;
    }
}

/* CTA box: the section above provides the spacing on stacked layouts
   (matches the .vc-intro margin release, which also applies to 900px) */
@media (max-width: 900px) {
    .vc-cta-box {
        margin-top: 0;
    }
}

/* Between ~920-1057px the six stretch-to-fill filter chips wrap 5+1, leaving
   "Regler & jura" alone on a stretched full-width row — switch to the
   content-sized centered chips (the mobile treatment) for that band too */
@media (max-width: 1057px) {
    .vc-filter {
        justify-content: center;
    }

    .vc-filter-btn {
        flex: 0 0 auto;
    }
}

/* The founder card between the guide body and the contact section carried no
   bottom margin — the contact block sat directly on it */
.legal-page .founder-card {
    margin-bottom: 40px;
}
