@charset "utf-8";

.fa-icon,
blockquote:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/**********
 Variables
 **********/
body {
    /* Text */
    --text-font-family: 'Lato', sans-serif;
    --heading-font-family: 'Lato', sans-serif;
    --text-font-size: 16px;
    --text-font-size-large: calc(16px + 2px);
    --heading-1-font-size: 48px;
    --heading-2-font-size: 32px;
    --heading-3-font-size: 24px;
    --heading-4-font-size: 20px;
    --heading-5-font-size: 16px;
    --heading-6-font-size: calc(16px - 2px);
    /* Other */
    --border-radius-base: 16px;
    --border-radius-small: calc(16px / 2);
    --border-radius-button: 50px;
    --logo-height: 50px;
    /* Assets */
    --assets-check-svg: url(/hc/theming_assets/01K6HZFF2C778EGZB80H4ZQCWZ);
    --assets-circle-svg: url(/hc/theming_assets/01K6HZF82FKPC11GV8JH1J8QPK);
}

/**********
 Light mode
 **********/
body {
    --primary-color: rgba(32, 77, 115, 1);
    --secondary-color: rgba(24, 60, 132, 1);
    --primary-bg-color: rgba(255, 255, 255, 1);
    --primary-bg-color-always: rgba(255, 255, 255, 1);
    --secondary-bg-color: rgba(232, 238, 241, 1);
    --secondary-bg-color-always: rgba(232, 238, 241, 1);
    --primary-text-color: #000C20;
    --secondary-text-color: rgba(108, 125, 153, 1);
    --link-color: rgba(35, 45, 85, 1);
    --border-color: rgba(241, 243, 246, 1);
    --info-color: #1863BC;
    --success-color: rgba(34, 138, 62, 1);
    --warning-color: #F1D52F;
    --danger-color: #e64545;
    --primary-color-light-hover: #193d5b;
    --primary-color-hover: #132d43;
    --primary-color-active: #0f2537;
    --secondary-color-hover: #0f2450;
    --secondary-color-active: #0c1f43;
    --secondary-bg-color-hover: #dbe5e9;
    --secondary-bg-color-active: #d5e0e5;
    --secondary-text-color-hover: #63738e;
    --secondary-text-color-active: #5e6e88;
    --link-color-hover: #11162a;
    --link-color-active: #0d101f;
    --bg-image-opacity: 0.5;
    --bg-image-opacity-dark: 0.5;
    --bg-image-color: var(--primary-text-color);
}

.layout--style-filled .section:nth-child(even),
.layout--style-invert .section:nth-child(odd),
.section--secondary {
    /* Invert colors */
    --primary-bg-color: rgba(232, 238, 241, 1);
    --secondary-bg-color: rgba(255, 255, 255, 1);
}

/*********
 Dark mode
 *********/
.ui-dark body {
    /* UI dark colors */
    --primary-color: rgba(35, 45, 85, 1);
    --secondary-color: #6DBC1D;
    --primary-bg-color: #000C20;
    --primary-bg-color-always: #000C20;
    --secondary-bg-color: #182233;
    --secondary-bg-color-always: #182233;
    --primary-text-color: #FFFFFF;
    --secondary-text-color: #8290A8;
    --link-color: #1863BC;
    --border-color: #242f42;
    --info-color: #1863BC;
    --success-color: #67C30B;
    --warning-color: #F1D52F;
    --danger-color: #e64545;
    --primary-color-light-hover: #2c386b;
    --primary-color-hover: #354480;
    --primary-color-active: #394a8b;
    --secondary-color-hover: #8ce036;
    --secondary-color-active: #93e243;
    --secondary-bg-color-hover: #2c3e5d;
    --secondary-bg-color-active: #304567;
    --link-color-hover: #4891e8;
    --link-color-active: #5699e9;
    --bg-image-opacity: 0.5;
    --bg-image-opacity-dark: 0.75;
    --bg-image-color: var(--primary-bg-color);
}

.ui-dark .layout--style-filled .section:nth-child(even),
.ui-dark .layout--style-invert .section:nth-child(odd),
.ui-dark .section--secondary {
    /* Invert colors */
    --primary-bg-color: #182233;
    --secondary-bg-color: #000C20;
}

/***********
 Base styles
 ***********/
*,
*:before,
*:after {
    box-sizing: border-box;
}

body,
html {
    min-height: 100vh;
}

[dir] body,
[dir] html {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--text-font-family);
    font-size: var(--text-font-size);
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-text-color);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

