.company-knowledge-page {
    background: #f4f6f7;
    color: #17313d;
}

.knowledge-hero {
    position: relative;
    overflow: hidden;

    padding: 112px 0 105px;

    background:
        linear-gradient(
            115deg,
            #073f56 0%,
            #0b566e 58%,
            #0c6179 100%
        );

    color: #ffffff;
}

.knowledge-hero::before {
    content: "";

    position: absolute;
    top: -220px;
    right: -60px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.knowledge-hero::after {
    content: "";

    position: absolute;
    bottom: -180px;
    right: 170px;

    width: 270px;
    height: 270px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.knowledge-hero-copy {
    position: relative;
    z-index: 1;

    max-width: 850px;
}

.knowledge-hero h1 {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(46px, 4.7vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.04em;

    color: #ffffff;
}

.knowledge-hero h1 strong {
    font-weight: 800;
}

.knowledge-hero-subtitle {
    max-width: 760px;

    margin: 22px 0 0;

    font-size: clamp(16px, 1.25vw, 20px);
    font-style: italic;
    font-weight: 700;
    line-height: 1.55;

    color: #ffffff;
}

.knowledge-hero-description {
    max-width: 760px;

    margin: 27px 0 0;

    font-size: 15px;
    line-height: 1.75;

    color: rgba(255, 255, 255, 0.84);
}

.knowledge-main {
    padding: 60px 0 90px;
}

.knowledge-filter {
    position: relative;
    z-index: 3;

    margin-top: -96px;
    margin-bottom: 55px;
    padding: 26px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow:
        0 14px 38px rgba(16, 47, 59, 0.12);
}

.knowledge-filter-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(220px, 0.8fr)
        auto;

    gap: 16px;

    align-items: end;
}

.knowledge-field {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.knowledge-field label {
    font-size: 13px;
    font-weight: 600;

    color: #17313d;
}

.knowledge-field input,
.knowledge-field select {
    width: 100%;
    min-height: 48px;

    box-sizing: border-box;

    padding: 0 14px;

    border: 1px solid #d8e0e4;
    border-radius: 5px;

    background: #ffffff;
    color: #17313d;

    font: inherit;
    outline: none;
}

.knowledge-field input:focus,
.knowledge-field select:focus {
    border-color: #0c6179;

    box-shadow:
        0 0 0 3px rgba(12, 97, 121, 0.1);
}

.knowledge-filter-action button {
    min-height: 48px;

    padding: 0 26px;

    border: 0;
    border-radius: 5px;

    background: #073f56;
    color: #ffffff;

    font: inherit;
    font-weight: 600;

    cursor: pointer;
}

.knowledge-featured {
    position: relative;
    overflow: hidden;

    display: grid;

    grid-template-columns:
        minmax(330px, 0.9fr)
        minmax(0, 1.1fr);

    min-height: 360px;

    margin-bottom: 58px;

    background: #ffffff;

    border: 1px solid #dfe7ea;
    border-radius: 10px;

    box-shadow:
        0 12px 30px rgba(7, 63, 86, 0.07);
}

.knowledge-featured::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 36%;
    height: 4px;

    background: #d5ad59;
}

.knowledge-featured-media {
    min-height: 360px;

    background: #e8eff1;
}

.knowledge-featured-media img,
.knowledge-card-media img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.knowledge-featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 42px;
}

.knowledge-label {
    display: block;

    margin-bottom: 10px;

    color: #b68a34;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.knowledge-category {
    display: inline-flex;

    align-self: flex-start;

    margin-bottom: 12px;
    padding: 5px 10px;

    border-radius: 30px;

    background: #eef5f7;
    color: #0a617b;

    font-size: 10px;
    font-weight: 600;
}

.knowledge-featured h2 {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.3;

    color: #073f56;
}

.knowledge-featured-copy > p {
    margin: 20px 0 0;

    color: #566971;

    font-size: 14px;
    line-height: 1.8;
}

.knowledge-featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-top: 30px;
    padding-top: 20px;

    border-top: 1px solid #e7edef;
}

.knowledge-featured-footer > span {
    color: #8a989f;

    font-size: 11px;
}

.knowledge-featured-footer a,
.knowledge-read-more {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #075b77;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.knowledge-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 25px;

    margin-bottom: 28px;
}

.knowledge-heading span {
    display: block;

    margin-bottom: 6px;

    color: #b68a34;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.knowledge-heading h2 {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(26px, 3vw, 37px);

    color: #073f56;
}

.knowledge-heading > p {
    margin: 0;

    color: #76868e;

    font-size: 13px;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.knowledge-card {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #dfe7ea;
    border-radius: 9px;

    box-shadow:
        0 7px 22px rgba(7, 63, 86, 0.04);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.knowledge-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 36px rgba(7, 63, 86, 0.1);
}

.knowledge-card-media {
    display: block;

    height: 205px;

    overflow: hidden;

    background: #e8eff1;
}

.knowledge-card-media img {
    transition: transform 0.4s ease;
}

.knowledge-card:hover .knowledge-card-media img {
    transform: scale(1.035);
}

.knowledge-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            135deg,
            #073f56,
            #0d718b
        );
}

