/* ==========================================================================
   CDCC Accents — aksesori visual mengikuti gaya "Prospectus 2026".
   Non-destruktif: hanya class ber-namespace .cdcc-* yang dipasang di markup.
   Tidak mengubah warna/komponen tema yang sudah ada.
   ========================================================================== */
:root{
    --cdcc-navy: #2A2E9F;   /* sama dengan warna primer tema */
    --cdcc-red:  #E2231A;   /* merah CDCC */
    --cdcc-grey: #7B86A8;
}

/* --- Motif segitiga/chevron transparan (background dekorasi section) ------- */
.cdcc-motif{ position: relative; }
.cdcc-motif > .container,
.cdcc-motif > .promo-wrap{ position: relative; z-index: 2; }
.cdcc-motif::before,
.cdcc-motif::after{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='260'%20height='260'%20viewBox='0%200%20260%20260'%3E%3Cpolygon%20points='40,20%20160,20%20100,120'%20fill='%232A2E9F'%20fill-opacity='0.06'/%3E%3Cpolygon%20points='120,20%20240,20%20180,120'%20fill='%23E2231A'%20fill-opacity='0.06'/%3E%3Cpolygon%20points='80,70%20200,70%20140,170'%20fill='%232A2E9F'%20fill-opacity='0.05'/%3E%3Cpolygon%20points='150,95%20240,95%20195,170'%20fill='%237B86A8'%20fill-opacity='0.07'/%3E%3C/svg%3E");
}
.cdcc-motif::before{ top: 0; right: 0; }
.cdcc-motif::after{ bottom: 0; left: 0; transform: scaleX(-1) scaleY(-1); }

@media (max-width: 767px){
    .cdcc-motif::before,
    .cdcc-motif::after{ width: 150px; height: 150px; }
}

/* --- Heading dua warna + bar aksen merah ---------------------------------- */
.section-heading h2.cdcc-heading{ color: #1f2150; }
.cdcc-heading .cdcc-accent{ color: var(--cdcc-red); }

.section-heading .heading-border.cdcc-bar{
    border: none;
    height: 5px;
    width: 70px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--cdcc-red) 0%, #7a0f0c 100%);
    margin-top: 14px;
}

/* --- Badge ikon lingkaran navy (promo trio) ------------------------------- */
.cdcc-icon-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--cdcc-navy);
    box-shadow: 0 10px 22px rgba(42, 46, 159, 0.22);
    margin-bottom: 18px;
}
.cdcc-icon-badge img{
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 0 !important;       /* override .promo-content img */
    filter: brightness(0) invert(1);   /* jadikan ikon putih di atas badge */
}

/* --- Kartu rounded ber-border tipis (recent article) ---------------------- */
.cdcc-card{
    border: 1px solid rgba(42, 46, 159, 0.12);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.cdcc-card .blog-content{ border-radius: 0 0 14px 14px; }
.cdcc-card:hover{
    border-color: rgba(42, 46, 159, 0.25);
    box-shadow: 0 16px 30px rgba(42, 46, 159, 0.12) !important;
}
