body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #F8F9FB;
    color: #1f2937;
}

/* =========================
   BLOG PAGE STYLES
   (SCOPED - NO CONFLICT)
========================= */

.blogPage-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HERO */
.blogPage-hero{
    height: 45vh;
    background: url("../images/hero3.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.blogPage-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.blogPage-container{
    position: relative;
    z-index: 2;
}

.blogPage-hero h1{
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 10px;
}

.blogPage-hero p{
    font-size: 18px;
    color: #f1f1f1;
}

/* SECTION */
.blogPage-section{
    padding:80px 0;
    background:#f5f5f5;
}

/* GRID */
.blogPage-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    align-items:stretch; /* ÖNEMLİ */
}

.blogPage-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;

    display:flex;
    flex-direction:column;
    height:100%; /* eşit yükseklik */
}

.blogPage-card:hover{
    transform:translateY(-8px);
}

.blogPage-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* CONTENT */
.blogPage-content{
    padding:20px;
}

.blogPage-content span{
    font-size:13px;
    color:#888;
}

.blogPage-content h3{
    font-size:20px;
    margin:12px 0;
    color:#222;

    display:-webkit-box;
    -webkit-line-clamp:2;   /* max 2 satır */
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height:48px;
}

.blogPage-content p{
    font-size:14px;
    color:#666;
    line-height:1.6;
    margin-bottom:15px;

    display:-webkit-box;
    -webkit-line-clamp:3;   /* max 3 satır */
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height:63px;
}

/* BUTTON */
.blogPage-content a{
    display:inline-block;
    padding:10px 18px;
    background:#FD8602;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    transition:.3s;
    font-size:14px;
}

.blogPage-content a:hover{
    background:#f08c1a;
}

/* RESPONSIVE */
@media(max-width:768px){
    .blogPage-hero h1{
        font-size:32px;
    }
}