.knowledge-image-placeholder span {
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    font-weight: 700;

    color: rgba(255, 255, 255, 0.15);
}

.knowledge-card-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 23px;
}

.knowledge-card-meta {
    display: flex;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 13px;
}

.knowledge-card-meta span {
    color: #b68a34;

    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.knowledge-card-meta small {
    color: #909da3;

    font-size: 10px;
}

.knowledge-card h3 {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.45;
}

.knowledge-card h3 a {
    color: #073f56;

    text-decoration: none;
}

.knowledge-card p {
    margin: 14px 0 20px;

    color: #63747c;

    font-size: 13px;
    line-height: 1.7;
}

.knowledge-read-more {
    margin-top: auto;
    padding-top: 18px;

    border-top: 1px solid #edf1f2;
}

.knowledge-empty {
    grid-column: 1 / -1;

    padding: 65px 30px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #dfe7ea;
    border-radius: 8px;
}

.knowledge-empty h3 {
    margin: 0 0 10px;

    color: #073f56;
}

.knowledge-empty p {
    margin: 0;

    color: #72828a;
}

.knowledge-empty a {
    display: inline-block;

    margin-top: 20px;

    color: #075b77;

    font-weight: 600;
    text-decoration: none;
}

.knowledge-pagination {
    margin-top: 36px;
}

.knowledge-detail-hero {
    padding: 105px 0 65px;

    background:
        linear-gradient(
            115deg,
            #073f56,
            #0b6178
        );

    color: #ffffff;
}

.knowledge-back-link {
    display: inline-block;

    margin-bottom: 32px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;
    text-decoration: none;
}

.knowledge-detail-heading {
    max-width: 930px;
}

.knowledge-detail-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 15px;
}

.knowledge-detail-meta span {
    color: #e0b862;

    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.knowledge-detail-meta time {
    color: rgba(255, 255, 255, 0.6);

    font-size: 11px;
}

.knowledge-detail-heading h1 {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.15;

    color: #ffffff;
}

.knowledge-detail-heading > p {
    max-width: 800px;

    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 16px;
    line-height: 1.75;
}

.knowledge-detail-main {
    padding: 55px 0 90px;
}

.knowledge-detail-article {
    max-width: 950px;

    margin: 0 auto;

    background: #ffffff;

    border: 1px solid #e0e7ea;
    border-radius: 9px;

    box-shadow:
        0 12px 32px rgba(7, 63, 86, 0.06);
}

.knowledge-detail-image {
    overflow: hidden;

    margin: 0;

    border-radius: 9px 9px 0 0;
}

.knowledge-detail-image img {
    display: block;

    width: 100%;
    max-height: 520px;

    object-fit: cover;
}

.knowledge-article-body {
    padding: 46px 55px;

    color: #455a64;

    font-size: 15px;
    line-height: 1.9;

    overflow-wrap: anywhere;
}

.knowledge-article-body > *:first-child {
    margin-top: 0;
}

.knowledge-article-body > *:last-child {
    margin-bottom: 0;
}

.knowledge-article-body h1,
.knowledge-article-body h2,
.knowledge-article-body h3,
.knowledge-article-body h4 {
    margin-top: 1.5em;

    font-family: "Montserrat", sans-serif;
    line-height: 1.35;

    color: #073f56;
}

.knowledge-article-body h2 {
    font-size: 26px;
}

.knowledge-article-body h3 {
    font-size: 21px;
}

.knowledge-article-body p {
    margin: 0 0 1.3em;
}

.knowledge-article-body ul,
.knowledge-article-body ol {
    padding-left: 24px;
}

.knowledge-article-body li + li {
    margin-top: 7px;
}

.knowledge-article-body blockquote {
    margin: 28px 0;
    padding: 8px 0 8px 22px;

    border-left: 4px solid #d5ad59;

    color: #5e7078;

    font-style: italic;
}

.knowledge-article-body a {
    color: #075b77;
}

.knowledge-article-body table {
    display: block;

    width: 100%;

    overflow-x: auto;

    border-collapse: collapse;
}

.knowledge-article-body th,
.knowledge-article-body td {
    padding: 10px;

    border: 1px solid #dde5e8;

    text-align: left;
}

.knowledge-related {
    margin-top: 65px;
}

@media (max-width: 980px) {
    .knowledge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .knowledge-featured {
        grid-template-columns: 1fr;
    }

    .knowledge-featured-media {
        min-height: 300px;
        max-height: 390px;
    }
}

@media (max-width: 760px) {
    .knowledge-hero {
        padding: 94px 0 95px;
    }

    .knowledge-main {
        padding-top: 48px;
    }

    .knowledge-filter {
        margin-top: -86px;
        padding: 20px;
    }

    .knowledge-filter-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-filter-action button {
        width: 100%;
    }

    .knowledge-featured-copy {
        padding: 26px;
    }

    .knowledge-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 8px;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-card-media {
        height: 230px;
    }

    .knowledge-detail-hero {
        padding: 90px 0 50px;
    }

    .knowledge-article-body {
        padding: 28px 24px;

        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .knowledge-hero h1 {
        font-size: 40px;
    }

    .knowledge-detail-heading h1 {
        font-size: 34px;
    }
}