[dir] body {
    background-color: var(--secondary-bg-color);
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-color-active);
  	text-decoration: none;
}

a:active,
a.is-active {
    color: var(--link-color-active);
}

[dir] a.is-disabled {
    cursor: default;
}

a.is-disabled,
a.is-disabled:hover,
a.is-disabled:active,
a.is-disabled.is-active {
    color: var(--secondary-text-color);
}

[dir] a,
[dir] button,
[dir] [type=submit],
[dir] [type=button],
[dir] [type=reset] {
    cursor: pointer;
}

a,
input,
button,
select,
textarea,
label {
    transition: all 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
label:focus {
    outline: none;
}

a.focus-visible,
input.focus-visible,
button.focus-visible,
select.focus-visible,
textarea.focus-visible,
label.focus-visible {
    outline: auto 5px -webkit-focus-ring-color;
}

[dir] figure {
    margin: 0;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/********
 Headings
 ********/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--heading-font-family);
    font-weight: 700;
}

h1,
.h1 {
    font-size: var(--heading-2-font-size);
    line-height: 1.2;
}

[dir] h1,
[dir] .h1 {
    margin: 0 0 1.2em;
}

[dir] .markdown h1,
[dir] .markdown .h1 {
    margin-top: 1.2em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
    h1,
    .h1 {
        font-size: var(--heading-1-font-size);
        line-height: 1.1;
    }

    [dir] h1,
    [dir] .h1 {
        margin: 0 0 1em;
    }

    [dir] .markdown h1,
    [dir] .markdown .h1 {
        margin-top: 1em;
    }
}

h2,
.h2 {
    font-size: var(--heading-3-font-size);
    line-height: 1.3;
}

[dir] h2,
[dir] .h2 {
    margin: 0 0 1.3em;
}

[dir] .markdown h2,
[dir] .markdown .h2 {
    margin-top: 1.3em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
    h2,
    .h2 {
        font-size: var(--heading-2-font-size);
        line-height: 1.2;
    }

    [dir] h2,
    [dir] .h2 {
        margin: 0 0 1.2em;
    }

    [dir] .markdown h2,
    [dir] .markdown .h2 {
        margin-top: 1.2em;
    }
}

h3,
.h3 {
    font-size: var(--heading-4-font-size);
    line-height: 1.4;
}

[dir] h3,
[dir] .h3 {
    margin: 0 0 1.4em;
}

[dir] .markdown h3,
[dir] .markdown .h3 {
    margin-top: 1.4em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
    h3,
    .h3 {
        font-size: var(--heading-3-font-size);
        line-height: 1.3;
    }

    [dir] h3,
    [dir] .h3 {
        margin: 0 0 1.3em;
    }

    [dir] .markdown h3,
    [dir] .markdown .h3 {
        margin-top: 1.3em;
    }
}

h4,
.h4 {
    font-size: var(--heading-4-font-size);
    line-height: 1.4;
}

[dir] h4,
[dir] .h4 {
    margin: 0 0 1.4em;
}

[dir] .markdown h4,
[dir] .markdown .h4 {
    margin-top: 1.4em;
}

h5,
.h5 {
    font-size: var(--heading-5-font-size);
    line-height: 1.5;
}

[dir] h5,
[dir] .h5 {
    margin: 0 0 1.5em;
}

[dir] .markdown h5,
[dir] .markdown .h5 {
    margin-top: 1.5em;
}

h6,
.h6 {
    font-size: var(--heading-6-font-size);
    line-height: 1.5;
}

[dir] h6,
[dir] .h6 {
    margin: 0 0 1.5em;
}

[dir] .markdown h6,
[dir] .markdown .h6 {
    margin-top: 1.5em;
}

/**********************
 Other default elements
 *********************/
[dir] p,
[dir] ul,
[dir] ol,
[dir] dl,
[dir] pre,
[dir] table,
[dir] blockquote {
    margin: 1.5em 0 1.5em;
}

[dir] li {
    margin: 0.75em 0 0.75em;
}

small,
.small {
    font-size: var(--heading-6-font-size);
}

[role="main"] {
    flex-grow: 1;
    position: relative;
}

hr {
    display: block;
    height: 0;
}

[dir] hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

pre {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    color: var(--primary-bg-color);
}

[dir] pre {
    padding: 8px 16px;
    border-radius: var(--border-radius-base);
    background-color: var(--primary-text-color);
}

.ui-dark pre {
    color: var(--secondary-text-color);
}

[dir].ui-dark pre {
    background-color: var(--secondary-bg-color);
}

