:root {
    --ccbs-text: #17202a;
    --ccbs-muted: #667085;
    --ccbs-border: #e6e9ee;
    --ccbs-soft: #f6f8fa;
    --ccbs-white: #ffffff;
    --ccbs-accent: #111827;
    --ccbs-radius: 16px;
    --ccbs-shadow: 0 12px 35px rgba(16, 24, 40, 0.08);
}



.ccbs-site-main {
    color: var(--ccbs-text);
    background: var(--ccbs-white);
}

.ccbs-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.ccbs-hero {
    padding: 110px 0 76px;
    background: #092D62;
    border-bottom: 1px solid var(--ccbs-border);
}

.ccbs-eyebrow,
.ccbs-kicker {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ccbs-muted);
}

.ccbs-hero h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.ccbs-hero-copy {
    max-width: 660px;
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 1.75;
    color: var(--ccbs-muted);
}

.ccbs-archive-wrap {
    padding-top: 72px;
    padding-bottom: 90px;
}

.ccbs-section + .ccbs-section {
    margin-top: 86px;
}

.ccbs-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 28px;
}
.ccbs-container h2{
    color:white;
}
.ccbs-section-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -.03em;
}

.ccbs-featured-grid,
.ccbs-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.ccbs-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: var(--ccbs-white);
    border: 1px solid var(--ccbs-border);
    border-radius: var(--ccbs-radius);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ccbs-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ccbs-shadow);
    border-color: #d7dce3;
}

.ccbs-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--ccbs-soft);
}

.ccbs-card-image img,
.ccbs-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ccbs-card-image img {
    transition: transform .45s ease;
}

.ccbs-card:hover .ccbs-card-image img {
    transform: scale(1.035);
}

.ccbs-placeholder {
    background: linear-gradient(135deg, #eceff3, #f8f9fb);
}

.ccbs-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.ccbs-card-meta,
.ccbs-single-meta {
    margin-bottom: 10px;
    color: var(--ccbs-muted);
    font-size: 13px;
    font-weight: 600;
}

.ccbs-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.35;
}

.ccbs-card h3 a {
    color: inherit;
    text-decoration: none;
}

.ccbs-card p {
    margin: 0 0 20px;
    color: var(--ccbs-muted);
    line-height: 1.7;
}

.ccbs-read-more {
    margin-top: auto;
    color: var(--ccbs-text);
    font-weight: 700;
    text-decoration: none;
}

.ccbs-read-more span {
    display: inline-block;
    transition: transform .2s ease;
}

.ccbs-read-more:hover span {
    transform: translateX(4px);
}

.ccbs-featured-card:first-child {
    grid-column: span 2;
}

.ccbs-featured-card:first-child .ccbs-card-image {
    aspect-ratio: 16 / 8.1;
}

.ccbs-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.ccbs-pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ccbs-border);
    border-radius: 10px;
    color: var(--ccbs-text);
    text-decoration: none;
    font-weight: 600;
}

.ccbs-pagination .page-numbers.current,
.ccbs-pagination .page-numbers:hover {
    color: var(--ccbs-white);
    background: var(--ccbs-accent);
    border-color: var(--ccbs-accent);
}

.ccbs-empty {
    padding: 54px 24px;
    text-align: center;
    border: 1px dashed var(--ccbs-border);
    border-radius: var(--ccbs-radius);
    background: var(--ccbs-soft);
}

/* Single blog */
.ccbs-single-header {
    padding: 110px 0 54px;
    background-color:#092D62 !important;
    border-bottom: 1px solid var(--ccbs-border);
}

.ccbs-single-header-inner {
    max-width: 900px;
    text-align:center;
}
.ccbs-single-header-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ccbs-single-header-inner h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ccbs-single-meta {
    text-align: center;
}

.ccbs-single-lead {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.ccbs-back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--ccbs-muted);
    text-decoration: none;
    font-weight: 650;
}

.ccbs-single-header h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.ccbs-single-lead {
    max-width: 800px;
    margin: 20px 0 0;
    color: var(--ccbs-muted);
    font-size: 19px;
    line-height: 1.75;
}

.ccbs-single-image-wrap {
    max-width: 1100px;
    margin-top: 54px;
}

.ccbs-single-image {
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: var(--ccbs-soft);
}

.ccbs-single-image img {
    display: block;
    width: 100%;
    height: auto;
}

.ccbs-content-container {
    max-width: 860px;
    padding-top: 55px;
    padding-bottom: 90px;
}

.ccbs-entry-content {
    font-size: 17px;
    line-height: 1.85;
}

.ccbs-entry-content > *:first-child { margin-top: 0; }
.ccbs-entry-content p { margin: 0 0 1.45em; }
.ccbs-entry-content h2,
.ccbs-entry-content h3,
.ccbs-entry-content h4 {
    margin-top: 1.7em;
    margin-bottom: .65em;
    line-height: 1.25;
    letter-spacing: -.02em;
}
.ccbs-entry-content img { max-width: 100%; height: auto; border-radius: 12px; }
.ccbs-entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.ccbs-entry-content blockquote {
    margin: 2em 0;
    padding: 20px 24px;
    border-left: 4px solid var(--ccbs-accent);
    background: var(--ccbs-soft);
}

.ccbs-single-footer {
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid var(--ccbs-border);
}

.ccbs-button {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 10px;
    color: var(--ccbs-white) !important;
    background: var(--ccbs-accent);
    text-decoration: none !important;
    font-weight: 700;
}

@media (max-width: 900px) {
    .ccbs-featured-grid,
    .ccbs-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ccbs-featured-card:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .ccbs-container {
        width: min(100% - 28px, 1180px);
    }

    .ccbs-hero {
        padding: 58px 0 52px;
    }

    .ccbs-archive-wrap {
        padding-top: 52px;
        padding-bottom: 65px;
    }

    .ccbs-section + .ccbs-section {
        margin-top: 62px;
    }

    .ccbs-featured-grid,
    .ccbs-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ccbs-featured-card:first-child {
        grid-column: auto;
    }

    .ccbs-featured-card:first-child .ccbs-card-image,
    .ccbs-card-image {
        aspect-ratio: 16 / 10;
    }

    .ccbs-card-body {
        padding: 20px;
    }

    .ccbs-single-header {
        padding: 50px 0 40px;
    }

    .ccbs-single-image-wrap {
        margin-top: 30px;
    }

    .ccbs-content-container {
        padding-top: 38px;
        padding-bottom: 65px;
    }
}

/* Shortcode archive: remove doubled outer spacing when embedded in page builders. */
.ccbs-shortcode-archive {
    width: 100%;
}

.ccbs-shortcode-archive .ccbs-pagination .current {
    pointer-events: none;
}
