@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

 :root {
    --cc-bg: #05060a;
    --cc-surface: #0a0d14;
    --cc-surface-soft: #101525;
    --cc-panel: #11131d;
    --cc-text: #eff3ff;
    --cc-muted: #9da6bf;
    --cc-primary: #2d79ff;
    --cc-primary-strong: #1956c9;
    --cc-secondary: #9e3dff;
    --cc-gold: #e0bb67;
    --cc-border: rgba(138, 160, 212, 0.26);
    --cc-shadow: 0 16px 34px rgba(0, 0, 0, 0.58);
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html {
    scroll-behavior: smooth;
}

body.cc-body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--cc-text);
    line-height: 1.65;
    letter-spacing: 0.01em;
    background:var(--cc-bg);}

.cc-main,
.cc-topbar__frame,
.cc-footer__inner {
    width: min(1320px, calc(100% - 3.5rem));
    margin: 0 auto;
}

.cc-main { margin-top: 2rem; margin-bottom: 3rem; }

h1, h2, h3 { margin: 0 0 1rem; line-height: 1.25; }
p, ul, ol { margin: 0 0 1rem; }
a { color: #68a3ff; }
img { display: block; max-width: 100%; border-radius: 14px; }

.cc-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(5, 8, 14, 0.92);
    border-bottom: 1px solid rgba(125, 60, 255, 0.24);
}


.cc-site__inner { min-height: 100vh; }
.cc-topbar__shell,
.cc-drawer-wrap { width: min(1320px, calc(100% - 3.5rem)); margin: 0 auto; }
.cc-topbar__frame { width: 100%; }
.cc-footer__compliance-title::after {
    content: "";
    display: inline-block;
    width: 32px;
    height: 2px;
    margin-left: 0.5rem;
    vertical-align: middle;
    background: linear-gradient(90deg, var(--cc-gold), transparent);
}
.cc-topbar__frame {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1rem;
}

.cc-brand__logo { width: 156px; height: auto; }

.cc-nav { display: flex; align-items: center; gap: 1.4rem; margin: 0 auto; }
.cc-nav a,
.cc-drawer > a {
    color: var(--cc-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
}
.cc-nav a:hover,
.cc-drawer > a:hover {
    color: #fff;
    background: var(--cc-primary);
}

.cc-menu-toggle {
    display: none;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    background: transparent;
    position: relative;
}

.cc-menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background: #fff;
    transition: 0.2s;
}
.cc-menu-toggle span:nth-child(1) { top: 6px; }
.cc-menu-toggle span:nth-child(2) { top: 15px; }
.cc-menu-toggle span:nth-child(3) { top: 24px; }
.cc-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.cc-menu-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.cc-menu-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.cc-auth { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }

.cc-btn {
    border-radius: 12px;
    padding: 0.58rem 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
     color: #eff4ff;
}

.cc-btn--solid {
    background: linear-gradient(135deg, var(--cc-primary), var(--cc-secondary));
    box-shadow: 0 10px 20px rgba(63, 140, 255, 0.24);
}
.cc-btn--solid:hover { background: linear-gradient(135deg, var(--cc-primary-strong), #6835d6); color: #fff; }
.cc-btn--ghost {
    border-color: rgba(125, 60, 255, 0.4);
    color: #eff4ff;
    background: rgba(13, 16, 25, 0.8);
}
.cc-btn--ghost:hover { border-color: var(--cc-gold); color: #fff; }

.cc-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .18rem .62rem;
    border-radius: 999px;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #f7ecce;
    border: 1px solid color-mix(in srgb, var(--cc-gold) 74%, transparent);
    background: color-mix(in srgb, var(--cc-gold) 18%, transparent);
}

.cc-btn--solid::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(145, 196, 255, 0.32);
    pointer-events: none;
}

.cc-btn--solid {
    position: relative;
    overflow: hidden;
}

.cc-btn--solid:hover {
    box-shadow: 0 0 0 1px rgba(173, 122, 255, 0.55), 0 0 24px rgba(67, 140, 255, 0.35);
}

.cc-hero-block .cc-btn--ghost,
.cc-content-shell .cc-btn--ghost {
    color: var(--cc-primary);
    border-color: rgba(75, 95, 255, 0.35);
}
.cc-hero-block .cc-btn--ghost:hover,
.cc-content-shell .cc-btn--ghost:hover {
    border-color: var(--cc-primary);
    color: var(--cc-primary);
}

.cc-drawer { display: none; }
.cc-page-wrap,
.cc-main-column { width: 100%; }

.cc-hero-block,
.cc-content-shell {
    background: linear-gradient(160deg, #10131f 0%, #0d1020 60%, #111124 100%);
    border-radius: 18px;
    
    padding: 3rem;
}

.cc-hero-block { margin-bottom: 1rem; }
.cc-hero-block h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); }


