

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('/_library/css/askhub-nav.css');

:root {
    --ahBlue: #1a54c8;
    --ahLightBlue: #4dbee0;
    --ahDarkBlue: #0d5469;
    --ahRed: rgb(180, 23, 23);
    --ahLightRed: rgb(230, 78, 78);
    --ahOrange: #f26522;
    --ahLightOrange: #ef9e77;
    --ahDarkOrange: #9f3706;

    --appDark: #202020;
    --appLight: #f1f1f1;
    --appWhite: #fff;
    --appGrey: #dddddd;

    --appBorderRadius: 5px;
    --ah-gutter: 1.5rem;
    --bs-body-font-family: Inter;
}


body {
    background-color: #011d25;
}
* {
    font-family: var(--bs-body-font-family);
}
a {
    text-decoration: none;
}
.section {
    padding-right: calc(var(--ah-gutter));
    padding-left: calc(var(--ah-gutter));
    padding-top: var(--ah-gutter);
    padding-bottom: var(--ah-gutter);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
}
.section-black {
    background-color: var(--appDark);
}
.section-lightblue {
    background-color: var(--ahLightBlue);
}
.section-orange {
    background-color: var(--ahLightOrange);
}
.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}


.askhub-footer {
    background-color: var(--appLight);
}


.team-photo {
    width: 100%;
    max-width: 100%;
}

/* Iconbox feature grid (icon above title, outlined circle) */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border: 2px solid var(--ahBlue);
    border-radius: 50%;
    color: var(--ahBlue);
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

/* Vertical/horizontal divider lines between feature columns */
.feature-grid > [class*="col-"]:not(:last-child) {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .feature-grid > [class*="col-"] {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .feature-grid > [class*="col-"]:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.8);
    }
}

/* Element coloring */
.text-blue {
    color: var(--ahBlue);
}
.text-lightblue {
    color: var(--ahLightBlue);
}
.text-dark {
    color: var(--appDark);
}
.btn-red {
    background-color: var(--ahRed);
    color: var(--ahWhite);
}
.btn-red:hover {
    background-color: var(--ahLightRed);
}
.btn-blue {
    background-color: var(--ahBlue);
    color: var(--ahWhite);
}
.btn-blue:hover {
    background-color: var(--ahLightBlue);
}
.bg-lightblue {
    background-color: var(--ahLightBlue);
}

.border-lightblue {
    border-color: var(--ahLightBlue) !important;
}

.askhub-footer-logo {
    height: 25px;
    width: auto;
}
.askhub-social {
    margin-right: 20px;
}

@media (min-width: 576px) /******* SM ********/
{
    #sm { display: block; }
}
@media (min-width: 768px)  /******* MD ********/
{
    #sm { display: none; }
    #md { display: block; }
}
@media (min-width: 992px) /******* LG ********/
{
    #sm { display: none; }
    #md { display: none; }
    #lg { display: block; }
}
@media (min-width: 1200px) /******* XL ********/ 
{
    #sm { display: none; }
    #md { display: none; }
    #lg { display: none; }
    #xl { display: block; }
}
@media (min-width: 1400px) /******* XXL ********/ 
{
    #sm { display: none; }
    #md { display: none; }
    #lg { display: none; }
    #xl { display: none; }
    #xxl { display: block; }
}	
@media (min-width: 1600px) /******* XXXL ********/ 
{
    #sm { display: none; }
    #md { display: none; }
    #lg { display: none; }
    #xl { display: none; }
    #xxl { display: none; }
    #xxxl { display: block; }

    .section {
        padding-right: calc(var(--ah-gutter) * 5);
        padding-left: calc(var(--ah-gutter) * 5);
    }
}


/* Blog overzicht
================================================== */
.blog-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(77, 190, 224, 0.18);
    border-radius: var(--appBorderRadius);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--ahLightBlue);
    background-color: rgba(255, 255, 255, 0.07);
}
.blog-card-img-wrap {
    height: 200px;
    overflow: hidden;
    background-color: #02323f;
}
.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.05);
}
.blog-card-body {
    padding: 1.5rem;
}
.blog-card-date {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}
#blog-pagination .page-link {
    background-color: transparent;
    border-color: rgba(77, 190, 224, 0.3);
    color: #fff;
}
#blog-pagination .page-item.active .page-link {
    background-color: var(--ahBlue);
    border-color: var(--ahBlue);
    color: #fff;
}
#blog-pagination .page-item.disabled .page-link {
    color: rgba(255, 255, 255, 0.35);
    background-color: transparent;
    border-color: rgba(77, 190, 224, 0.15);
}


/* Blog artikel
================================================== */
.blog-post-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
}
.blog-post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(1, 29, 37, 0.45) 0%, rgba(1, 29, 37, 0.75) 60%, rgba(1, 29, 37, 0.97) 100%);
    z-index: 1;
}
.blog-post-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    color: #fff;
    padding-top: 5rem;
    padding-bottom: 3.5rem;
}
.blog-post-breadcrumb {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}
.blog-post-breadcrumb a {
    color: var(--ahLightBlue);
    text-decoration: none;
}
.blog-post-breadcrumb a:hover {
    text-decoration: underline;
}
.blog-post-category {
    display: inline-block;
    background-color: var(--ahBlue);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 50rem;
}
.blog-post-meta {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.blog-post-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #fff;
    font-weight: 500;
    border-left: 4px solid var(--ahLightBlue);
    padding-left: 1.25rem;
}

