/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

body {
    background:#f5f7fb;
    font-family:"Inter", sans-serif;
    color:#1e293b;
}

/* =====================================
   HERO BANNER
===================================== */
.blog-hero-wrap {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.blog-hero-overlay {
    position: absolute;
    left: 40px;
    bottom: 40px;
    color: white;
}

.blog-hero-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
}

.blog-hero-meta {
    font-size: 16px;
    opacity: 0.9;
}

/* =====================================
   BLOG MAIN CONTENT
===================================== */
.blog-main-container {
    max-width: 850px;
    margin: 0 auto;
}

.blog-content-box {
    background:#ffffff;
    padding: 40px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    border:1px solid #e2e8f0;
}

/* Body typography */
.blog-content {
    font-size: 19px;
    line-height: 1.85;
}

.blog-content p {
    margin: 20px 0;
}

.blog-content img {
    width:100%;
    border-radius:12px;
    margin:20px 0;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

/* Headings */
.blog-content h2 {
    margin-top:32px;
    font-weight:700;
    color:#0f172a;
}
.blog-content h3 {
    margin-top:25px;
    font-weight:600;
}

/* Blockquote */
.blog-content blockquote {
    border-left: 4px solid #0ea5e9;
    background:#f0f9ff;
    padding:16px 20px;
    margin:25px 0;
    font-style:italic;
    border-radius:10px;
}

/* =====================================
   SHARE SECTION
===================================== */
.share-title {
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
}

.share-icons a,
.share-icons button {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:45px;
    height:45px;
    border-radius:50%;
    margin-right:10px;
    font-size:20px;
    color:white;
    border:none;
}

.share-icons .wa { background:#25d366; }
.share-icons .li { background:#0077b5; }
.share-icons .fb { background:#1877f2; }
.share-icons .tw { background:#1da1f2; }
.share-icons .copy { background:#334155; cursor:pointer; }

.share-icons a:hover,
.share-icons button:hover {
    opacity:0.85;
}

/* Responsive */
@media(max-width:768px) {
    .blog-hero-wrap { height:260px; }
    .blog-hero-title { font-size:28px; }
    .blog-content-box { padding:25px; }
}
