:root {
    --cp-content-ink: #0b1822;
    --cp-content-muted: #5e7180;
    --cp-content-blue: #0868ac;
    --cp-content-sky: #2f9ee8;
    --cp-content-line: rgba(16, 62, 89, .14);
    --cp-content-paper: #ffffff;
    --cp-content-bg: #eef4f8;
}

.cp-content-body {
    min-height: 100vh;
    margin: 0;
    background: var(--cp-content-bg);
    color: var(--cp-content-ink);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.cp-content-body *,
.cp-content-body *::before,
.cp-content-body *::after {
    box-sizing: border-box;
}

.cp-content-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(102, 169, 211, .18);
    background:
        linear-gradient(rgba(47, 158, 232, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 158, 232, .045) 1px, transparent 1px),
        radial-gradient(circle at 80% 10%, rgba(8, 104, 172, .48), transparent 36%),
        #09151e;
    background-size: 42px 42px, 42px 42px, auto, auto;
    color: #f4f8fb;
}

.cp-content-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    align-items: end;
    gap: clamp(2rem, 6vw, 7rem);
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 4.5rem);
}

.cp-content-hero__copy > p,
.cp-related__head > p {
    margin: 0 0 1.25rem;
    color: #69bdF5;
    font: 700 .7rem/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cp-content-hero__copy h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(2.7rem, 5.8vw, 5.8rem);
    font-weight: 620;
    line-height: .98;
    letter-spacing: -.055em;
}

.cp-content-hero__copy > span {
    display: block;
    max-width: 720px;
    margin-top: 1.7rem;
    color: #a9bdca;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.75;
}

.cp-content-search {
    display: grid;
    gap: .75rem;
}

.cp-content-search label {
    color: #819baa;
    font: 700 .66rem/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.cp-content-search > div {
    display: flex;
    min-height: 58px;
    padding: 5px;
    border: 1px solid rgba(116, 188, 233, .32);
    border-radius: 12px;
    background: rgba(3, 14, 22, .68);
}

.cp-content-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 0 1rem;
    background: transparent;
    color: #fff;
    font: inherit;
    outline: none;
}

.cp-content-search input::placeholder {
    color: #718896;
}

.cp-content-search button,
.cp-content-empty a {
    border: 0;
    border-radius: 8px;
    padding: .8rem 1.35rem;
    background: var(--cp-content-blue);
    color: #fff;
    font: inherit;
    font-size: .9rem;
    font-weight: 750;
    cursor: pointer;
    text-decoration: none;
}

.cp-content-catalog,
.cp-article-shell {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 5rem) clamp(1.25rem, 4vw, 4.5rem);
}

.cp-content-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 2rem;
}

.cp-content-filters a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: .55rem;
    border: 1px solid var(--cp-content-line);
    border-radius: 999px;
    padding: .65rem 1rem;
    background: rgba(255, 255, 255, .7);
    color: #375064;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

.cp-content-filters a span {
    color: #8295a2;
    font: 600 .7rem/1 ui-monospace, monospace;
}

.cp-content-filters a[aria-current="page"] {
    border-color: var(--cp-content-blue);
    background: #092231;
    color: #fff;
}

.cp-content-result-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--cp-content-sky);
    padding: .8rem 1rem;
    background: rgba(255, 255, 255, .65);
    color: var(--cp-content-muted);
    font-size: .86rem;
}

.cp-content-result-note a {
    color: var(--cp-content-blue);
    font-weight: 750;
}

.cp-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.cp-content-card {
    display: flex;
    min-height: 440px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--cp-content-line);
    border-radius: 14px;
    background: var(--cp-content-paper);
}

.cp-content-card:hover,
.cp-content-card:focus-within {
    border-color: rgba(8, 104, 172, .44);
}

.cp-content-card__media {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--cp-content-line);
    background: #dfeaf1;
}

.cp-content-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.cp-content-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.6rem;
}

.cp-content-card__meta,
.cp-article__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--cp-content-blue);
    font: 700 .67rem/1.3 ui-monospace, SFMono-Regular, Consolas, monospace;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.cp-content-card__meta time,
.cp-article__meta time {
    color: #7b8e9a;
}

