/* ============================================================
   FYSIOHUB ARTIKELEN
   ============================================================ */

.fh-articles-page,
.fh-articles-dashboard,
.fh-single-article,
.fh-home-articles {
    font-family: "Montserrat", sans-serif;
    color: #102b45;
}

.fh-articles-page,
.fh-articles-dashboard {
    background: #f7f9fc;
    padding: 54px 20px 90px;
}

.fh-home-articles {
    padding: 78px 20px;
    background: #f7f9fc;
}

.fh-articles-container {
    width: min(100%, 1200px);
    margin: 0 auto;
}


/* ============================================================
   HEADINGS
   ============================================================ */

.fh-articles-eyebrow {
    display: block;
    margin-bottom: 9px;

    color: #6c3df4;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;

    text-transform: uppercase;
}

.fh-articles-hero {
    max-width: 760px;
    margin-bottom: 36px;
}

.fh-articles-hero h1,
.fh-articles-dashboard-heading h1 {
    margin: 0 0 12px;

    color: #09233f;

    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.08;
}

.fh-articles-hero p,
.fh-articles-dashboard-heading p {
    margin: 0;

    color: #617286;

    font-size: 16px;
    line-height: 1.7;
}


/* ============================================================
   TERUG
   ============================================================ */

.fh-articles-back {
    display: inline-flex;

    margin-bottom: 26px;

    color: #667689;

    font-size: 14px;
    font-weight: 650;

    text-decoration: none;
}

.fh-articles-back:hover {
    color: #6c3df4;
}


/* ============================================================
   FILTERS
   ============================================================ */

.fh-article-filters {
    margin-bottom: 34px;
    padding: 22px;

    background: #ffffff;

    border: 1px solid #e4e9ef;
    border-radius: 18px;

    box-shadow: 0 12px 34px rgba(22, 45, 70, .05);
}

.fh-article-search {
    display: flex;
    gap: 10px;

    margin-bottom: 14px;
}

.fh-article-search input {
    flex: 1;

    min-height: 50px;
    padding: 0 16px;

    border: 1px solid #dce3ea;
    border-radius: 12px;

    font-family: inherit;
    font-size: 14px;
}

.fh-article-search button,
.fh-article-filter-button {
    min-height: 50px;
    padding: 0 20px;

    border: 0;
    border-radius: 12px;

    background: #6c3df4;
    color: #ffffff;

    font-family: inherit;
    font-weight: 700;

    cursor: pointer;
}

.fh-article-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fh-article-filter-row select {
    min-height: 46px;
    padding: 0 12px;

    background: #ffffff;

    border: 1px solid #dce3ea;
    border-radius: 11px;

    font-family: inherit;
}

.fh-article-reset {
    display: inline-flex;
    align-items: center;

    padding: 0 10px;

    color: #6c3df4;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}


/* ============================================================
   GRID
   ============================================================ */

.fh-article-results-heading {
    margin-bottom: 18px;

    color: #516174;

    font-size: 14px;
}

.fh-article-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}


/* ============================================================
   KAART
   ============================================================ */

.fh-article-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5eaf0;
    border-radius: 18px;

    box-shadow: 0 12px 35px rgba(19, 43, 68, .06);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.fh-article-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 42px
        rgba(19, 43, 68, .10);
}

.fh-article-card-image {
    display: block;
    height: 190px;
    overflow: hidden;

    text-decoration: none;
}

.fh-article-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .3s ease;
}

.fh-article-card:hover
.fh-article-card-image img {
    transform: scale(1.035);
}

.fh-article-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #ede9ff,
            #e9fbf8
        );

    color: #6c3df4;

    font-size: 20px;
    font-weight: 800;
}

.fh-article-card-body {
    padding: 20px;
}

.fh-article-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin-bottom: 12px;

    color: #7c8997;

    font-size: 11px;
}

.fh-article-topic {
    display: inline-flex;

    padding: 6px 9px;

    background: #f0edff;
    color: #6c3df4;

    border-radius: 100px;

    font-size: 11px;
    font-weight: 750;
}

.fh-article-card h3 {
    margin: 0 0 10px;

    font-size: 18px;
    line-height: 1.35;
}

.fh-article-card h3 a {
    color: #102b45;
    text-decoration: none;
}

.fh-article-card p {
    margin: 0;

    color: #657587;

    font-size: 13px;
    line-height: 1.7;
}

