*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#f8fafc;
color:#222;
}

/* ================= Hero ================= */

.blog-hero{

background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("../assets/images/blog/blog1.jpg");

background-size:cover;
background-position:center;

padding:120px 0;

text-align:center;

color:#fff;

}

.blog-hero h1{

font-size:48px;

margin-bottom:15px;

}

.blog-hero p{

font-size:18px;

max-width:700px;

margin:auto;

line-height:1.7;

}

/* ================= Search ================= */

.blog-search{

padding:50px 0;

background:#fff;

}

.search-wrapper{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.search-wrapper input{

flex:1;

padding:16px 20px;

border:1px solid #ddd;

border-radius:12px;

font-size:16px;

outline:none;

}

.search-wrapper input:focus{

border-color:#0F766E;

}

.search-wrapper select{

padding:16px;

border:1px solid #ddd;

border-radius:12px;

min-width:220px;

outline:none;

}

/* ================= Blog Grid ================= */

.blogs-section{

padding:70px 0;

}

.blogs-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

gap:30px;

}

/* ================= Card ================= */

.blog-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.blog-card:hover{

transform:translateY(-8px);

}

.blog-card img{

width:100%;

height:240px;

object-fit:cover;

}

/* ================= Content ================= */

.blog-content{

padding:25px;

}

.blog-category{

display:inline-block;

padding:6px 12px;

background:#E6FFFA;

color:#0F766E;

border-radius:20px;

font-size:13px;

font-weight:600;

margin-bottom:15px;

}

.blog-content h3{

font-size:24px;

margin-bottom:15px;

line-height:1.4;

}

.blog-content p{

color:#555;

line-height:1.8;

margin-bottom:20px;

}

/* ================= Meta ================= */

.blog-meta{

display:flex;

flex-wrap:wrap;

gap:15px;

font-size:14px;

color:#777;

margin-bottom:20px;

}

/* ================= Button ================= */

.read-btn{

display:inline-flex;

align-items:center;

gap:8px;

padding:12px 20px;

background:#0F766E;

color:#fff;

text-decoration:none;

border-radius:10px;

transition:.3s;

}

.read-btn:hover{

background:#0b5e58;

}

/* ================= Empty ================= */

.no-blogs{

text-align:center;

padding:80px 20px;

font-size:22px;

color:#777;

}

/* ================= Responsive ================= */

@media(max-width:768px){

.blog-hero{

padding:90px 20px;

}

.blog-hero h1{

font-size:34px;

}

.search-wrapper{

flex-direction:column;

}

.blogs-grid{

grid-template-columns:1fr;

}

.blog-card img{

height:220px;

}

}