.cp-content-card h2 {
    margin: 1.6rem 0 0;
    font-size: clamp(1.25rem, 1.8vw, 1.7rem);
    line-height: 1.18;
    letter-spacing: -.025em;
}

.cp-content-card h2 a {
    color: inherit;
    text-decoration: none;
}

.cp-content-card__body > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 1rem 0 0;
    color: var(--cp-content-muted);
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.cp-content-card__link {
    margin-top: auto;
    padding-top: 1.7rem;
    color: var(--cp-content-blue);
    font-size: .86rem;
    font-weight: 800;
    text-decoration: none;
}

.cp-content-empty {
    display: grid;
    justify-items: start;
    gap: .8rem;
    border: 1px dashed rgba(8, 104, 172, .35);
    border-radius: 14px;
    padding: clamp(2rem, 5vw, 4rem);
    background: #fff;
}

.cp-content-empty strong {
    font-size: 1.5rem;
}

.cp-content-empty p {
    margin: 0;
    color: var(--cp-content-muted);
}

.cp-faq-list {
    border-top: 1px solid var(--cp-content-line);
}

.cp-faq-list details {
    border-bottom: 1px solid var(--cp-content-line);
    background: rgba(255, 255, 255, .52);
}

.cp-faq-list summary {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 1rem;
    min-height: 88px;
    padding: 1rem 1.4rem;
    cursor: pointer;
    list-style: none;
}

.cp-faq-list summary::-webkit-details-marker {
    display: none;
}

.cp-faq-list summary > span {
    color: var(--cp-content-blue);
    font: 700 .72rem/1 ui-monospace, monospace;
}

.cp-faq-list summary strong {
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
}

.cp-faq-list summary i {
    color: var(--cp-content-blue);
    font-size: 1.7rem;
    font-style: normal;
    text-align: center;
}

.cp-faq-list details[open] summary i {
    color: #647986;
}

.cp-faq-list details[open] summary i::before {
    content: "−";
}

.cp-faq-list details[open] summary i {
    font-size: 0;
}

.cp-faq-list details[open] summary i::before {
    font-size: 1.7rem;
}

.cp-faq-list details > div {
    max-width: 900px;
    padding: 0 5.8rem 2rem;
}

.cp-faq-list details > div p {
    margin: 0;
    color: #415867;
    font-size: 1.02rem;
    line-height: 1.8;
    white-space: pre-line;
}

.cp-faq-list details > div a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--cp-content-blue);
    font-size: .83rem;
    font-weight: 750;
}

.cp-content-pagination {
    margin-top: 2.5rem;
}

.cp-content-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    width: min(calc(100% - 2.5rem), 1296px);
    margin: 0 auto clamp(3rem, 7vw, 7rem);
    border: 1px solid rgba(47, 158, 232, .3);
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 4rem);
    background: linear-gradient(135deg, #092231, #0c334a);
    color: #fff;
}

.cp-content-cta p {
    margin: 0 0 .75rem;
    color: #68bbf2;
    font: 700 .68rem/1.2 ui-monospace, monospace;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.cp-content-cta h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 3.1rem);
    letter-spacing: -.04em;
}

.cp-content-cta span {
    display: block;
    max-width: 720px;
    margin-top: .9rem;
    color: #a9c0ce;
    line-height: 1.65;
}

.cp-content-cta > a {
    border-radius: 999px;
    padding: .9rem 1.35rem;
    background: #fff;
    color: #0a2231;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.cp-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 2rem;
    color: #718592;
    font-size: .78rem;
}

.cp-breadcrumbs a {
    color: var(--cp-content-blue);
    font-weight: 700;
    text-decoration: none;
}

.cp-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: clamp(2rem, 5vw, 5rem);
}

.cp-article {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--cp-content-line);
    border-radius: 16px;
    background: #fff;
}

.cp-article__header,
.cp-article__body,
.cp-article__tags,
.cp-article__sources {
    max-width: 900px;
    margin-inline: auto;
    padding-inline: clamp(1.5rem, 5vw, 5rem);
}

.cp-article__header {
    padding-top: clamp(2.5rem, 6vw, 5.5rem);
    padding-bottom: clamp(2.2rem, 5vw, 4rem);
}