.cc-hero-block--image-right {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 40%);
    grid-template-areas:
        "text media"
        "cta media";
    align-items: center;
    column-gap: 1.2rem;
    row-gap: .8rem;
}

.cc-hero-block--image-right .cc-hero-block__text { grid-area: text; }
.cc-hero-block--image-right .cc-hero-block__media { grid-area: media; }
.cc-hero-block--image-right .cc-hero-block__cta { grid-area: cta; }
.cc-hero-block--image-right .cc-hero-block__media img {
    width: 100%;
    height: auto;
    display: block;
}

.cc-content-shell h2 { font-size: clamp(1.45rem, 2.2vw, 1.9rem); }
.cc-content-shell h2,
.cc-content-shell h3,
.cc-content-shell h4 {
    color: #f4f7ff;
    line-height: 1.35;
    letter-spacing: 0;
}
.cc-content-shell p,
.cc-content-shell li,
.cc-content-shell td,
.cc-content-shell th,
.cc-outline,
.cc-footer {
    color: var(--cc-muted);
}
.cc-content-shell ul,
.cc-content-shell ol { padding-left: 1.2rem; }
.cc-content-shell code {
    background: var(--cc-surface-soft);
    border-radius: 6px;
    padding: 0.08rem 0.35rem;
}
/* Обёртка (figure.table) — именно она отвечает за скролл и скругления */
figure.table {
  width: 100%;
  margin: 1rem 0;
  overflow-x: auto;
  border: 1px solid var(--cc-border);
  border-radius: 12px;
 
}

/* Таблица остаётся таблицей */
.cc-content-shell figure.table > table {
  width: 100%;
  border-collapse: separate; /* важно для border-radius через обёртку */
  border-spacing: 0;
  margin: 0;                /* чтобы не раздувать обёртку */
}

/* Шапка */
.cc-content-shell thead {
  background: color-mix(in srgb, var(--cc-primary) 22%, transparent);
}

.cc-content-shell th,
.cc-content-shell td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--cc-border);
  text-align: left;
  vertical-align: top;
}

.cc-content-shell tr:last-child td {
  border-bottom: none;
}

.cc-content-shell th {
  font-weight: 600;
  color: var(--cc-text);
}

.cc-hero-block h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cc-content-block h2 {
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.cc-content-block ul,
.cc-content-block ol {
    padding-left: 1.2rem;
}

.cc-content-block code {
    background: var(--cc-surface-soft);
    border-radius: 6px;
    padding: 0.08rem 0.35rem;
}

.cc-cta-group {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.cc-content-block .cc-btn--ghost {
    color: var(--cc-primary);
    border-color: rgba(75, 95, 255, 0.35);
}

.cc-content-block .cc-btn--ghost:hover {
    border-color: var(--cc-primary);
    color: var(--cc-primary);
}

.cc-outline-toggle {
display: inline-flex;
    border-radius: 999px;
    background: linear-gradient(160deg, #10131f 0%, #0d1020 60%, #111124 100%);
    color: #e6efff;
    border: 1px solid rgba(169, 185, 219, 0.3);
    font-weight: 600;
    margin: 0 0 1rem;
    cursor: pointer;
    padding: 10px 20px;
}

.cc-outline {
    display: none;
    
    border: 1px solid var(--cc-border);
    border-radius: 12px;
    padding: 0.9rem;
    margin-bottom: 1rem;
}

.cc-outline.is-open { display: block; }

.cc-outline__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.7rem; }
.cc-outline__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.cc-outline__list a { color: var(--cc-muted); text-decoration: none; }
.cc-outline__list a:hover { color: var(--cc-primary); }

.cc-content-divider {
    border: 0;
    border-top: 1px solid var(--cc-border);
    margin: 1.25rem 0;
}

.cc-faq-list { display: grid; gap: 0.75rem; }
.cc-faq-entry {
    border: 1px solid var(--cc-border);
    border-radius: 14px;

}

.cc-faq-entry__trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
}

.cc-faq-entry__trigger h3 { margin: 0; font-size: 1.3rem; }
.cc-faq-entry__glyph {
    font-size: 1.35rem;
    line-height: 1;
    color: var(--cc-primary);
    transition: transform 0.2s;
}
.cc-faq-entry__trigger.is-open .cc-faq-entry__glyph { transform: rotate(45deg); }
.cc-faq-entry__answer { display: none; padding: 0 1rem 1rem; }
.cc-faq-entry__answer.is-open { display: block; }

.cc-footer {
    background: linear-gradient(160deg, #10131f 0%, #0d1020 60%, #111124 100%);
    color: var(--cc-muted);
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}



.cc-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.cc-footer__company {
    max-width: 680px;
}

.cc-footer__kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    color: #8fa1d4;
}

.cc-footer__brand {
    margin: 0.2rem 0 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f4f7ff;
}

.cc-footer__mission {
    margin: 0.5rem 0 0;
    color: #b4c1e6;
}

.cc-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 0;
}