blockquote {
    display: block;
    position: relative;
    z-index: 2;
}

[dir=ltr] blockquote {
    padding-left: 16px;
    border-left: 1px solid var(--border-color);
}

[dir=rtl] blockquote {
    padding-right: 16px;
    border-right: 1px solid var(--border-color);
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
    [dir=ltr] blockquote {
        padding-left: 24px;
    }

    [dir=rtl] blockquote {
        padding-right: 24px;
    }
}

@media only screen and (min-width: 980px) {
    [dir=ltr] blockquote {
        padding-left: 32px;
    }

    [dir=rtl] blockquote {
        padding-right: 32px;
    }
}

blockquote:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: -4px;
    font-size: 60px;
    color: var(--secondary-bg-color);
}

[dir=ltr] blockquote:before {
    left: 8px;
}

[dir=rtl] blockquote:before {
    right: 8px;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9) and (max-width: 979px), only screen and (min-width: 668px) and (min-height: 416px) and (max-width: 979px) {
    [dir=ltr] blockquote:before {
        left: 12px;
    }

    [dir=rtl] blockquote:before {
        right: 12px;
    }
}

@media only screen and (min-width: 980px) {
    [dir=ltr] blockquote:before {
        left: 16px;
    }

    [dir=rtl] blockquote:before {
        right: 16px;
    }
}

.list-unstyled {
    list-style: none;
}

[dir=ltr] .list-unstyled {
    padding-left: 0;
}

[dir=rtl] .list-unstyled {
    padding-right: 0;
}

dl.details {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
}

[dir] dl.details {
    margin-bottom: 32px;
}

dl.details > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

dl.details > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

dl.details > dt {
    font-weight: 700;
}

[dir] dl.details > dt {
    margin-bottom: 12px;
}

[dir=ltr] dl.details > dt {
    margin-right: 8px;
}

[dir=rtl] dl.details > dt {
    margin-left: 8px;
}

[dir] dl.details > dd {
    margin-bottom: 12px;
}

dl.details > div {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
}

[dir] dl.details > div {
    margin-bottom: 12px;
}

dl.details--type-2 {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

[dir] dl.details--type-2 {
    margin-bottom: 0;
}

dl.details--type-2 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

dl.details--type-2 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

dl.details--type-2 > dd {
    color: var(--secondary-text-color);
}

@media only screen and (min-width: 980px), only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
    [dir=ltr] dl.details--type-2 > dd {
        text-align: right;
    }

    [dir=rtl] dl.details--type-2 > dd {
        text-align: left;
    }
}

.text-secondary {
    font-size: var(--heading-6-font-size);
    line-height: 1.5;
    color: var(--secondary-text-color);
}

/******
 Tables
 ******/
.table-container {
    display: block;
    width: 100%;
    overflow-x: unset;
}

[dir] .table-container {
    border: 0px solid var(--border-color);
}

.table-container table:not(.pika-table) {
    width: calc(100% + 3px);
    max-width: calc(100% + 3px);
}

[dir] .table-container table:not(.pika-table) {
    margin: -1px;
}

table:not(.pika-table) {
    width: 100%;
    max-width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

table:not(.pika-table) thead {
    font-weight: 700;
}

[dir] table:not(.pika-table) thead {
    background-color: var(--secondary-bg-color);
}

[dir] table:not(.pika-table) tfoot {
    background-color: var(--secondary-bg-color);
}

table:not(.pika-table) thead,
table:not(.pika-table) tbody,
table:not(.pika-table) tfoot {
    width: 100%;
    max-width: 100%;
}

[dir=ltr] table:not(.pika-table) th {
    border-left: 1px solid var(--border-color);
}

[dir=rtl] table:not(.pika-table) th {
    border-right: 1px solid var(--border-color);
}

[dir] table:not(.pika-table) td {
    padding: 8px;
    border: 0px solid var(--border-color);
}

/*******
 Iframes
 *******/
.iframe {
    display: block;
    width: 100%;
    height: 0;
    position: relative;
}

.iframe iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

[dir=ltr] .iframe iframe {
    left: 0;
}

[dir=rtl] .iframe iframe {
    right: 0;
}

/* Verbeterde sectie-kaarten */
.sections__item {
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.2s ease-in-out;
}

.sections__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Titel */
.sections__item > a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #001b44;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.sections__item > a:hover {
  color: #0059c9;
}

/* Beschrijving */
.categories__description {
  font-size: 1rem;
  color: #5f6a7d;
  margin-bottom: 12px;
}

