
.shibi-cg-wrap,
.shibi-cg-wrap *{
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

.shibi-cg-wrap{
    --shibi-yellow:#f5d238;
    --shibi-gold:#b79b15;
    --shibi-text:#272727;
    --shibi-muted:#747474;
    --shibi-border:#eae5da;
    --shibi-soft:#faf8f2;
    width:100%;
    color:var(--shibi-text);
}

.shibi-cg-wrap a{
    text-decoration:none!important;
}

/* HERO */
.shibi-cg-hero{
    position:relative;
    overflow:hidden;
    width:100%;
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:46px 3%;
    margin-bottom:34px;
    border:1px solid #eee8db;
    border-radius:22px;
    background:
        radial-gradient(circle at 92% 35%,rgba(245,210,56,.18),transparent 27%),
        linear-gradient(135deg,#fff 0%,#fffdf7 58%,#fff8de 100%);
}

.shibi-cg-hero:after{
    content:"";
    position:absolute;
    width:330px;
    height:330px;
    right:-90px;
    bottom:-205px;
    border-radius:50%;
    background:rgba(245,210,56,.09);
}

.shibi-cg-kicker,
.shibi-cg-section-heading span{
    display:block;
    margin-bottom:8px;
    color:#a38b1b;
    font-size:12px;
    line-height:1.3;
    font-weight:600;
    letter-spacing:.2px;
}

.shibi-cg-hero h1{
    position:relative;
    z-index:1;
    max-width:760px;
    margin:0 0 11px;
    color:#242424;
    font-size:38px;
    line-height:1.15;
    font-weight:600;
    letter-spacing:-1.2px;
}

.shibi-cg-hero h1 span{
    color:var(--shibi-gold);
}

.shibi-cg-hero p{
    position:relative;
    z-index:1;
    max-width:670px;
    margin:0;
    color:#727272;
    font-size:14px;
    line-height:1.75;
}

/* BÖLÜM BAŞLIĞI */
.shibi-cg-featured-wrap{
    margin-bottom:34px;
}

.shibi-cg-section-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:15px;
}

.shibi-cg-section-heading h2{
    margin:0;
    color:#272727;
    font-size:25px;
    line-height:1.25;
    font-weight:600;
    letter-spacing:-.5px;
}

/* SEKMELER */
.shibi-cg-toolbar{
    display:flex;
    justify-content:center;
    margin:5px 0 24px;
}

.shibi-cg-tabs{
    display:inline-flex;
    align-items:center;
    flex-wrap:wrap;
    gap:6px;
    padding:5px;
    background:#faf8f3;
    border:1px solid var(--shibi-border);
    border-radius:13px;
}

.shibi-cg-tabs button{
    min-height:38px;
    padding:0 16px;
    border:0;
    border-radius:9px;
    background:transparent;
    color:#696969;
    cursor:pointer;
    font-size:12px;
    line-height:1;
    font-weight:600;
    transition:.2s ease;
}

.shibi-cg-tabs button.is-active{
    background:var(--shibi-yellow);
    color:#222;
    box-shadow:0 4px 12px rgba(245,210,56,.18);
}

/* NORMAL KART GRID */
.shibi-cg-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    align-items:stretch;
}


.shibi-cg-grid.shibi-cg-grid-two,
.shibi-cg-grid.shibi-cg-grid-one{
    grid-template-columns:repeat(4,minmax(0,1fr));
}

.shibi-cg-card{
    overflow:hidden;
    min-width:0;
    background:#fff;
    border:1px solid var(--shibi-border);
    border-radius:17px;
    transition:.2s ease;
}

.shibi-cg-card:hover{
    transform:translateY(-3px);
    border-color:#e4cf64;
    box-shadow:0 14px 30px rgba(30,30,30,.055);
}

.shibi-cg-card.is-hidden{
    display:none;
}

/* GÖRSEL */
.shibi-cg-image{
    position:relative;
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:1 / 1;
    overflow:hidden;
    background:#f5f4f0;
}

.shibi-cg-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .3s ease;
}

.shibi-cg-card:hover .shibi-cg-image img{
    transform:scale(1.02);
}

.shibi-cg-image-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#999;
    font-size:12px;
    background:linear-gradient(145deg,#f7f6f2,#efede7);
}

.shibi-cg-badge{
    position:absolute;
    top:13px;
    left:13px;
    padding:7px 10px;
    border-radius:999px;
    background:var(--shibi-yellow);
    color:#252525;
    font-size:10px;
    line-height:1;
    font-weight:600;
    box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.shibi-cg-badge-guide{
    background:#fff;
    border:1px solid #ece5d8;
}

/* KART METİNLERİ */
.shibi-cg-card-body{
    padding:20px;
}

.shibi-cg-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:8px 12px;
    margin-bottom:9px;
    color:#999;
    font-size:11px;
    line-height:1.45;
    font-weight:500;
}

