body{
font-family:Arial,Helvetica,sans-serif;
margin:0;
background:#f6f8fb;
}

/* HERO */

.blog-hero{
background:url('../images/blog-hero.jpg') center/cover no-repeat;
height:420px;
position:relative;
}

.blog-hero .overlay{
position:absolute;
top:0;left:0;
width:100%;height:100%;
background:rgba(0,0,0,.6);
}

.hero-content{
position:absolute;
top:50%;left:50%;
transform:translate(-50%,-50%);
color:#fff;
text-align:center;
}

.hero-content h1{
font-size:46px;
margin-bottom:15px;
}

.hero-content p{
font-size:18px;
}

/* WRAPPER */

.blog-wrapper{
display:flex;
gap:40px;
padding:80px 8%;
}

/* BLOG CONTENT */

.blog-content{
flex:3;
display:grid;
grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
gap:30px;
}

.blog-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 12px 30px rgba(0,0,0,.08);
transition:.3s;
}

.blog-card:hover{
transform:translateY(-6px);
}

.blog-card img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-info{
padding:25px;
}

.category{
color:#ff7a00;
font-weight:bold;
font-size:14px;
}

.blog-info h2{
font-size:22px;
margin:10px 0;
}

.blog-info p{
color:#555;
line-height:1.6;
}

.blog-info a{
display:inline-block;
margin-top:12px;
color:#0a2d57;
font-weight:bold;
}

/* SIDEBAR */

.blog-sidebar{
flex:1;
display:flex;
flex-direction:column;
gap:30px;
}

.job-search-box{
background:#0a2d57;
color:#fff;
padding:25px;
border-radius:20px;
}

.job-search-box h3{
margin-bottom:15px;
}

.job-search-box input{
width:100%;
padding:12px;
margin-bottom:10px;
border:none;
border-radius:8px;
}

.job-search-box button{
width:100%;
padding:12px;
background:#ff7a00;
border:none;
color:#fff;
font-weight:bold;
border-radius:8px;
cursor:pointer;
}

.sidebar-box{
background:#fff;
padding:25px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.07);
}

.sidebar-box h3{
margin-bottom:15px;
}

.sidebar-box ul{
list-style:none;
padding:0;
}

.sidebar-box li{
padding:8px 0;
border-bottom:1px solid #eee;
cursor:pointer;
}

/* MOBILE */

@media(max-width:900px){

.blog-wrapper{
flex-direction:column;
padding:40px 5%;
}

.hero-content h1{
font-size:32px;
}

}



/* =========================
 BLOG YAZI DETAY TASARIM
========================= */

.blog-article{
background:#fff;
padding:50px;
border-radius:20px;
box-shadow:0 12px 30px rgba(0,0,0,.08);
line-height:1.8;
font-size:17px;
max-width:900px;
margin:auto;
}

/* Başlıklar */

.blog-article h2{
font-size:26px;
margin:35px 0 15px;
color:#0a2d57;
}

/* Paragraflar */

.blog-article p{
color:#444;
margin-bottom:18px;
}

/* Küçük şık görseller */

.article-img{
width:100%;
max-width:650px;
height:260px;
object-fit:cover;
border-radius:16px;
margin:25px auto;
display:block;
box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* Liste */

.blog-article ul{
padding-left:20px;
margin:15px 0;
}

.blog-article li{
margin-bottom:8px;
color:#333;
}

/* Sidebar sabit şık */

.blog-sidebar{
position:sticky;
top:120px;
}

/* Mobil */

@media(max-width:900px){

.blog-article{
padding:30px 20px;
}

.article-img{
height:200px;
}

.blog-sidebar{
position:static;
}

}