/* Artikellijst onder sectie */
.articles--simple {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.articles--simple .col--md-6 a {
  color: #003366;
  text-decoration: none;
  font-weight: 500;
}

.articles--simple .col--md-6 a:hover {
  text-decoration: underline;
  text-align: left;
}

/* Zorg dat titelcontainer links blijft uitlijnen */
.page-heading__content {
  display: flex;
  justify-content: flex-start !important;
  text-align: left;
}

/* Titel zelf links houden */
.page-heading__content-left {
  text-align: left;
  margin: 0; /* verwijdert centrale auto-marges */
  justify-content: flex-start;
}

/* Titelstijl behouden */
.page-heading__title {
  font-size: 2rem;
  font-weight: 700;
  color: #001b44;
  margin-bottom: 1rem;
  text-align: left !important;
}

/* ===== Captin formulierstijl ===== */

/* Algemene stijl voor invoervelden */
.request-form input[type="text"],
.request-form input[type="email"],
.request-form input[type="tel"],
.request-form input[type="url"],
.request-form input[type="number"],
.request-form input[type="password"],
.request-form select,
.request-form textarea {
  background-color: #e1e8f1;           /* jouw gewenste kleur */
  border: 1px solid #c7d2e2;           /* subtiele randkleur */
  border-radius: 8px;                  /* ronde hoeken voor moderne look */
  padding: 10px 14px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: #001b44;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

/* Hover en focus (interactie) */
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  background-color: #f5f8fc;
  border-color: #1f4d73;               /* primair Captin blauw */
  box-shadow: 0 0 0 3px rgba(31,77,115,0.15);
}

/* Labels */
.request-form label {
  display: block;
  font-weight: 600;
  color: #001b44;
  margin-bottom: 6px;
}

/* Help-tekstjes onder velden */
.request-form p {
  color: #5f6a7d;
  font-size: 14px;
  margin-top: 4px;
}

/* Submitknop */
.request-form input[type="submit"] {
  background-color: #1f4d73;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.request-form input[type="submit"]:hover {
  background-color: #17405f;
}

/* Basiskleur voor dropdown (zoals nu al) */
.request-form .nesty-input {
  background-color: #e1e8f1 !important;
  border: 1px solid #c7d2e2 !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-size: 16px !important;
  font-family: 'Lato', sans-serif !important;
  color: #001b44 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  height: 46px !important;
  line-height: 24px !important;
  transition: all 0.25s ease !important;
}

/* Hover/focusstijl */
.request-form .nesty-input:hover,
.request-form .nesty-input:focus {
  background-color: #f5f8fc !important;
  border-color: #1f4d73 !important;
  box-shadow: 0 0 0 3px rgba(31,77,115,0.15) !important;
  outline: none !important;
}

/* Groen maken zodra een keuze is geselecteerd */
.request-form .nesty-input[data-value]:not([data-value=""]) {
  background-color: #3ba76f !important; /* Captin-groen */
  color: #ffffff !important;
  border-color: #2f8b5b !important;
  font-weight: 600 !important;
}

/* Optioneel: witte tekst blijft goed leesbaar */
.request-form .nesty-input[data-value]:not([data-value=""])::placeholder {
  color: #ffffff !important;
}

/* Ook de pijl (chevron) wit maken bij selectie */
.request-form .nesty-input[data-value]:not([data-value=""])::after {
  color: #ffffff !important;
}

/* Alleen het veld "Onderneming of het beleggingsinstrument" */
.request_custom_fields_30853158738205 .nesty-input {
  background-color: #e1e8f1 !important;
  border: 1px solid #c7d2e2 !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-size: 16px !important;
  font-family: 'Lato', sans-serif !important;
  color: #001b44 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  height: 46px !important;
  line-height: 24px !important;
  transition: all 0.25s ease !important;
}

/* Hover/focusstijl */
.request_custom_fields_30853158738205 .nesty-input:hover,
.request_custom_fields_30853158738205 .nesty-input:focus {
  border-color: #1f4d73 !important;
  box-shadow: 0 0 0 3px rgba(31,77,115,0.15) !important;
}

/* Groen zodra een optie is geselecteerd */
.request_custom_fields_30853158738205 .nesty-input[data-value]:not([data-value=""]) {
  background-color: #3ba76f !important; /* Captin-groen */
  color: #ffffff !important;
  border-color: #2f8b5b !important;
  font-weight: 600 !important;
}

/* Ook de pijl (chevron) wit maken */
.request_custom_fields_30853158738205 .nesty-input[data-value]:not([data-value=""])::after {
  color: #ffffff !important;
}

/* ===== Captin - Artikelweergave verbeterd ===== */

/* Maak de hoofdtekst breder en rustiger */
.page-content__article--small .page-content__center-col {
  max-width: 900px !important;
  margin: 0 auto !important;
}

/* Verminder witruimte rond de content */
.page-content {
  margin-top: 20px !important;
  margin-bottom: 60px !important;
  padding: 0 15px !important;
}

/* Leesbaarheid van tekst */
.markdown {
  line-height: 1.7 !important;
  font-size: 17px !important;
  color: #1a2b44 !important;
}

/* Titels consistent en links */
.page-heading__title {
  text-align: left !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #1f4d73 !important;
  margin-bottom: 20px !important;
}

/* ===== Zijblok "Artikelen in deze sectie" ===== */
.page-content__bordered-box {
  border: none !important;
  background: #f8fafc !important;
  border-top: 4px solid #1f4d73 !important; /* dikker top border */
  border-radius: 0 0 16px 16px !important;
  padding: 30px !important;
  margin-top: 60px !important;
  max-width: 900px !important;  /* zelfde breedte als artikel */
  margin-left: auto !important;
  margin-right: auto !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
}

/* Kolommen binnen het zijblok volledig breed */
.page-content__bordered-box .row {
  display: block !important;
}
.page-content__bordered-box .col--md-up-6 {
  width: 100% !important;
}

/* Koptekst en links mooi in stijl */
.recent-articles h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1f4d73 !important;
  margin-bottom: 12px !important;
}