.fh-article-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;

    margin-top: 18px;
    padding-top: 15px;

    border-top: 1px solid #edf0f3;

    color: #798696;

    font-size: 11px;
}

.fh-article-card-footer strong {
    color: #334b62;
}


/* ============================================================
   HOMEPAGE
   ============================================================ */

.fh-home-articles-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;

    margin-bottom: 30px;
}

.fh-home-articles-heading h2 {
    margin: 0 0 8px;

    color: #09233f;

    font-size: clamp(27px, 4vw, 38px);
}

.fh-home-articles-heading p {
    margin: 0;

    color: #657587;
}

.fh-articles-all-button,
.fh-article-author-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 44px;
    padding: 0 18px;

    background: #6c3df4;
    color: #ffffff !important;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none !important;

    box-shadow:
        0 8px 20px
        rgba(108, 61, 244, .18);
}


/* ============================================================
   FYSIO DASHBOARD
   ============================================================ */

.fh-articles-dashboard-heading {
    margin-bottom: 28px;
}

.fh-article-limit-card,
.fh-article-editor-card,
.fh-my-articles {
    margin-bottom: 24px;
    padding: 28px;

    background: #ffffff;

    border: 1px solid #e5eaf0;
    border-radius: 20px;

    box-shadow:
        0 12px 34px
        rgba(19, 43, 68, .05);
}

.fh-article-limit-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.fh-article-limit-card span {
    display: block;

    margin-bottom: 5px;

    color: #718093;

    font-size: 12px;
}

.fh-article-limit-card strong {
    color: #6c3df4;

    font-size: 27px;
}

.fh-article-limit-card p {
    margin: 0;

    color: #647386;
}

.fh-article-section-heading {
    margin-bottom: 24px;
}

.fh-article-section-heading > span {
    display: block;

    margin-bottom: 6px;

    color: #6c3df4;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.fh-article-section-heading h2 {
    margin: 0 0 8px;

    font-size: 24px;
}

.fh-article-section-heading p {
    margin: 0;

    color: #687789;
}

.fh-article-form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.fh-article-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fh-article-field-wide {
    grid-column: 1 / -1;
}

.fh-article-field label {
    color: #243d55;

    font-size: 13px;
    font-weight: 700;
}

.fh-article-field input,
.fh-article-field select,
.fh-article-field textarea {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid #dae2e9;
    border-radius: 11px;

    font-family: inherit;
    font-size: 14px;

    box-sizing: border-box;
}

.fh-article-field textarea {
    resize: vertical;
}

.fh-article-field small {
    color: #7d8997;

    font-size: 11px;
    line-height: 1.5;
}

.fh-article-field input:focus,
.fh-article-field select:focus,
.fh-article-field textarea:focus {
    outline: none;

    border-color: #6c3df4;

    box-shadow:
        0 0 0 3px
        rgba(108, 61, 244, .1);
}

.fh-article-guidelines {
    margin-top: 20px;
    padding: 17px;

    background: #f8f7ff;

    border-radius: 12px;
}

.fh-article-guidelines strong {
    display: block;
    margin-bottom: 7px;
}

.fh-article-guidelines ul {
    margin: 0;
    padding-left: 18px;
}

.fh-article-guidelines li {
    margin: 4px 0;

    color: #647386;

    font-size: 12px;
    line-height: 1.5;
}

.fh-article-submit-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;
    min-height: 46px;
    padding: 0 20px;

    background: #6c3df4;
    color: #ffffff;

    border: 0;
    border-radius: 12px;

    font-family: inherit;
    font-weight: 700;

    cursor: pointer;
}

.fh-article-notice {
    margin-bottom: 20px;
    padding: 15px 18px;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 650;
}

.fh-article-notice.is-success {
    background: #ebfaf5;
    color: #176149;
}

.fh-article-notice.is-error {
    background: #fff0f0;
    color: #9f2929;
}


/* ============================================================
   EIGEN ARTIKELEN
   ============================================================ */

.fh-my-article-list {
    display: flex;
    flex-direction: column;
}

.fh-my-article-row {
    display: flex;
    justify-content: space-between;
    gap: 25px;

    padding: 19px 0;

    border-bottom: 1px solid #e9edf1;
}

.fh-my-article-row:last-child {
    border-bottom: 0;
}

.fh-my-article-row h3 {
    margin: 7px 0 4px;

    font-size: 16px;
}

.fh-my-article-row p {
    margin: 0;

    color: #7a8796;

    font-size: 11px;
}