.cc-footer__links a {
    color: #eaf0ff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.42rem 0.8rem;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.cc-footer__links a:hover {
    color: #cfe0ff;
    border-color: rgba(63, 140, 255, 0.8);
    background: color-mix(in srgb, var(--cc-primary) 22%, transparent);
}

.cc-footer__compliance {
    display: grid;
    gap: 0.55rem;
}

.cc-footer__compliance-title {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8fa1d4;
}

.cc-footer__logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.cc-footer__logos-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}

.cc-footer__logos-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.95;
}

.cc-footer__logos-item a {
    display: inline-flex;
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cc-footer__logos-item a:hover {
    transform: translateY(-1px);
    opacity: 0.85;
}

.cc-footer__legal {
    display: grid;
    gap: 0.45rem;
}

.cc-footer__copyright {
    margin: 0;
    color: #dce6ff;
    font-weight: 500;
}

.cc-footer__disclaimer,
.footer-extra-text {
    margin: 0;
    color: #9eabd8;
    font-size: 0.92rem;
}

.cc-lang { position: relative; }
.cc-lang summary {
    list-style: none;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 0.45rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.cc-lang summary::-webkit-details-marker { display: none; }
.cc-lang__status {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #00d47f;
}

.cc-lang__marker {
    color: #9ec2ff;
    font-weight: 700;
}

.cc-lang ul {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.4rem);
    margin: 0;
    padding: 0.35rem;
    min-width: 130px;
    list-style: none;
    border-radius: 10px;
    border: 1px solid var(--cc-border);
    background: #101726;
    box-shadow: var(--cc-shadow);
}
.cc-lang ul a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #e7eeff;
    border-radius: 8px;
    padding: 0.4rem 0.5rem;
}
.cc-lang ul a:hover,
.cc-lang ul a.is-current { background: color-mix(in srgb, var(--cc-primary) 22%, transparent); }

@media (max-width: 980px) {
    .cc-topbar__frame { grid-template-columns: auto 1fr auto; }

    .cc-nav--desktop,
    .cc-auth--desktop {
        display: none;
    }

    .cc-menu-toggle { display: block; margin-left: auto;}

    .cc-drawer {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #111a29;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        flex-direction: column;
        gap: 0.65rem;
        display: flex;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: 0.25s;
    }

    .cc-drawer.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .cc-lang ul {
        right: auto;
        left: 0;
    }

    .cc-footer__inner {
        padding: 1.7rem 1.1rem;
    }

    .cc-footer__brand {
        font-size: 1.1rem;
    }

    .cc-footer__links {
        gap: 0.5rem;
    }

    .cc-footer__links a {
        width: 100%;
        text-align: center;
    }
}

.cc-section-base {
    padding: 1rem 0;
}

.cc-section-base__header {
    margin-bottom: .7rem;
}

.cc-section-base__subtitle {
    margin: .25rem 0 0;
    font-size: .92rem;
    color: var(--cc-muted);
}

.cc-text-image-left {
    display: grid;
    grid-template-columns: minmax(180px, 320px) 1fr;
    gap: 1rem;
    align-items: start;
}

.cc-text-image-left--image-right .cc-text-image-left__media {
    order: 2;
}

.cc-text-image-float__media {
    width: min(320px, 42%);
    margin-bottom: .55rem;
}

.cc-text-image-float__media img {
    width: 100%;
    height: auto;
}

.cc-text-image-float--left .cc-text-image-float__media {
    float: left;
    margin-right: 1rem;
}

.cc-text-image-float--right .cc-text-image-float__media {
    float: right;
    margin-left: 1rem;
}

.cc-text-image-float::after {
    content: "";
    display: table;
    clear: both;
}

