@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');

body{
font-family:'Sora',sans-serif;
margin:0;
background:#f7f8fb;
}

.thl-wrapper{
background:#f7f8fb;
}

.topbar{
background:#16192b;
padding:10px;
text-align:center;
color:#8ea1c7;
font-size:12px;
}

.topbar b{
color:#7ed321;
}

.dot{
width:8px;
height:8px;
background:#7ed321;
display:inline-block;
border-radius:50%;
margin-right:8px;
}

.navbar{
background:#fff;
border-bottom:3px solid #7ed321;
position:sticky;
top:0;
z-index:999;
}

.nav-inner{
max-width:1200px;
margin:auto;
padding:18px 20px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo h2{
margin:0;
font-size:28px;
}

.logo span{
color:#7ed321;
}

.logo p{
margin:0;
font-size:11px;
color:#777;
}

.nav-links{
display:flex;
gap:20px;
list-style:none;
}

.nav-links li a{
text-decoration:none;
color:#222;
font-weight:600;
}

.nav-links .active a{
color:#7ed321;
}

.subscribe-btn{
background:#7ed321;
padding:12px 22px;
border-radius:10px;
text-decoration:none;
color:#111;
font-weight:700;
}

.hero{
background:#151a30;
padding:100px 20px;
text-align:center;
position:relative;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
inset:0;
background:radial-gradient(circle at center,rgba(126,211,33,.18),transparent 60%);
}

.hero-tag{
display:inline-block;
padding:10px 18px;
border:1px solid rgba(126,211,33,.3);
border-radius:30px;
color:#7ed321;
font-size:12px;
margin-bottom:25px;
position:relative;
z-index:2;
}

.hero h1{
font-size:70px;
color:#fff;
line-height:1.1;
margin:0;
position:relative;
z-index:2;
}

.hero h1 span{
color:#7ed321;
}

.hero p{
color:#98a2bd;
max-width:650px;
margin:25px auto;
font-size:20px;
line-height:1.7;
position:relative;
z-index:2;
}

.search-box{
position:relative;
z-index:2;
}

.search-box input{
width:500px;
max-width:90%;
padding:16px;
border-radius:12px;
border:none;
}

.filters{
max-width:1200px;
margin:30px auto;
display:flex;
gap:12px;
flex-wrap:wrap;
padding:0 20px;
}

.pill{
padding:10px 18px;
background:#fff;
border-radius:30px;
border:1px solid #dfe3eb;
font-weight:600;
cursor:pointer;
}

.pill.active{
background:#16192b;
color:#fff;
}

.main-layout{
max-width:1200px;
margin:auto;
padding:20px;
display:grid;
grid-template-columns:2fr 340px;
gap:30px;
}

.featured-post{
background:#fff;
border-radius:20px;
overflow:hidden;
display:grid;
grid-template-columns:1fr 1fr;
margin-bottom:30px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.featured-image{
position:relative;
}

.featured-image img{
width:100%;
height:100%;
object-fit:cover;
}

.featured-badge{
position:absolute;
top:20px;
left:20px;
background:#7ed321;
padding:8px 14px;
border-radius:30px;
font-weight:700;
}

.featured-content{
padding:40px;
}

.featured-content h2{
font-size:38px;
}

.featured-content h2 a{
text-decoration:none;
color:#111;
}

.read-btn{
display:inline-block;
margin-top:20px;
background:#7ed321;
padding:14px 22px;
border-radius:12px;
text-decoration:none;
font-weight:700;
color:#111;
}

.posts-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.post-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,.05);
transition:.3s;
}

.post-card:hover{
transform:translateY(-5px);
}

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

.post-content{
padding:25px;
}

.post-content h3{
font-size:22px;
}

.post-content h3 a{
text-decoration:none;
color:#111;
}

.card-footer{
padding:20px 25px;
border-top:1px solid #eee;
}

.card-footer a{
text-decoration:none;
font-weight:700;
color:#111;
}

.sidebar{
display:flex;
flex-direction:column;
gap:20px;
}

.newsletter{
background:#16192b;
color:#fff;
padding:30px;
border-radius:20px;
}

.newsletter input{
width:100%;
padding:14px;
margin-top:15px;
border:none;
border-radius:10px;
}

.newsletter button{
width:100%;
padding:14px;
margin-top:10px;
background:#7ed321;
border:none;
border-radius:10px;
font-weight:700;
}

.sidebar-box{
background:#fff;
padding:25px;
border-radius:20px;
}

.recent-post{
display:flex;
gap:12px;
margin-bottom:15px;
}

.recent-thumb img{
width:60px;
height:60px;
border-radius:10px;
object-fit:cover;
}

.recent-text h5{
margin:0 0 5px;
}

.recent-text h5 a{
text-decoration:none;
color:#111;
}

@media(max-width:991px){

.main-layout{
grid-template-columns:1fr;
}

.featured-post{
grid-template-columns:1fr;
}

.posts-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:44px;
}

.nav-links{
display:none;
}

}


.navbar,.topbar{
display:none !important;
}

.hero{
padding-top:40px !important;
}

.hero h1{
font-size:58px !important;
line-height:1.1 !important;
}

.filters{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-bottom:30px;
}

.pill{
cursor:pointer;
transition:all .3s ease;
}

.pill.active{
background:#9FEF00 !important;
color:#000 !important;
}

.post-card{
transition:all .3s ease;
}

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

@media(max-width:768px){
.hero h1{
font-size:38px !important;
}
}