.shibi-cg-card h3{
    margin:0 0 8px;
    color:#2c2c2c;
    font-size:17px;
    line-height:1.45;
    font-weight:600;
    letter-spacing:-.1px;
}

.shibi-cg-card h3 a{
    color:#2c2c2c!important;
}

.shibi-cg-card p{
    margin:0 0 14px;
    color:#757575;
    font-size:13px;
    line-height:1.75;
}

.shibi-cg-link{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#262626!important;
    font-size:12px;
    line-height:1.2;
    font-weight:600;
}

.shibi-cg-link span{
    color:var(--shibi-gold);
    font-size:15px;
    transition:transform .2s ease;
}

.shibi-cg-link:hover span{
    transform:translateX(3px);
}

/* ÖNE ÇIKAN KAMPANYA - SABİT YÜKSEKLİK */
.shibi-cg-featured{
    display:grid;
    grid-template-columns:54% 46%;
    width:100%;
    height:360px;
    min-height:0;
    overflow:hidden;
}

.shibi-cg-featured .shibi-cg-image{
    width:100%;
    height:360px;
    min-height:0;
    aspect-ratio:auto;
}

.shibi-cg-featured .shibi-cg-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.shibi-cg-featured .shibi-cg-card-body{
    height:360px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:34px 38px;
    overflow:hidden;
}

.shibi-cg-featured .shibi-cg-meta{
    margin-bottom:11px;
}

.shibi-cg-featured h3{
    margin-bottom:10px;
    font-size:24px;
    line-height:1.3;
}

.shibi-cg-featured p{
    margin-bottom:17px;
    font-size:13px;
    line-height:1.75;
}

/* TEK TÜR SHORTCODE */
.shibi-cg-only{
    padding:20px 0;
}

/* BOŞ */
.shibi-cg-empty{
    padding:26px;
    border:1px dashed #ddd6c7;
    border-radius:15px;
    background:#fcfaf6;
    color:#777;
    text-align:center;
    font-size:13px;
}

/* TABLET */
@media(max-width:1024px){

    .shibi-cg-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .shibi-cg-featured{
        grid-template-columns:1fr 1fr;
        height:330px;
    }

    .shibi-cg-featured .shibi-cg-image,
    .shibi-cg-featured .shibi-cg-card-body{
        height:330px;
    }

    .shibi-cg-featured .shibi-cg-card-body{
        padding:28px;
    }

    .shibi-cg-featured h3{
        font-size:21px;
    }
}

/* MOBİL */
@media(max-width:767px){

    .shibi-cg-hero{
        min-height:auto;
        padding:38px 16px;
        margin-bottom:28px;
        border-radius:18px;
    }

    .shibi-cg-hero h1{
        font-size:30px;
        letter-spacing:-.8px;
    }

    .shibi-cg-hero p{
        font-size:13px;
    }

    .shibi-cg-section-heading h2{
        font-size:22px;
    }

    .shibi-cg-tabs{
        width:100%;
        display:grid;
        grid-template-columns:repeat(3,1fr);
    }

    .shibi-cg-tabs button{
        padding:0 7px;
        font-size:11px;
    }

    .shibi-cg-grid{
        grid-template-columns:1fr;
    }

    .shibi-cg-image{
        height:auto;
        aspect-ratio:1 / 1;
    }

    .shibi-cg-featured{
        display:block;
        height:auto;
    }

    .shibi-cg-featured .shibi-cg-image{
        height:240px;
    }

    .shibi-cg-featured .shibi-cg-card-body{
        height:auto;
        min-height:220px;
        padding:22px;
    }

    .shibi-cg-featured h3{
        font-size:20px;
    }
}