.cc-text-image-left__media img {
    width: 100%;
    height: auto;
}

.cc-mini-cards,
.cc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: .75rem;
}

.cc-catalog-extended {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.cc-catalog-extended__item,
.cc-catalog-image-only__item,
.cc-mini-cards__item,
.cc-gallery-slider__item,
.cc-gallery-grid figure,
.cc-section-fallback,
.cc-catalog-list-view__item {
    background: var(--cc-surface-soft);
    border: 1px solid var(--cc-border);
    border-radius: 12px;
    padding: .85rem;
}

.cc-catalog-extended__item {
    color: inherit;
    text-decoration: none;
    display: grid;
    gap: .55rem;
}

.cc-catalog-extended__item img,
.cc-catalog-image-only__item img,
.cc-catalog-list-view__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cc-catalog-image-only {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
}

.cc-catalog-image-only__item {
    display: block;
    padding: .4rem;
}

.cc-mini-inline,
.cc-catalog-list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: .55rem;
}

.cc-catalog-list-view {
    display: grid;
    gap: .75rem;
}

.cc-catalog-list-view__item {
    display: grid;
    gap: .85rem;
    grid-template-columns: minmax(120px, 180px) 1fr;
    align-items: start;
}

.cc-catalog-list-view__image {
    display: block;
}

.cc-catalog-list-view__link {
    display: inline-block;
    margin-top: .5rem;
}

.cc-gallery-slider {
    display: grid;
    gap: .65rem;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    overflow-x: auto;
}

.cc-gallery-grid img,
.cc-gallery-slider img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cc-text-compact > *:first-child {
    margin-top: 0;
}

