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

:root {
    --cbb-navy: #071d3d;
    --cbb-blue: #174fba;
    --cbb-royal: #2864f0;
    --cbb-gold: #f0b84b;
    --cbb-cream: #fff9ee;
    --cbb-text: #536078;
    --cbb-white: #ffffff;
    --cbb-border: rgba(25, 70, 145, 0.12);
    --cbb-shadow: 0 22px 60px rgba(9, 35, 79, 0.13);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f6f8fc;
    color: var(--cbb-navy);
    font-family: "Archivo Black", sans-serif;
}

.cbb-blog-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    padding: 95px 0;
    background:
        linear-gradient(135deg, rgba(255, 251, 240, 0.97), rgba(242, 247, 255, 0.96)),
        radial-gradient(circle at 15% 15%, rgba(240, 184, 75, 0.22), transparent 22%),
        radial-gradient(circle at 88% 30%, rgba(40, 100, 240, 0.16), transparent 24%);
}

.cbb-blog-section::before,
.cbb-blog-section::after {
    content: "";
    position: absolute;
    z-index: -2;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(40, 100, 240, 0.09);
    border-radius: 50%;
}

.cbb-blog-section::before {
    top: -185px;
    right: -110px;
    box-shadow:
        0 0 0 35px rgba(40, 100, 240, 0.025),
        0 0 0 75px rgba(40, 100, 240, 0.018);
}

.cbb-blog-section::after {
    left: -190px;
    bottom: -230px;
    box-shadow:
        0 0 0 45px rgba(240, 184, 75, 0.035),
        0 0 0 90px rgba(240, 184, 75, 0.02);
}

.cbb-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(1px);
    animation: cbbFloat 7s ease-in-out infinite;
}

.cbb-orb-one {
    top: 18%;
    left: 4%;
    width: 95px;
    height: 95px;
    background: linear-gradient(145deg, rgba(240, 184, 75, 0.27), rgba(255, 255, 255, 0));
}

.cbb-orb-two {
    right: 4%;
    bottom: 22%;
    width: 130px;
    height: 130px;
    background: linear-gradient(145deg, rgba(40, 100, 240, 0.18), rgba(255, 255, 255, 0));
    animation-delay: 1.4s;
}

.cbb-cross {
    position: absolute;
    z-index: -1;
    color: rgba(23, 79, 186, 0.11);
    font-size: 40px;
    animation: cbbSpin 16s linear infinite;
}

.cbb-cross-one {
    top: 21%;
    right: 12%;
}

.cbb-cross-two {
    left: 9%;
    bottom: 18%;
    animation-direction: reverse;
}

.cbb-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.cbb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 18px;
    border: 1px solid rgba(23, 79, 186, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 30px rgba(8, 35, 81, 0.07);
    color: var(--cbb-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.cbb-eyebrow i {
    color: var(--cbb-gold);
}

.cbb-heading h2 {
    margin: 0 0 15px;
    color: var(--cbb-navy);
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
}

.cbb-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--cbb-text);
    font-size: 16px;
    line-height: 1.9;
}

.cbb-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 22px;
}

.cbb-heading-line span {
    width: 72px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cbb-gold));
}

.cbb-heading-line span:last-child {
    background: linear-gradient(90deg, var(--cbb-gold), transparent);
}

.cbb-heading-line i {
    color: var(--cbb-blue);
    font-size: 18px;
}

.cbb-filter-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
    padding: 18px 22px;
    border: 1px solid rgba(40, 100, 240, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 30px rgba(8, 35, 81, 0.07);
    backdrop-filter: blur(10px);
}

.cbb-filter-banner small {
    display: block;
    color: var(--cbb-text);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cbb-filter-banner strong {
    color: var(--cbb-navy);
    font-size: 18px;
}

.cbb-filter-banner a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cbb-blue);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.cbb-post-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--cbb-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--cbb-shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.cbb-post-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 105px;
    height: 105px;
    border: 18px solid rgba(40, 100, 240, 0.035);
    border-radius: 50%;
    pointer-events: none;
}

.cbb-post-card:hover {
    transform: translateY(-9px);
    border-color: rgba(40, 100, 240, 0.24);
    box-shadow: 0 30px 70px rgba(9, 35, 79, 0.18);
}

.cbb-post-image {
    overflow: hidden;
}

.cbb-post-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(3, 21, 48, 0.45));
}

.cbb-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(.2, .8, .2, 1);
}

.cbb-post-card:hover .cbb-post-image img {
    transform: scale(1.08);
}

.cbb-image-shine {
    position: absolute;
    z-index: 2;
    top: 0;
    left: -90%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-18deg);
    transition: left 0.8s ease;
}

.cbb-post-card:hover .cbb-image-shine {
    left: 130%;
}

