/* CBP Page — Hero */
.cbp-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.cbp-hero-content {
    padding-top: 2rem;
}
.batik-overlay {
    background-image: url('../../images/batik-pattern.png');
    background-size: 500px 500px;
    background-repeat: repeat;
    opacity: 0.12;
    mix-blend-mode: overlay;
}

/* CBP Page — Tab Bar */
.cbp-tab-bar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.cbp-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
}
.cbp-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.cbp-tab svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.cbp-tab:hover {
    color: #003995;
    background-color: #f8fafc;
}
.cbp-tab.active {
    color: #003995;
    border-bottom-color: #003995;
}

/* CBP Page — Panels */
.cbp-panel {
    display: none;
}
.cbp-panel.active {
    display: block;
    animation: cbpFadeIn 0.35s ease;
}
@keyframes cbpFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CBP Page — Panel Header */
.cbp-panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.cbp-panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cbp-panel-icon svg {
    width: 28px;
    height: 28px;
}

/* CBP Page — Article Cards */
.cbp-article-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}
.cbp-article-card:last-child {
    margin-bottom: 0;
}
.cbp-article-card:hover {
    border-color: #003995;
    box-shadow: 0 8px 24px rgba(0, 57, 149, 0.06);
    transform: translateY(-2px);
}
.cbp-article-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}
.cbp-article-text {
    color: #475569;
    line-height: 1.75;
    font-size: 0.9375rem;
}
.cbp-article-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #475569;
    line-height: 1.7;
    font-size: 0.9375rem;
}
.cbp-list-bold li {
    font-weight: 600;
    color: #334155;
}

/* CBP Page — Responsive */
@media (max-width: 639px) {
    .cbp-hero {
        padding-top: 5.5rem;
        padding-bottom: 2.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .cbp-hero h1 {
        font-size: 1.75rem !important;
    }
    .cbp-hero p {
        font-size: 0.9375rem;
    }
    .cbp-tab {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
    }
    .cbp-tab svg {
        width: 16px;
        height: 16px;
    }
    .cbp-panel-header {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    .cbp-panel-icon {
        width: 44px;
        height: 44px;
        border-radius: 0.75rem;
    }
    .cbp-panel-icon svg {
        width: 22px;
        height: 22px;
    }
    .cbp-article-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }
    .cbp-article-title {
        font-size: 1.0625rem;
    }
    .cbp-article-text,
    .cbp-article-list {
        font-size: 0.875rem;
    }
}
