/* ======================================================
   ByteBarta Professional Blog Template
   style.css
====================================================== */

/* ===============================
Theme Color
=============================== */

:root{
    --primary:#2563eb;
    --secondary:#1e40af;
    --dark:#111827;
    --light:#ffffff;
    --body:#f5f7fb;
    --text:#444;
    --border:#e5e7eb;
    --shadow:0 10px 25px rgba(0,0,0,.08);
    --radius:12px;
}

/* ===============================
Reset
=============================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Hind Siliguri',sans-serif;
    background:var(--body);
    color:var(--text);
    line-height:1.8;
}

img{
    width:100%;
    max-width:100%;
    display:block;
}
.hero img,
.banner img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

/* ===============================
Header
=============================== */

.header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

/* ===============================
Logo
=============================== */

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-size:28px;
    font-weight:bold;
    color:#0f172a;
}

.logo img{
    width:100px;
    height:50px;
    object-fit:contain;
}

.logo i{
    margin-right:8px;
}

/* ===============================
Menu
=============================== */

#menu{
    display:flex;
    gap:20px;
    align-items:center;
    transition:.3s;
}

#menu a{
    padding:10px 14px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

#menu a:hover,
#menu a.active{
    background:var(--primary);
    color:#fff;
}

#menu-btn{
    display:none;
    background:var(--primary);
    color:#fff;
    border:none;
    padding:10px 15px;
    border-radius:8px;
    font-size:20px;
    cursor:pointer;
}

/* ===============================
Section Title
=============================== */

.title{
    font-size:32px;
    margin:40px 0 20px;
    color:var(--dark);
    border-left:6px solid var(--primary);
    padding-left:15px;
}

/* ===============================
Hero
=============================== */

.hero{
    padding:40px 20px 40px;
    background:linear-gradient(135deg,#2563eb,#0f172a);
    color:#fff;
    text-align:center;
}

.hero h1{
    font-size:45px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    max-width:750px;
    margin:auto;
    opacity:.9;
}

/* ===============================
Search Box
=============================== */

.search-box{
    margin-top:35px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    position:relative;
}

.search-box input{
    width:500px;
    max-width:100%;
    padding:15px;
    border:none;
    outline:none;
    border-radius:10px;
    font-size:17px;
}

.search-box button{
    padding:15px 25px;
    background:#ff9800;
    color:#fff;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:17px;
    font-weight:bold;
    transition:.3s;
}

.search-box button:hover{
    background:#e68900;
}

/* ===============================
Google Suggestion
=============================== */

#suggestions{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    display:none;
    z-index:999;
    overflow:hidden;
}

#suggestions div{
    padding:12px 15px;
    cursor:pointer;
    border-bottom:1px solid #eee;
}

#suggestions div:hover{
    background:#2563eb;
    color:#fff;
}

/* ===============================
Ad Box
=============================== */

.ads{
    margin:40px auto;
}

.ad-box{
    width:92%;
    max-width:1200px;
    margin:auto;
    padding:25px;
    background:#fff;
    text-align:center;
    border:2px dashed #bbb;
    border-radius:15px;
    box-shadow:var(--shadow);
}

/* ===============================
Post Grid
=============================== */

.post-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:25px;
}

/* ===============================
Card
=============================== */

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:auto;
    display:block;
    transition:.4s;
}

.card:hover img{
    transform:scale(1.05);
}

.card h3{
    padding:15px;
    font-size:22px;
    color:#111827;
}

.card p{
    padding:0 15px 15px;
    color:#555;
}

.card a{
    display:inline-block;
    margin:0 15px 20px;
    padding:10px 18px;
    background:#2563eb;
    color:#fff;
    border-radius:8px;
    font-weight:bold;
}

.card a:hover{
    background:#1e40af;
}

/* ===============================
Category
=============================== */

.category{
    display:inline-block;
    margin:15px;
    padding:6px 12px;
    border-radius:50px;
    font-size:14px;
    font-weight:bold;
    color:#fff;
}