@media (max-width: 860px) {
    .cc-text-image-left {
        grid-template-columns: 1fr;
    }

    .cc-text-image-left--image-right .cc-text-image-left__media {
        order: initial;
    }

    .cc-text-image-float__media {
        width: 100%;
        float: none;
        margin-left: 0;
        margin-right: 0;
    }

    .cc-catalog-extended {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-catalog-image-only {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-catalog-list-view__item {
        grid-template-columns: 1fr;
    }

    .cc-hero-block--image-right {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "media"
            "cta";
    }
    .cc-hero-block, .cc-content-shell {
    background: linear-gradient(160deg, #10131f 0%, #0d1020 60%, #111124 100%);
    border-radius: 18px;
    padding: 1rem;
}
}

.cc-cookie {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: none;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--cc-border);
    background: rgba(10, 16, 30, 0.95);
    box-shadow: var(--cc-shadow);
}

.cc-cookie.is-visible {
    display: flex;
}

.cc-cookie__text {
    margin: 0;
    color: var(--cc-text);
    max-width: 760px;
}

.cc-cookie__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cc-cookie__btn {
    cursor: pointer;
}


.cc-footer__inner {
    grid-template-columns: 1.1fr .9fr;
}

.cc-footer__links {
    grid-column: 1 / -1;
    order: 2;
}
.cc-footer__legal {
    order: 4;
}
@media (max-width: 980px) {
    .cc-footer__inner {
        grid-template-columns: 1fr;
    }
}

.cc-main-shell,
.cc-main__content,
.cc-main__content-inner,
.cc-topbar__action-wrap,
.cc-topbar__nav-layer,
.cc-topbar__brand-wrap,
.cc-drawer-shell {
    width: 100%;
}

.cc-topbar__brand-wrap {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.cc-footer__top .cc-footer__brand {
    margin-top: .35rem;
}

/* wp classic overrides */
:root {
    --cc-accent-green: #2de06a;
    --cc-accent-green-strong: #18bb4f;
    --cc-yellow-action: #ffd447;
}

.cc-btn--solid {
    background: linear-gradient(135deg, var(--cc-accent-green), #42f28f);
    color: #04110a;
    box-shadow: 0 10px 22px rgba(45, 224, 106, 0.28);
}

.cc-btn--solid:hover {
    background: linear-gradient(135deg, var(--cc-accent-green-strong), #38d97b);
    color: #021008;
}

.cc-btn--ghost,
.cc-content-block .cc-btn--ghost,
.cc-content-shell .cc-btn--ghost,
.cc-hero-block .cc-btn--ghost {
    background: var(--cc-yellow-action);
    color: #121212;
    border-color: #f1bf24;
}

.cc-btn--ghost:hover,
.cc-content-block .cc-btn--ghost:hover,
.cc-content-shell .cc-btn--ghost:hover,
.cc-hero-block .cc-btn--ghost:hover {
    color: #050505;
    border-color: #d5a307;
    background: #ffcb1e;
}

.cc-main,
.cc-topbar__frame,
.cc-footer__inner,
.cc-topbar__shell,
.cc-drawer-wrap {
    width: min(1280px, calc(100% - 4.5rem));
}

.cc-footer {
    border-top: 1px solid color-mix(in srgb, var(--cc-gold) 36%, transparent);
    background: linear-gradient(180deg, #0c1020 0%, #080b17 100%);
}

.cc-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr minmax(220px, 1fr) 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.9rem 0 1.2rem;
}

.cc-footer__identity,
.cc-footer__compliance,
.cc-footer__links {
    
    padding: 1rem 1.1rem;
}

.cc-footer__legal {
  
    padding-top: .95rem;
    margin-top: .25rem;
}

@media (max-width: 980px) {
    .cc-main,
    .cc-topbar__frame,
    .cc-footer__inner,
    .cc-topbar__shell,
    .cc-drawer-wrap {
        width: min(1280px, calc(100% - 2rem));
    }

    .cc-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* wp light rebuild */
:root {
    --cc-bg: #f7fbff;
    --cc-surface: #ffffff;
    --cc-surface-soft: #f3f8ff;
    --cc-panel: #ffffff;
    --cc-text: #17212b;
    --cc-muted: #5e6b78;
    --cc-primary: #53cf3f;
    --cc-primary-strong: #31b52d;
    --cc-secondary: #46b7ff;
    --cc-gold: #ffd53d;
    --cc-border: rgba(75, 118, 158, 0.22);
    --cc-shadow: 0 14px 30px rgba(27, 54, 83, 0.12);
}

.cc-body { background: linear-gradient(180deg, #fffef5 0%, #f5fbff 45%, #f8fcff 100%); color: var(--cc-text); }
.cc-main,
.cc-topbar__frame,
.cc-footer__inner,
.cc-topbar__shell,
.cc-drawer-wrap { width: min(1220px, calc(100% - 3.8rem)); }

.cc-topbar { background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(70,183,255,.25); }
.cc-nav a, .cc-drawer > a { color: #33414f; }
.cc-nav a:hover, .cc-drawer > a:hover { color: #0f2133; background: rgba(255,213,61,.45); }
.cc-menu-toggle {
    border: 1px solid rgba(75, 118, 158, 0.35);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
}
.cc-menu-toggle span { background: #223244; }

.cc-hero-block,
.cc-content-shell { background: linear-gradient(165deg, #ffffff 0%, #fffce8 58%, #eff8ff 100%); border: 1px solid var(--cc-border); box-shadow: var(--cc-shadow); }
.cc-hero-block h1,
.cc-content-shell h2,
.cc-content-shell h3,
.cc-content-shell h4,
.cc-faq-entry__trigger h3 { color: #162536; }
.cc-content-shell p,
.cc-content-shell li,
.cc-content-shell td,
.cc-content-shell th,
.cc-outline,
.cc-faq-entry__answer,
.cc-section-base__subtitle { color: #445566; }
.cc-faq-entry__trigger { color: #162536; }
.cc-lang summary {
    color: #1a2b3b;
    border-color: rgba(75, 118, 158, 0.35);
    background: rgba(255, 255, 255, 0.9);
}
.cc-lang ul {
    background: #ffffff;
    border-color: rgba(75, 118, 158, 0.35);
}
.cc-lang ul a { color: #223244; }

.cc-btn--ghost,
.cc-content-shell .cc-btn--ghost,
.cc-content-block .cc-btn--ghost,
.cc-hero-block .cc-btn--ghost {
    background: #ffd53d;
    color: #101010;
    border-color: #e6bf2f;
}
.cc-btn--ghost:hover,
.cc-content-shell .cc-btn--ghost:hover,
.cc-content-block .cc-btn--ghost:hover,
.cc-hero-block .cc-btn--ghost:hover { background: #ffcc22; color: #000; border-color: #d2ab10; }

.cc-btn--solid { background: linear-gradient(135deg, #5cda45, #3eca38); color: #05200f; box-shadow: 0 10px 24px rgba(62, 202, 56, 0.28); }
.cc-btn--solid:hover { background: linear-gradient(135deg, #42c735, #31b52d); color: #04190b; }

.cc-footer { background: linear-gradient(180deg, #fffdf1 0%, #eef8ff 100%); border-top: 1px solid rgba(70,183,255,.3); }
.cc-footer__inner {
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 1.2rem 0 .95rem;
}
.cc-footer__solid-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem 1rem;
    align-items: start;
    padding: 0 0 .85rem;
    border-bottom: 1px solid rgba(70, 183, 255, .2);
}
.cc-footer__column {
    padding: 0;
}
.cc-footer__brand {
    color: #152638;
    margin: 0 0 .25rem;
    font-size: .98rem;
    font-weight: 700;
}
.cc-footer__mission {
    color: #2f475f;
    margin: 0;
    font-size: .83rem;
    line-height: 1.4;
}
.cc-footer__links ul,
.cc-footer__social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .35rem;
}
.cc-footer__links a,
.cc-footer__social-list a {
    color: #243444;
    text-decoration: none;
    font-weight: 500;
    font-size: .83rem;
    line-height: 1.25;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
}
.cc-footer__links a:hover,
.cc-footer__social-list a:hover {
    color: #0d2136;
    text-decoration: underline;
}
.cc-footer__social-title {
    margin: 0 0 .35rem;
    color: #2f475f;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.cc-footer__social-icon {
    width: 1rem;
    text-align: center;
    font-size: .75rem;
    color: #1f5fb3;
    font-weight: 700;
}
.cc-footer__legal {
    margin-top: .65rem;
    padding-top: .25rem;
}
.cc-footer__copyright {
    color: #1d3144;
    margin: 0;
    font-size: .8rem;
}
@media (max-width: 980px) {
    .cc-main,
    .cc-topbar__frame,
    .cc-footer__inner,
    .cc-topbar__shell,
    .cc-drawer-wrap { width: min(1220px, calc(100% - 2rem)); }

    .cc-footer__solid-grid { grid-template-columns: 1fr; }
}

.cc-home-blog {
  margin: 3rem 0;
}

.cc-home-blog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .9rem;
}

.cc-home-blog__head h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #10263f;
}

.cc-home-blog__more {
  color: #1f5fb3;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cc-home-blog__more:hover {
  color: #154889;
}

.cc-home-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

.cc-home-blog__card {
  position: relative;
  border-radius: 14px;
  padding: .95rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(29, 76, 140, 0.14);
  box-shadow: 0 8px 18px rgba(19, 55, 107, 0.1);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cc-home-blog__card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 187, 103, .62);
  box-shadow: 0 14px 28px rgba(19, 55, 107, 0.18);
}

.cc-home-blog__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid transparent;
  transition: border-color .25s ease;
}

.cc-home-blog__card:hover::after {
  border-color: rgba(255, 222, 148, .72);
}


.cc-home-blog__preview {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.cc-blog-post__preview {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 14px;
    margin: 8px 0 14px;
}
.cc-home-blog__meta {
  margin: 0 0 .45rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .76rem;
  color: #122238;
}

.cc-home-blog__meta span,
.cc-home-blog__meta time,
.cc-home-blog__meta a {
  display: inline-flex;
  align-items: center;
  padding: .23rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 39, 66, 0.18);
  background: linear-gradient(180deg, #fff2cb, #f4d88e);
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}

.cc-home-blog__meta time {
  background: linear-gradient(180deg, #d9f0ff, #bedfff);
}

.cc-home-blog__meta a:hover {
  border-color: rgba(26, 79, 158, 0.4);
  color: #0f2f5a;
}

.cc-home-blog__card h3 {
  margin: 0 0 .45rem;
  font-size: 1rem;
}

.cc-home-blog__card h3 a {
  color: #10263f;
  text-decoration: none;
  transition: color .2s ease;
}

.cc-home-blog__card h3 a:hover {
  color: #1b5daf;
}

.cc-home-blog__card p {

  color: #364d68;
}

.cc-blog-page {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr);
}

.cc-blog-page__sidebar {
    border: 1px solid rgba(19, 25, 36, 0.1);
    border-radius: 16px;
    padding: 1rem;
    background: #ffffff;
}

.cc-blog-page__sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.cc-blog-page__content {
    min-width: 0;
}

.cc-blog-post {
    border: 1px solid rgba(19, 25, 36, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    background: #ffffff;
}

.cc-blog-post__excerpt {
    font-size: 1.05rem;
    color: #445066;
}

.cc-blog-post__content {
    margin-top: 1rem;
}

.cc-blog-post__content img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 960px) {
    .cc-blog-page {
        grid-template-columns: 260px minmax(0, 1fr);
        align-items: start;
    }

    .cc-blog-page__sidebar {
        position: sticky;
        top: 2rem;
    }
}