.cbb-date-badge {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 18px;
    display: grid;
    place-items: center;
    min-width: 62px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 10px;
    background: rgba(7, 29, 61, 0.88);
    color: #fff;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.cbb-date-badge strong {
    font-size: 20px;
    line-height: 1;
}

.cbb-date-badge span {
    margin-top: 5px;
    color: #ffd67c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.cbb-post-body {
    position: relative;
    z-index: 1;
    padding: 25px;
}

.cbb-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 13px;
}

.cbb-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #7c879c;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.cbb-post-meta i {
    color: var(--cbb-gold);
}

.cbb-post-body h3 {
    margin: 0 0 12px;
     font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.cbb-post-body h3 a {
    color: var(--cbb-navy);
    text-decoration: none;
    transition: color 0.25s ease;
}

.cbb-post-body h3 a:hover {
    color: var(--cbb-blue);
}

.cbb-post-body p {
    min-height: 75px;
    margin: 0 0 21px;
    color: var(--cbb-text);
    font-size: 14px;
    line-height: 1.8;
}

.cbb-read-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    padding: 12px 19px;
    border: 1px solid rgba(40, 100, 240, 0.15);
    border-radius: 10px;
    background: linear-gradient(135deg, #174fba, #2864f0);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.45px;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(40, 100, 240, 0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cbb-read-more::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cbb-gold), #ffcf6b);
    transform: translateX(-102%);
    transition: transform 0.35s ease;
}

.cbb-read-more span,
.cbb-read-more i {
    position: relative;
    z-index: 1;
}

.cbb-read-more:hover {
    color: var(--cbb-navy);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(40, 100, 240, 0.28);
}

.cbb-read-more:hover::before {
    transform: translateX(0);
}

.cbb-read-more i {
    transition: transform 0.3s ease;
}

.cbb-read-more:hover i {
    transform: translateX(4px);
}

.cbb-sidebar {
    position: sticky;
    top: 25px;
}

.cbb-sidebar-box {
    margin-bottom: 25px;
    padding: 24px;
    border: 1px solid var(--cbb-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--cbb-shadow);
    backdrop-filter: blur(12px);
}

.cbb-sidebar-title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.cbb-sidebar-icon {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(145deg, #174fba, #2864f0);
    color: #fff;
    box-shadow: 0 12px 25px rgba(40, 100, 240, 0.24);
}

.cbb-gold-icon {
    background: linear-gradient(145deg, #e6a52d, #ffd06f);
    color: var(--cbb-navy);
    box-shadow: 0 12px 25px rgba(240, 184, 75, 0.25);
}

.cbb-sidebar-title small {
    display: block;
    margin-bottom: 3px;
    color: #929bad;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cbb-sidebar-title h4 {
    margin: 0;
    color: var(--cbb-navy);
    font-family: "Archivo Black", sans-serif;
    font-size: 23px;
    font-weight: 800;
}

.cbb-archive-list {
    display: grid;
    gap: 9px;
}

.cbb-archive-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid rgba(23, 79, 186, 0.08);
    border-radius: 10px;
    background: #f8faff;
    color: var(--cbb-text);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.cbb-archive-list a span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.cbb-archive-list a i {
    color: var(--cbb-blue);
}

.cbb-archive-list a strong {
    display: grid;
    min-width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--cbb-blue);
    font-size: 11px;
    box-shadow: 0 5px 15px rgba(8, 35, 81, 0.08);
}

.cbb-archive-list a:hover,
.cbb-archive-list a.active {
    border-color: transparent;
    background: linear-gradient(135deg, #174fba, #2864f0);
    color: #fff;
    transform: translateX(4px);
}

.cbb-archive-list a:hover i,
.cbb-archive-list a.active i {
    color: #ffd374;
}

.cbb-recent-list {
    display: grid;
    gap: 5px;
}

.cbb-recent-list a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 5px;
    border-bottom: 1px dashed rgba(23, 79, 186, 0.12);
    color: var(--cbb-navy);
    text-decoration: none;
}

.cbb-recent-list a:last-child {
    border-bottom: 0;
}

.cbb-recent-number {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    background: #eef3ff;
    color: var(--cbb-blue);
    transition: 0.3s ease;
}

.cbb-recent-list strong {
    display: block;
    font-size: 13px;
    line-height: 1.45;
}

.cbb-recent-list small {
    display: block;
    margin-top: 4px;
    color: #9099aa;
    font-size: 10px;
}

.cbb-recent-list a:hover .cbb-recent-number {
    background: var(--cbb-gold);
    color: var(--cbb-navy);
    transform: rotate(-6deg);
}

.cbb-verse-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 30px;
    border-radius: 10px;
    background:
        linear-gradient(145deg, rgba(7, 29, 61, 0.98), rgba(23, 79, 186, 0.94)),
        url('') center/cover;
    color: #fff;
    box-shadow: 0 25px 60px rgba(7, 29, 61, 0.25);
}

.cbb-verse-card::after {
    content: "✝";
    position: absolute;
    z-index: -1;
    right: -12px;
    bottom: -46px;
    color: rgba(255, 255, 255, 0.06);
    font-size: 170px;
    font-weight: 800;
    transform: rotate(-10deg);
}

.cbb-verse-card > i {
    margin-bottom: 16px;
    color: var(--cbb-gold);
    font-size: 26px;
}

.cbb-verse-card p {
    margin: 0 0 15px;
    font-family: "Archivo Black", sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.55;
}

.cbb-verse-card strong {
    color: #ffd67c;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cbb-verse-glow {
    position: absolute;
    z-index: -1;
    top: -65px;
    right: -45px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(240, 184, 75, 0.18);
    filter: blur(2px);
}

.cbb-pagination-wrap {
    margin-top: 42px;
}

.cbb-pagination {
    gap: 8px;
}

.cbb-pagination .page-link {
    display: grid;
    min-width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(23, 79, 186, 0.12);
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.88);
    color: var(--cbb-blue);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(8, 35, 81, 0.07);
}