.fh-article-status {
    display: inline-flex;

    padding: 5px 8px;

    border-radius: 100px;

    font-size: 10px;
    font-weight: 750;
}

.fh-article-status.is-publish {
    background: #eaf9f3;
    color: #15704f;
}

.fh-article-status.is-pending {
    background: #fff7e6;
    color: #9a6200;
}

.fh-article-status.is-draft {
    background: #eff2f5;
    color: #607080;
}

.fh-my-article-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;

    color: #758292;

    font-size: 11px;
}

.fh-my-article-stats a {
    color: #6c3df4;

    font-weight: 700;
    text-decoration: none;
}


/* ============================================================
   SINGLE ARTICLE
   ============================================================ */

.fh-single-article {
    padding: 50px 20px 90px;

    background: #ffffff;
}

.fh-single-article-container {
    width: min(100%, 850px);
    margin: 0 auto;
}

.fh-single-article-header {
    margin-bottom: 30px;
}

.fh-single-article-header h1 {
    margin: 16px 0;

    color: #09233f;

    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.12;
}

.fh-single-article-intro {
    margin: 0;

    color: #5f7184;

    font-size: 18px;
    line-height: 1.75;
}

.fh-single-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;

    margin-top: 22px;

    color: #7a8795;

    font-size: 12px;
}

.fh-single-article-image {
    overflow: hidden;

    margin-bottom: 36px;

    border-radius: 18px;
}

.fh-single-article-image img {
    display: block;

    width: 100%;
    height: auto;
}

.fh-single-article-content {
    color: #344c62;

    font-size: 16px;
    line-height: 1.9;
}

.fh-single-article-content h2 {
    margin: 38px 0 13px;

    color: #102b45;

    font-size: 27px;
}

.fh-single-article-content h3 {
    margin: 28px 0 10px;

    color: #173a58;

    font-size: 21px;
}

.fh-single-article-content p {
    margin: 0 0 19px;
}

.fh-single-article-content ul,
.fh-single-article-content ol {
    margin: 0 0 22px;
}

.fh-article-disclaimer {
    margin: 38px 0;
    padding: 20px;

    background: #f8f7ff;

    border-left: 4px solid #6c3df4;
    border-radius: 10px;
}

.fh-article-disclaimer strong {
    display: block;
    margin-bottom: 7px;
}

.fh-article-disclaimer p {
    margin: 0;

    color: #5e6e80;

    font-size: 13px;
    line-height: 1.7;
}

.fh-article-author {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 25px;

    background: #f7f9fc;

    border-radius: 18px;
}

.fh-article-author-avatar img {
    border-radius: 50%;
}

.fh-article-author span {
    color: #798697;

    font-size: 11px;
}

.fh-article-author h2 {
    margin: 3px 0;

    font-size: 20px;
}

.fh-article-author p {
    margin: 0 0 12px;

    color: #647386;

    font-size: 13px;
}


/* ============================================================
   PAGINATION
   ============================================================ */

.fh-article-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;

    margin-top: 38px;
}

.fh-article-pagination a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dce3ea;
    border-radius: 10px;

    color: #41566b;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.fh-article-pagination a.is-active {
    background: #6c3df4;
    border-color: #6c3df4;
    color: #ffffff;
}


/* ============================================================
   EMPTY
   ============================================================ */

.fh-articles-empty,
.fh-articles-access {
    padding: 35px;

    background: #ffffff;

    border: 1px solid #e4e9ef;
    border-radius: 18px;

    text-align: center;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1050px) {

    .fh-article-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .fh-articles-page,
    .fh-articles-dashboard,
    .fh-single-article,
    .fh-home-articles {
        padding-left: 14px;
        padding-right: 14px;
    }

    .fh-article-grid {
        grid-template-columns: 1fr;
    }

    .fh-home-articles-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .fh-articles-all-button {
        width: 100%;
        box-sizing: border-box;
    }

    .fh-article-search {
        flex-direction: column;
    }

    .fh-article-filter-row {
        flex-direction: column;
    }

    .fh-article-filter-row select,
    .fh-article-filter-button {
        width: 100%;
    }

    .fh-article-form-grid {
        grid-template-columns: 1fr;
    }

    .fh-article-field-wide {
        grid-column: auto;
    }

    .fh-article-limit-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .fh-my-article-row {
        flex-direction: column;
    }

    .fh-my-article-stats {
        align-items: flex-start;
    }

    .fh-article-author {
        align-items: flex-start;
        flex-direction: column;
    }

}