.tech{background:#2563eb;}
.sports{background:#16a34a;}
.income{background:#ea580c;}
.blog{background:#9333ea;}


/* ======================================================
   Footer
====================================================== */

footer{
    margin-top:60px;
    background:#0f172a;
    color:#fff;
    padding:50px 20px;
    text-align:center;
}

footer h2{
    margin-bottom:15px;
    font-size:30px;
}

footer p{
    margin:10px 0;
}

footer a{
    color:#fff;
    margin:0 10px;
    transition:.3s;
}

footer a:hover{
    color:#60a5fa;
}

/* ======================================================
Back To Top
====================================================== */

#topBtn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    display:none;
    box-shadow:0 10px 20px rgba(0,0,0,.20);
    transition:.3s;
}

#topBtn:hover{
    background:#1e40af;
    transform:translateY(-5px);
}

/* ======================================================
Scrollbar
====================================================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#2563eb;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#ddd;
}

/* ======================================================
Banner
====================================================== */

.tech-banner,
.sports-banner,
.income-banner,
.blog-banner{
    width:100%;
    margin:25px 0 35px;
}

.tech-banner img,
.sports-banner img,
.income-banner img,
.blog-banner img{
    width:100%;
    max-width:1200px;
    height:auto;
    display:block;
    margin:auto;
    border-radius:15px;
    object-fit:contain;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

/* ======================================================
Company Advertisement
====================================================== */

.company-ad{
    display:block;
    width:100%;
    max-width:1200px;
    margin:35px auto;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    transition:.3s;
}

.company-ad img{
    width:100%;
    height:auto;
    display:block;
}

.company-ad:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}


/* ==========================
Featured News
========================== */

.featured-news{
    max-width:1200px;
    width:92%;
    margin:30px auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
}

.featured-main{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.featured-main img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.featured-content{
    padding:20px;
}

.featured-content h2{
    font-size:30px;
    margin:15px 0;
    line-height:1.4;
}

.featured-content p{
    font-size:17px;
    color:#555;
}

.featured-side{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.side-news{
    display:flex;
    gap:15px;
    background:#fff;
    padding:12px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    align-items:center;
}

.side-news img{
    width:120px;
    height:80px;
    object-fit:cover;
    border-radius:10px;
}

.side-news h4{
    font-size:17px;
    line-height:1.4;
}

.badge{
    display:inline-block;
    padding:5px 12px;
    border-radius:20px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    margin-bottom:8px;
}

/* Mobile Responsive */

@media(max-width:768px){

.featured-news{
    grid-template-columns:1fr;
}

.featured-main img{
    height:auto;
}

.side-news{
    flex-direction:column;
    align-items:flex-start;
}

.side-news img{
    width:100%;
    height:auto;
}

}





/* ======================================================
Responsive
====================================================== */

@media(max-width:991px){

.hero{
    padding:60px 20px;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:17px;
}

#menu{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    flex-direction:column;
    padding:20px;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

#menu.active{
    display:flex;
}

#menu-btn{
    display:block;
}

.header .container{
    position:relative;
}

}

@media(max-width:768px){

.post-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:576px){

.logo{
    font-size:22px;
}

.hero{
    padding:50px 15px;
}

.hero h1{
    font-size:28px;
}

.hero p{
    font-size:15px;
}

.search-box{
    flex-direction:column;
}

.search-box input,
.search-box button{
    width:100%;
}

.title{
    font-size:25px;
}

.card h3{
    font-size:20px;
}

.card p{
    font-size:15px;
}

.ad-box{
    padding:20px;
    font-size:16px;
}

footer{
    padding:40px 15px;
}

footer h2{
    font-size:24px;
}

}

/* ======================================================
   Professional Post Page
====================================================== */

.post-page{
    max-width:900px;
    width:95%;
    margin:40px auto;
    padding:30px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* Featured Image */

.post-image{
   /* width:100%;
    height:350px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:20px;*/
	
	width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Category */

.post-page .category{
    display:inline-block;
    margin:0 0 15px;
    padding:7px 15px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

/* Title */

.post-page h1{
    font-size:38px;
    line-height:1.3;
    color:#111827;
    margin:15px 0;
}

/* Sub Title */

.post-page h2{
    margin:30px 0 15px;
    font-size:28px;
    color:#2563eb;
}

/* Paragraph */

.post-page p{
    font-size:18px;
    line-height:1.9;
    color:#444;
    margin-bottom:18px;
}

/* Meta */

.post-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin:20px 0 25px;
}

.post-meta span{
    background:#f3f4f6;
    color:#666;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
}

/* Related Posts */

.related-posts{
    margin-top:30px;
}

.related-posts h3{
    margin-bottom:15px;
    color:#111827;
}

.related-posts ul{
    padding-left:20px;
}

.related-posts li{
    margin:10px 0;
}

.related-posts a{
    color:#2563eb;
    text-decoration:none;
}

.related-posts a:hover{
    text-decoration:underline;
}

/* Share */

.share{
    margin-top:35px;
}

.share a{
    display:inline-block;
    margin-right:15px;
    font-size:26px;
    color:#2563eb;
    transition:.3s;
}

.share a:hover{
    color:#111827;
}

/* ===============================
Tablet
=============================== */

@media(max-width:768px){

.post-page{
    width:96%;
    padding:20px;
}

.post-image{
    height:350px;
}

.post-page h1{
    font-size:30px;
}

.post-page h2{
    font-size:24px;
}

.post-page p{
    font-size:17px;
}

}

/* ===============================
Mobile
=============================== */

@media(max-width:576px){

.post-page{
    width:100%;
    padding:15px;
    border-radius:10px;
}

.post-image{
    height:auto;
    object-fit:contain;
    border-radius:10px;
}

.post-page h1{
    font-size:26px;
}

.post-page h2{
    font-size:22px;
}

.post-page p{
    font-size:16px;
}

.post-meta{
    gap:8px;
}

.post-meta span{
    font-size:13px;
    padding:6px 10px;
}

.share a{
    font-size:22px;
    margin-right:12px;
}

}

/* ======================================================
   Contact Page
====================================================== */

.contact-form{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    font-family:inherit;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#2563eb;
}

.contact-form textarea{
    min-height:160px;
    resize:vertical;
}

.contact-form button{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:10px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#1d4ed8;
}

/* ======================================================
About Page
====================================================== */

.about-page,
.privacy-page{
    max-width:900px;
    margin:40px auto;
    padding:30px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.about-page h1,
.privacy-page h1{
    font-size:36px;
    color:#2563eb;
    margin-bottom:20px;
}

.about-page h2,
.privacy-page h2{
    margin-top:30px;
    margin-bottom:15px;
    color:#111827;
}

.about-page p,
.privacy-page p{
    font-size:17px;
    line-height:1.9;
    color:#444;
}

.about-page ul{
    padding-left:22px;
    margin-top:15px;
}

.about-page li{
    margin:10px 0;
}

.privacy-page hr{
    margin:25px 0;
    border:none;
    border-top:1px solid #ddd;
}

/* ======================================================
Active Menu
====================================================== */

nav a.active,
#menu a.active{
    background:#2563eb;
    color:#fff;
}

/* ======================================================
Desktop
====================================================== */

@media(min-width:1200px){

.hero h1{
    font-size:52px;
}

.container{
    max-width:1200px;
}

}

/* ======================================================
Tablet
====================================================== */

@media(max-width:768px){

.about-page,
.privacy-page{
    padding:20px;
}

.about-page h1,
.privacy-page h1{
    font-size:30px;
}

}

/* ======================================================
Mobile
====================================================== */

@media(max-width:576px){

.about-page,
.privacy-page{
    width:100%;
    padding:15px;
    border-radius:10px;
}

.about-page h1,
.privacy-page h1{
    font-size:26px;
}

.about-page h2,
.privacy-page h2{
    font-size:22px;
}

.about-page p,
.privacy-page p{
    font-size:16px;
}

.contact-form input,
.contact-form textarea,
.contact-form button{
    font-size:15px;
}

}



/* ==========================
Breaking News
========================== */

.breaking-news{
    display:flex;
    align-items:center;
    background:#ffffff;
    border-top:2px solid #2563eb;
    border-bottom:2px solid #2563eb;
    overflow:hidden;
    margin-bottom:25px;
}

.breaking-title{
    background:#2563eb;
    color:#fff;
    padding:12px 20px;
    font-weight:700;
    white-space:nowrap;
}

.breaking-news marquee{
    padding:12px;
    color:#111827;
    font-weight:600;
}

@media(max-width:576px){

.breaking-title{
    padding:10px 14px;
    font-size:14px;
}

.breaking-news marquee{
    font-size:14px;
}

}

/* ==========================
   Trending Posts
========================== */

.trending-posts{
    padding:35px 0;
    background:#f8fafc;
}

.trending-posts h2{
    font-size:30px;
    /*color:#2563eb;*/
    margin-bottom:25px;
    font-weight:700;
    text-align:center;
}

.trending-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.trending-list a{
    display:block;
    background:#fff;
    padding:18px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    color:#111827;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.trending-list a:hover{
    background:#2563eb;
    color:#fff;
    transform:translateY(-5px);
}

@media(max-width:768px){

.trending-posts{
    padding:25px 0;
}

.trending-posts h2{
    font-size:24px;
}

.trending-list{
    grid-template-columns:1fr;
}

.trending-list a{
    font-size:15px;
}

}



/* ===========================
   Professional Footer
=========================== */

.footer{
    background:#0f172a;
    color:#fff;
    margin-top:60px;
    padding:50px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:35px;
}

.footer-box h3{
    font-size:20px;
    margin-bottom:15px;
    color:#ffffff;
}

.footer-logo{
    width:170px;
    margin-bottom:15px;
}

.footer-box p{
    color:#cbd5e1;
    line-height:1.8;
    font-size:15px;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin:10px 0;
}

.footer-box ul li a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#3b82f6;
    padding-left:6px;
}

.social-links{
    display:flex;
    gap:12px;
    margin:18px 0;
}

.social-links a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.social-links a:hover{
    background:#2563eb;
    transform:translateY(-3px);
}

.footer-email{
    font-size:14px;
    color:#cbd5e1;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:35px;
    padding-top:20px;
    text-align:center;
    color:#cbd5e1;
    font-size:14px;
}

/* Mobile */

@media(max-width:768px){

.footer{
    text-align:center;
}

.footer-logo{
    margin:auto;
    display:block;
    margin-bottom:15px;
}

.social-links{
    justify-content:center;
}

}

/* Sports Page */

.sports-breaking{
margin:30px 0;
}

.breaking-card{

background:#e53935;

color:#fff;

padding:18px;

border-radius:10px;

font-size:18px;

font-weight:600;

}

.sports-card{

background:#fff;

padding:25px;

margin:25px 0;

border-radius:12px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.sports-card h2{

margin-bottom:20px;

color:#0d6efd;

}

.sports-card ul{

padding-left:20px;

line-height:2;

}

.sports-card li{

margin-bottom:8px;

}

.match-box{

display:flex;

flex-direction:column;

gap:15px;

}

.match-item{

display:flex;

justify-content:space-between;

align-items:center;

padding:15px;

background:#f7f9fc;

border-radius:10px;

}

.match-item h3{

margin:0;

color:#0d6efd;

}

.match-item p{

margin:5px 0 0;

}

.match-item span{

font-weight:bold;

color:#e53935;

}

.result-item{

padding:15px;

margin-bottom:12px;

background:#eef7ee;

border-left:5px solid #28a745;

border-radius:8px;

}

.player-card{

display:flex;

align-items:center;

gap:20px;

}

.player-card img{

width:90px;

height:90px;

border-radius:50%;

object-fit:cover;

}

.player-card h3{

margin-bottom:8px;

}

@media(max-width:768px){

.player-card{

flex-direction:column;

text-align:center;

}

}

.share{

text-align:center;

margin-top:15px;

}

.share a{

display:inline-block;

margin:8px;

padding:10px 18px;

background:#0d6efd;

color:#fff;

text-decoration:none;

border-radius:8px;

transition:.3s;

}

.share a:hover{

background:#084298;

}

.sports-card{
transition:.3s ease;
}

.sports-card:hover{
transform:translateY(-5px);
box-shadow:0 12px 30px rgba(0,0,0,.12);
}


/* ===== Contact Page ===== */

.contact-hero{
background:linear-gradient(135deg,#0d6efd,#2563eb);
color:#fff;
padding:70px 20px;
text-align:center;
}

.contact-hero h1{
font-size:40px;
margin-bottom:15px;
}

.contact-hero p{
max-width:700px;
margin:auto;
font-size:18px;
line-height:1.8;
}

.contact-section{
padding:60px 0;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.contact-form-box,
.contact-info-box{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:14px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:8px;
font-size:16px;
}

.contact-form button{
width:100%;
padding:14px;
background:#0d6efd;
color:#fff;
border:none;
border-radius:8px;
font-size:17px;
cursor:pointer;
transition:.3s;
}

.contact-form button:hover{
background:#0b5ed7;
}

.info-item{
display:flex;
align-items:flex-start;
gap:15px;
margin-bottom:20px;
}

.info-item i{
font-size:22px;
color:#0d6efd;
margin-top:5px;
}

.map{
margin:40px 0;
border-radius:15px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

.contact-hero h1{
font-size:30px;
}

.contact-hero{
padding:50px 15px;
}

}

/* Breadcrumb */

.breadcrumb{
margin:15px 0;
font-size:14px;
color:#666;
}

.breadcrumb a{
color:#0d6efd;
text-decoration:none;
font-weight:500;
}

.breadcrumb a:hover{
text-decoration:underline;
}

.breadcrumb span{
margin:0 5px;
}

/* ==========================
Author Box
========================== */

.author-box{
display:flex;
align-items:center;
gap:20px;
padding:20px;
margin:30px 0;
background:#f8f9fa;
border-left:5px solid #0d6efd;
border-radius:10px;
}

.author-logo{
width:70px;
height:70px;
border-radius:50%;
object-fit:contain;
background:#fff;
padding:8px;
}

.author-content h3{
margin-bottom:8px;
font-size:20px;
}

.author-content p{
margin:0;
line-height:1.7;
color:#555;
}

@media(max-width:768px){

.author-box{
flex-direction:column;
text-align:center;
}

}

/* ==========================
Previous Next Navigation
========================== */

.post-navigation{

display:flex;

justify-content:space-between;

gap:20px;

margin:30px 0;

}

.post-navigation a{

flex:1;

padding:20px;

background:#f8f9fa;

border-radius:10px;

text-decoration:none;

color:#222;

font-weight:600;

transition:.3s;

}

.post-navigation a:hover{

background:#0d6efd;

color:#fff;

}

@media(max-width:768px){

.post-navigation{

flex-direction:column;

}

}

/* Related Articles */

.related-posts{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin:30px 0;
}

.related-card{
background:#fff;
border:1px solid #ddd;
border-radius:10px;
overflow:hidden;
text-decoration:none;
color:#222;
transition:.3s;
}

.related-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 20px rgba(0,0,0,.1);
}

.related-card img{
width:100%;
height:170px;
object-fit:cover;
}

.related-card h3{
padding:15px 15px 5px;
font-size:18px;
}

.related-card p{
padding:0 15px 15px;
font-size:14px;
color:#666;
}

/* Newsletter */

.newsletter-box{

background:#0d6efd;

padding:35px;

border-radius:12px;

text-align:center;

color:#fff;

margin:35px 0;

}

.newsletter-box h2{

margin-bottom:10px;

}

.newsletter-box p{

margin-bottom:20px;

}

.newsletter-box form{

display:flex;

gap:10px;

justify-content:center;

flex-wrap:wrap;

}

.newsletter-box input{

padding:12px;

width:320px;

max-width:100%;

border:none;

border-radius:6px;

}

.newsletter-box button{

padding:12px 25px;

border:none;

border-radius:6px;

background:#222;

color:#fff;

cursor:pointer;

}

.newsletter-box button:hover{

background:#000;

}

/* ==========================
AdSense Box
========================== */

.ads-box{

margin:35px 0;

padding:30px;

text-align:center;

background:#f8f9fa;

border:2px dashed #dcdcdc;

border-radius:10px;

}

.ads-box p{

margin:0;

font-size:15px;

color:#666;

font-weight:600;

letter-spacing:1px;

text-transform:uppercase;

}

/* ==========================
Reading Progress Bar
========================== */

#reading-progress{

position:fixed;

top:0;

left:0;

width:0%;

height:4px;

background:#ff3b30;

z-index:99999;

transition:width .1s linear;

}

/* ==========================
Article Tags
========================== */

.article-tags{
margin:35px 0;
}

.article-tags h3{
margin-bottom:15px;
}

.article-tags a{
display:inline-block;
padding:8px 15px;
margin:6px;
background:#f1f3f5;
border-radius:30px;
text-decoration:none;
color:#333;
font-size:14px;
transition:.3s;
}

.article-tags a:hover{
background:#0d6efd;
color:#fff;
}

/* Floating Share */

.floating-share{
position:fixed;
right:20px;
bottom:90px;
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

.floating-share a{
width:48px;
height:48px;
background:#0d6efd;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
font-size:20px;
box-shadow:0 5px 15px rgba(0,0,0,.2);
transition:.3s;
}

.floating-share a:hover{
transform:scale(1.1);
}