
/* =========================================================
   ŞEHİR REHBERİ
========================================================= */

.guide-page{
    background:#090d18;
    color:#dce5f2;
    min-height:70vh;
    padding:70px 20px 80px;
}

.guide-container{
    width:100%;
    max-width:1080px;
    margin:0 auto;
}


/* =========================================================
   BAŞLIK
========================================================= */

.guide-header{
    max-width:760px;
    margin:0 auto 45px;
    text-align:center;
}

.guide-header .eyebrow{
    color:#d8b35a;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.guide-header h1{
    margin:0 0 14px;
    color:#fff;
    font-size:36px;
    line-height:1.2;
    font-weight:800;
}

.guide-header p{
    max-width:680px;
    margin:0 auto;
    color:#8fa4c2;
    font-size:15px;
    line-height:1.7;
}


/* =========================================================
   3'LÜ KART ALANI
========================================================= */

.guide-grid{
    width:100%;
    display:grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap:22px;
    align-items:stretch;
}


/* =========================================================
   KART
========================================================= */

.guide-card{
    width:100%;
    min-width:0;
    overflow:hidden;

    display:flex;
    flex-direction:column;

    background:#1d2a3e;

    border:1px solid rgba(255,255,255,.09);
    border-radius:17px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.20);

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.guide-card:hover{
    transform:translateY(-3px);
    border-color:rgba(216,179,90,.40);
}


/* =========================================================
   RESİM
========================================================= */

.guide-image{
    width:100%;
    height:175px;

    flex-shrink:0;

    overflow:hidden;
    background:#111b2b;
}

.guide-image img{
    display:block;
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .3s ease;
}

.guide-card:hover .guide-image img{
    transform:scale(1.025);
}

.guide-image-placeholder{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            #172337,
            #0c1422
        );

    color:#60728c;
    font-size:38px;
}


/* =========================================================
   KART İÇERİĞİ
========================================================= */

.guide-body{
    flex:1;

    display:flex;
    flex-direction:column;

    padding:19px 20px 18px;
}


/* =========================================================
   KATEGORİ / TARİH
========================================================= */

.guide-meta{
    display:flex;
    align-items:center;
    gap:8px;

    margin-bottom:11px;
}

.guide-category{
    display:inline-flex;
    align-items:center;

    padding:6px 10px;

    border-radius:20px;

    background:rgba(216,179,90,.12);

    color:#ffbf22;

    font-size:11px;
    font-weight:800;

    white-space:nowrap;
}

.guide-date{
    color:#7187a4;
    font-size:12px;
    white-space:nowrap;
}


/* =========================================================
   BAŞLIK
========================================================= */

.guide-body h2{
    margin:0 0 8px;

    color:#fff;

    font-size:17px;
    line-height:1.35;

    font-weight:800;
}


/* =========================================================
   AÇIKLAMA
========================================================= */

.guide-body p{
    margin:0;

    color:#91a6c2;

    font-size:13.5px;
    line-height:1.6;

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;

    overflow:hidden;
}


/* =========================================================
   DEVAMINI OKU
========================================================= */

.guide-read{
    display:block;

    margin-top:auto;
    padding-top:13px;

    text-align:center;

    color:#ffff00;

    font-size:12px;
    font-weight:800;

    text-decoration:none;
}

.guide-read:hover{
    color:#ffbf22;
    text-decoration:underline;
}


/* =========================================================
   BOŞ
========================================================= */

.guide-empty{
    width:100%;
    box-sizing:border-box;

    padding:40px 20px;

    text-align:center;

    background:#0d1628;

    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;

    color:#8195b1;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

    .guide-container{
        max-width:700px;
    }

    .guide-grid{
        grid-template-columns:
            repeat(2, 1fr);
        gap:20px;
    }

}


/* =========================================================
   MOBİL
========================================================= */

@media(max-width:600px){

    .guide-page{
        padding:
            50px
            14px
            60px;
    }

    .guide-container{
        max-width:420px;
    }

    .guide-header{
        margin-bottom:32px;
    }

    .guide-header h1{
        font-size:29px;
    }

    .guide-header p{
        font-size:14px;
    }

    .guide-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .guide-image{
        height:200px;
    }

    .guide-body{
        padding:20px;
    }

    .guide-body h2{
        font-size:19px;
    }

    .guide-body p{
        font-size:14px;
    }

}