/* SINGLE PAGE */
.shibi-cg-single-page,
.shibi-cg-single-page *{
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

.shibi-cg-single-page{
    --shibi-yellow:#f5d238;
    --shibi-gold:#b79b15;
    --shibi-text:#272727;
    --shibi-muted:#6f6f6f;
    --shibi-border:#eae5da;
    --shibi-soft:#faf8f2;
    width:100%;
    padding:34px 3% 56px;
    color:var(--shibi-text);
}

.shibi-cg-single-inner{
    width:100%;
    max-width:none;
    margin:0;
}

.shibi-cg-single-back{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin:0 0 18px;
    color:#434343!important;
    font-size:14px;
    line-height:1.2;
    font-weight:600;
    text-decoration:none!important;
}

.shibi-cg-single-hero-block{
    display:grid;
    grid-template-columns:minmax(0, 1.05fr) minmax(420px, .95fr);
    gap:28px;
    align-items:stretch;
    margin-bottom:26px;
}

.shibi-cg-single-media,
.shibi-cg-single-summary,
.shibi-cg-single-content-card{
    background:#fff;
    border:1px solid var(--shibi-border);
    border-radius:24px;
}

.shibi-cg-single-media{
    overflow:hidden;
    min-height:540px;
    background:#f4f2ec;
}

.shibi-cg-single-media img{
    display:block;
    width:100%;
    height:100%;
    min-height:540px;
    object-fit:cover;
    object-position:center;
}

.shibi-cg-single-placeholder{
    min-height:540px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:26px;
    color:#8d8d8d;
    font-size:18px;
    text-align:center;
    background:linear-gradient(145deg,#f8f6f1,#efede7);
}

.shibi-cg-single-summary{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:38px 38px 40px;
}

.shibi-cg-single-topline{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:18px;
}

.shibi-cg-single-type,
.shibi-cg-single-badge{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    font-size:13px;
    line-height:1;
    font-weight:600;
}

.shibi-cg-single-type{
    background:#faf7eb;
    color:#695816;
    border:1px solid #efe2a4;
}

.shibi-cg-single-badge{
    background:var(--shibi-yellow);
    color:#2a2a2a;
}

.shibi-cg-single-summary h1{
    margin:0 0 16px;
    color:#1f1f1f;
    font-size:44px;
    line-height:1.15;
    font-weight:700;
    letter-spacing:-1.2px;
}

.shibi-cg-single-excerpt{
    margin:0 0 22px;
    color:#666;
    font-size:18px;
    line-height:1.85;
}

.shibi-cg-single-meta-row{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    margin-top:8px;
}

.shibi-cg-single-meta-item{
    display:flex;
    flex-direction:column;
    gap:7px;
    min-height:98px;
    padding:18px 20px;
    border-radius:18px;
    background:var(--shibi-soft);
    border:1px solid #eee7d8;
}

.shibi-cg-single-meta-item strong{
    color:#2d2d2d;
    font-size:14px;
    line-height:1.2;
    font-weight:700;
}

.shibi-cg-single-meta-item span{
    color:#6c6c6c;
    font-size:15px;
    line-height:1.7;
    font-weight:500;
}

.shibi-cg-single-content-card{
    padding:34px 38px 40px;
}

.shibi-cg-single-content-head{
    margin-bottom:20px;
}

.shibi-cg-single-content-head span{
    display:block;
    margin-bottom:8px;
    color:#a38b1b;
    font-size:12px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:.3px;
}

.shibi-cg-single-content-head h2{
    margin:0;
    color:#242424;
    font-size:30px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:-.5px;
}

.shibi-cg-single-content,
.shibi-cg-single-content p,
.shibi-cg-single-content li,
.shibi-cg-single-content td,
.shibi-cg-single-content th,
.shibi-cg-single-content blockquote{
    color:#585858;
    font-size:17px;
    line-height:1.95;
}

.shibi-cg-single-content p{
    margin:0 0 20px;
}

.shibi-cg-single-content h2,
.shibi-cg-single-content h3,
.shibi-cg-single-content h4{
    margin:28px 0 12px;
    color:#262626;
    font-size:28px;
    line-height:1.3;
    font-weight:700;
}

.shibi-cg-single-content ul,
.shibi-cg-single-content ol{
    margin:0 0 22px 24px;
}

.shibi-cg-single-content a{
    color:#242424;
    text-decoration:underline;
    text-decoration-color:#d6bf3b;
    text-underline-offset:3px;
}

@media(max-width:1100px){
    .shibi-cg-single-hero-block{
        grid-template-columns:1fr;
    }

    .shibi-cg-single-media,
    .shibi-cg-single-media img,
    .shibi-cg-single-placeholder{
        min-height:420px;
    }

    .shibi-cg-single-summary h1{
        font-size:36px;
    }
}

@media(max-width:767px){
    .shibi-cg-single-page{
        padding:22px 14px 42px;
    }

    .shibi-cg-single-back{
        margin-bottom:14px;
        font-size:13px;
    }

    .shibi-cg-single-summary,
    .shibi-cg-single-content-card{
        padding:24px 18px;
        border-radius:18px;
    }

    .shibi-cg-single-media,
    .shibi-cg-single-media img,
    .shibi-cg-single-placeholder{
        min-height:280px;
        border-radius:18px;
    }

    .shibi-cg-single-summary h1{
        font-size:29px;
        letter-spacing:-.7px;
    }

    .shibi-cg-single-excerpt{
        font-size:15px;
        line-height:1.8;
    }

    .shibi-cg-single-meta-row{
        grid-template-columns:1fr;
    }

    .shibi-cg-single-content-head h2{
        font-size:24px;
    }

    .shibi-cg-single-content,
    .shibi-cg-single-content p,
    .shibi-cg-single-content li,
    .shibi-cg-single-content td,
    .shibi-cg-single-content th,
    .shibi-cg-single-content blockquote{
        font-size:15px;
        line-height:1.85;
    }

    .shibi-cg-single-content h2,
    .shibi-cg-single-content h3,
    .shibi-cg-single-content h4{
        font-size:22px;
    }
}