/* Door de redactie geleverde HTML-content */
.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}
.blog-post-content > *:first-child {
    margin-top: 0;
}
.blog-post-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.blog-post-content h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 0.85rem;
}
.blog-post-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}
.blog-post-content p {
    margin-bottom: 1.35rem;
}
.blog-post-content a {
    color: var(--ahLightBlue);
    text-decoration: underline;
}
.blog-post-content a:hover {
    color: #fff;
}
.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.35rem;
    padding-left: 1.5rem;
}
.blog-post-content li {
    margin-bottom: 0.5rem;
}
.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--appBorderRadius);
    margin: 1.5rem 0;
}
.blog-post-content blockquote {
    border-left: 4px solid var(--ahBlue);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 1.75rem 0;
    font-style: italic;
    color: #fff;
}
.blog-post-content table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}
.blog-post-content th,
.blog-post-content td {
    border: 1px solid rgba(77, 190, 224, 0.25);
    padding: 0.6rem 0.85rem;
    text-align: left;
}
.blog-post-content th {
    background-color: rgba(77, 190, 224, 0.12);
}

.blog-post-tags {
    border-top: 1px solid rgba(77, 190, 224, 0.2);
}
.blog-post-tags-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}
.blog-post-tag {
    display: inline-block;
    margin: 0 0.4rem 0.5rem 0;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(77, 190, 224, 0.4);
    border-radius: 50rem;
    font-size: 0.9rem;
    color: var(--ahLightBlue);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-post-tag:hover {
    background-color: var(--ahBlue);
    border-color: var(--ahBlue);
    color: #fff;
}
.blog-post-back {
    border-top: 1px solid rgba(77, 190, 224, 0.2);
}

@media (max-width: 767.98px) {
    .blog-post-hero {
        min-height: 420px;
    }
    .blog-post-hero-inner {
        padding-top: 3rem;
    }
}


/* Data Sanity Scanner
================================================== */
.dss-quote {
    background-color: rgba(255, 255, 255, 0.04);
    border-left: 4px solid var(--ahBlue);
    border-radius: var(--appBorderRadius);
    padding: 2rem;
}
.dss-quote i {
    font-size: 2rem;
}
.dss-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.dss-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}
.dss-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: var(--ahBlue);
    font-size: 0.9rem;
}
.section-lightblue .dss-list li::before {
    color: #fff;
}
.dss-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(77, 190, 224, 0.18);
    border-radius: var(--appBorderRadius);
    padding: 1.1rem 1.25rem;
    height: 100%;
    font-weight: 500;
}
.dss-benefit i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.dss-price-card {
    background-color: rgba(1, 29, 37, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--appBorderRadius);
    padding: 2rem;
    text-align: center;
}
.dss-price-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--ahBlue);
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.dss-price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    margin: 0.5rem 0 0.25rem;
}
.dss-price-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}
.dss-price-table {
    width: 100%;
    margin-bottom: 1rem;
}
.dss-price-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.dss-price-table tr:last-child td {
    border-bottom: none;
}

.dss-cta {
    background: linear-gradient(135deg, var(--ahDarkBlue) 0%, var(--ahBlue) 100%);
    border-radius: var(--appBorderRadius);
}


/* AskHub RAG - abonnementscalculator
================================================== */
.rag-pkg {
    background-color: rgba(1, 29, 37, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--appBorderRadius);
    color: #fff;
    padding: 1.25rem 1rem;
    text-align: left;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}
.rag-pkg:hover {
    border-color: #fff;
    transform: translateY(-2px);
}
.rag-pkg.active {
    border-color: var(--ahBlue);
    background-color: var(--ahDarkBlue);
    box-shadow: 0 0 0 3px rgba(26, 84, 200, 0.35);
}
.rag-pkg-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.rag-pkg-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}
.rag-pkg-specs li {
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.85);
}
.rag-pkg-specs i {
    width: 1.25rem;
    color: var(--ahLightBlue);
}
.rag-pkg.active .rag-pkg-specs i {
    color: #fff;
}

.rag-slider-wrap {
    background-color: rgba(1, 29, 37, 0.35);
    border-radius: var(--appBorderRadius);
    padding: 1.5rem;
}
.rag-slider {
    width: 100%;
}
.rag-slider-scale {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}
.rag-emp-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.rag-result {
    background-color: var(--ahDarkBlue);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--appBorderRadius);
    padding: 2rem;
    text-align: center;
}
.rag-result-label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}
.rag-result-total {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.rag-result-sub {
    color: rgba(255, 255, 255, 0.85);
}
.rag-result-table {
    width: 100%;
    text-align: left;
}
.rag-result-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.rag-result-table tr:last-child td {
    border-bottom: none;
}

/* Slider thumb/track in de huisstijl */
.rag-slider::-webkit-slider-thumb {
    background-color: var(--ahBlue);
}
.rag-slider::-moz-range-thumb {
    background-color: var(--ahBlue);
    border: none;
}


/* Phronesis - interactieve tool
================================================== */
.phronesis-panel {
    background-color: #fff;
    color: #202020;
    border-radius: var(--appBorderRadius);
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
}
.phronesis-panel-header {
    background-color: var(--ahDarkBlue);
    color: #fff;
    padding: 1rem 1.5rem;
}
.phronesis-panel-body {
    padding: 1.5rem;
    min-height: 18vh;
}
.phronesis-panel-body .form-control {
    resize: vertical;
}
.phronesis-panel-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e8e8e8;
    background-color: #f7f9fb;
}
#phronesis-content {
    color: #202020;
}

