*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#f8fafc;
color:#222;
line-height:1.8;
}

/* ================= Main ================= */

.blog-details{

padding:70px 0;

}

.blog-wrapper{

max-width:950px;

margin:auto;

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

/* ================= Hero ================= */

.hero-image{

width:100%;

height:520px;

object-fit:cover;

display:block;

}

/* ================= Content ================= */

.blog-content{

padding:45px;

}

.blog-category{

display:inline-block;

padding:8px 16px;

background:#E6FFFA;

color:#0F766E;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:20px;

}

.blog-content h1{

font-size:42px;

line-height:1.3;

margin-bottom:25px;

}

/* ================= Meta ================= */

.blog-meta{

display:flex;

flex-wrap:wrap;

gap:25px;

margin-bottom:30px;

color:#666;

font-size:15px;

}

.blog-meta span{

display:flex;

align-items:center;

gap:8px;

}

/* ================= Description ================= */

.blog-description{

font-size:20px;

color:#555;

margin-bottom:35px;

font-weight:500;

}

/* ================= Body ================= */

.blog-body{

font-size:18px;

line-height:2;

color:#333;

}

.blog-body h2,
.blog-body h3{

margin:35px 0 15px;

}

.blog-body p{

margin-bottom:22px;

}

.blog-body ul{

padding-left:22px;

margin-bottom:25px;

}

.blog-body img{

width:100%;

margin:30px 0;

border-radius:15px;

}

/* ================= Related ================= */

.related-blogs{

padding:70px 0;

}

.related-blogs h2{

text-align:center;

margin-bottom:40px;

font-size:34px;

}

.related-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

/* ================= Card ================= */

.related-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.related-card:hover{

transform:translateY(-6px);

}

.related-card img{

width:100%;

height:220px;

object-fit:cover;

}

.related-content{

padding:22px;

}

.related-content h3{

font-size:22px;

margin-bottom:12px;

}

.related-content p{

color:#666;

margin-bottom:18px;

}

.related-content a{

display:inline-block;

padding:10px 18px;

background:#0F766E;

color:#fff;

text-decoration:none;

border-radius:10px;

}

.related-content a:hover{

background:#0b5e58;

}

/* ================= Responsive ================= */

@media(max-width:768px){

.hero-image{

height:260px;

}

.blog-content{

padding:25px;

}

.blog-content h1{

font-size:30px;

}

.blog-description{

font-size:17px;

}

.blog-body{

font-size:16px;

}

.blog-meta{

gap:15px;

}

}