.cp-article__header h1 {
    margin: 1.35rem 0 0;
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    font-weight: 650;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.cp-article__header > p {
    margin: 1.6rem 0 0;
    color: var(--cp-content-muted);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.7;
}

.cp-article__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-block: 1px solid var(--cp-content-line);
    object-fit: cover;
}

.cp-article__body {
    padding-top: clamp(2.5rem, 5vw, 4.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
    color: #213a49;
    font-size: clamp(1rem, 1.25vw, 1.13rem);
    line-height: 1.9;
    white-space: pre-line;
}

.cp-article__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding-bottom: 2rem;
}

.cp-article__tags span {
    border: 1px solid var(--cp-content-line);
    border-radius: 999px;
    padding: .5rem .8rem;
    color: #5c7180;
    font-size: .75rem;
}

.cp-article__sources {
    border-top: 1px solid var(--cp-content-line);
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.cp-article__sources h2 {
    margin: 0;
    font-size: 1.25rem;
}

.cp-article__sources ul {
    display: grid;
    gap: .8rem;
    padding-left: 1.2rem;
    color: var(--cp-content-muted);
    font-size: .88rem;
    line-height: 1.6;
}

.cp-article__sources a {
    color: var(--cp-content-blue);
    font-weight: 700;
}

.cp-article-aside {
    position: sticky;
    top: 98px;
    display: grid;
    gap: 1rem;
}

.cp-article-aside > div,
.cp-article-aside nav {
    display: grid;
    border: 1px solid var(--cp-content-line);
    border-radius: 14px;
    padding: 1.5rem;
    background: #fff;
}

.cp-article-aside p {
    margin: 0;
    color: var(--cp-content-blue);
    font: 700 .66rem/1.2 ui-monospace, monospace;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cp-article-aside h2 {
    margin: .85rem 0 0;
    font-size: 1.25rem;
    line-height: 1.25;
}

.cp-article-aside span {
    margin-top: .8rem;
    color: var(--cp-content-muted);
    font-size: .85rem;
    line-height: 1.6;
}

.cp-article-aside > div > a {
    margin-top: 1.25rem;
    border-radius: 8px;
    padding: .8rem 1rem;
    background: var(--cp-content-blue);
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.cp-article-aside nav {
    gap: .7rem;
}

.cp-article-aside nav strong {
    margin-bottom: .3rem;
    color: #728692;
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cp-article-aside nav a {
    color: #17384b;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
}

.cp-related {
    margin-top: clamp(3rem, 6vw, 6rem);
}

.cp-related__head h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -.045em;
}

.cp-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cp-related__grid a {
    display: grid;
    min-height: 210px;
    grid-template-rows: auto 1fr auto;
    gap: 1.2rem;
    border: 1px solid var(--cp-content-line);
    border-radius: 14px;
    padding: 1.5rem;
    background: #fff;
    color: var(--cp-content-ink);
    text-decoration: none;
}

.cp-related__grid a:hover,
.cp-related__grid a:focus-visible {
    border-color: rgba(8, 104, 172, .44);
}

.cp-related__grid span {
    color: var(--cp-content-blue);
    font: 700 .66rem/1.2 ui-monospace, monospace;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cp-related__grid strong {
    font-size: 1.25rem;
    line-height: 1.25;
}

.cp-related__grid i {
    color: var(--cp-content-blue);
    font-style: normal;
}

@media (max-width: 1050px) {
    .cp-content-hero__inner,
    .cp-article-layout {
        grid-template-columns: 1fr;
    }

    .cp-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cp-article-aside {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .cp-content-hero__inner {
        padding-block: 3.5rem;
    }

    .cp-content-grid,
    .cp-related__grid,
    .cp-article-aside,
    .cp-content-cta {
        grid-template-columns: 1fr;
    }

    .cp-content-card {
        min-height: 0;
    }

    .cp-content-search > div {
        display: grid;
    }

    .cp-content-search input {
        min-height: 48px;
    }

    .cp-faq-list summary {
        grid-template-columns: 36px minmax(0, 1fr) 24px;
        padding-inline: .8rem;
    }

    .cp-faq-list details > div {
        padding: 0 .9rem 1.6rem 3.7rem;
    }

    .cp-content-result-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .cp-content-cta {
        width: calc(100% - 2rem);
    }
}