.recent-articles ul li {
  margin-bottom: 8px !important;
}

.recent-articles ul li a {
  color: #1a2b44 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.recent-articles ul li a:hover {
  color: #3ba76f !important; /* Captin groen */
  text-decoration: underline !important;
}

/* =====================================
   Captin - Linkweergave fix in tabellen en lijsten
   ===================================== */

/* Voorkom lelijke afbrekingen van links of woorden */
.markdown a,
.markdown table a,
.markdown li a {
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  white-space: normal !important;
}

/* In tabellen: hou kolombreedte netjes */
.markdown table {
  table-layout: auto !important;
  width: 100% !important;
  word-break: normal !important;
}

/* Optioneel: maak links in tabellen iets subtieler */
.markdown table a {
  color: #1a2b44 !important;
  text-decoration: underline !important;
}

.markdown table a:hover {
  color: #3ba76f !important; /* Captin-groen */
}

/* Zorg dat lange woorden niet uit de container steken */
.markdown p,
.markdown li,
.markdown td {
  overflow-wrap: break-word !important;
  word-break: normal !important;
}

/* =====================================
   Captin - Fix voor afgebroken links in lijsten
   ===================================== */

/* Herstel normale lijnverloop in lijsten en verwante artikelen */
.related-articles ul li,
.recent-articles ul li {
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

/* Zorg dat de link de volledige breedte van de container mag gebruiken */
.related-articles ul li a,
.recent-articles ul li a {
  display: inline-block !important;
  width: 100% !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  line-height: 1.5 !important;
}

/* Optioneel: verbeter spacing tussen regels */
.related-articles ul li,
.recent-articles ul li {
  margin-bottom: 10px !important;
}

#request_subject {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

label[for="request_subject"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

#request_suggestions {
  margin-top: 10px !important;
  padding: 16px;
  border-radius: 8px;
  background: #f5f8fc;
  border: 1px solid #d5e0eb;
}
#request_suggestions ul {
  margin: 0;
  padding-left: 16px;
}
#request_suggestions li {
  margin-bottom: 6px;
}

#request_suggestions {
  margin-bottom: 20px !important;
}

/* ===== Captin - Suggestieblok styling ===== */

#request_suggestions {
  background: #f5f8fc !important;
  border: 1px solid #d5e0eb !important;
  border-radius: 12px !important;
  padding: 20px 24px !important;
  margin: 12px 0 30px 0 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Header */
#request_suggestions .captin-suggest-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1f4d73 !important;  /* Captin-blauw */
  margin-bottom: 12px !important;
}

/* Artikellijst */
#request_suggestions ul {
  margin: 0;
  padding-left: 20px;
}

/* Links */
#request_suggestions li a {
  color: #1a2b44 !important;
  font-size: 16px !important;
  line-height: 1.5;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

#request_suggestions li a:hover {
  color: #3ba76f !important;  /* Captin-groen */
  text-decoration: underline !important;
}