.cbb-pagination .page-item.active .page-link {
    border-color: transparent;
    background: linear-gradient(135deg, #174fba, #2864f0);
    color: #fff;
    box-shadow: 0 12px 25px rgba(40, 100, 240, 0.22);
}

.cbb-pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 100, 240, 0.12);
}

.cbb-single-post {
    overflow: hidden;
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid var(--cbb-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--cbb-shadow);
}

.cbb-single-image {
    position: relative;
    height: 470px;
    overflow: hidden;
}

.cbb-single-image::after {
    content: "";
    position: absolute;
    inset: 0;
}

.cbb-single-image img {
    width: 100%;
    height: 100%;
 
}

.cbb-back-button {
    z-index: 3;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    background: rgba(7, 29, 61, 0.82);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.cbb-single-content {
    padding: 42px;
}

.cbb-single-content h1 {
    margin: 0 0 24px;
    color: var(--cbb-navy);
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.18;
}

.cbb-scripture-mark {
    margin: 0 0 28px;
    padding: 20px 22px;
    border-left: 4px solid var(--cbb-gold);
    border-radius: 0 10px 10px 0;
    background: linear-gradient(135deg, #fff9ec, #f5f8ff);
    color: var(--cbb-navy);
    font-family: "Archivo Black", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.65;
}

.cbb-scripture-mark i {
    margin-right: 9px;
    color: var(--cbb-gold);
}

.cbb-full-content {
    color: var(--cbb-text);
    font-size: 16px;
    line-height: 2;
}

.cbb-empty-state {
    padding: 55px 25px;
    border: 1px dashed rgba(23, 79, 186, 0.22);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.78);
    text-align: center;
}

.cbb-empty-state > i {
    margin-bottom: 16px;
    color: var(--cbb-gold);
    font-size: 48px;
}

.cbb-empty-state h3 {
    font-family: "Archivo Black", sans-serif;
    font-weight: 800;
}

.cbb-empty-state p {
    color: var(--cbb-text);
}

@keyframes cbbFloat {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-18px) rotate(8deg);
    }
}

@keyframes cbbSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991.98px) {
    .cbb-blog-section {
        padding: 75px 0;
    }

    .cbb-sidebar {
        position: static;
    }

    .cbb-single-image {
        height: 390px;
    }
}

@media (max-width: 767.98px) {
    .cbb-blog-section {
        padding: 60px 0;
    }

    .cbb-heading {
        margin-bottom: 38px;
    }

    .cbb-heading p {
        font-size: 14px;
    }

    .cbb-post-image {
        height: 230px;
    }

    .cbb-filter-banner {
        align-items: flex-start;
        flex-direction: column;
    }

    .cbb-single-image {
        height: 300px;
    }

    .cbb-single-content {
        padding: 27px 22px;
    }
}

@media (max-width: 575.98px) {
    .cbb-blog-section {
        padding: 48px 0;
    }

    .cbb-eyebrow {
        padding: 8px 13px;
        font-size: 10px;
    }

    .cbb-heading h2 {
        font-size: 38px;
    }

    .cbb-post-body {
        padding: 21px;
    }

    .cbb-post-image {
        height: 215px;
    }

    .cbb-post-body h3 {
        font-size: 22px;
    }

    .cbb-sidebar-box,
    .cbb-verse-card {
        padding: 21px;
    }

    .cbb-pagination {
        gap: 5px;
    }

    .cbb-pagination .page-link {
        min-width: 38px;
        height: 38px;
    }

    .cbb-single-image {
        height: 240px;
    }

    .cbb-back-button {
        top: 14px;
        left: 14px;
    }
}
