* {

margin:0;
padding:0;
box-sizing:border-box;

font-family:'Poppins',sans-serif;

}



.container {

max-width:1250px;

margin:auto;

padding-left:40px;
padding-right:40px;

}



/* HEADER */

.header {

background:white;

box-shadow:0 2px 10px rgba(0,0,0,0.1);

position:fixed;

width:100%;

z-index:1000;

}

.header-flex {

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 0;

}

.nav a {

margin-left:25px;

text-decoration:none;

color:#333;

font-weight:500;

}

.nav .active {

color:#2b7cff;

border-bottom:2px solid #2b7cff;

}



/* HERO */

.blog-hero {

height:300px;

background:
linear-gradient(
90deg,
rgba(43,124,255,0.75),
rgba(99,193,50,0.75)
),
url('images/blog-banner.jpg');

background-size:cover;

background-position:center;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

color:white;

margin-top:80px;

}

.blog-hero h1 {

font-size:46px;

font-weight:700;

}



/* MAIN */

.main {

padding:80px 0;

}



.main-grid {

display:grid;

grid-template-columns:2fr 1fr;

gap:40px;

}



/* BLOG POST */

.blog-post {

margin-bottom:70px;

}



.blog-post img {

width:100%;

height:350px;

object-fit:cover;

border-radius:6px;

}



.blog-post h2 {

margin-top:20px;

font-size:28px;

}



.meta {

color:#999;

font-size:13px;

margin-top:5px;

}



.post-text {

color:#666;

margin-top:15px;

line-height:1.7;

}



.post-bottom {

display:flex;

justify-content:space-between;

align-items:center;

margin-top:20px;

}



.read-btn {

background:#2b7cff;

color:white;

padding:10px 20px;

font-size:14px;

cursor:pointer;

}



.icons span {

margin-right:10px;

color:#bbb;

}


/* SIDEBAR */

.sidebar-box {

background:white;

padding:20px;

margin-bottom:30px;

border-radius:6px;

box-shadow:0 5px 15px rgba(0,0,0,0.08);

}



.sidebar-box h3 {

margin-bottom:15px;

}



.sidebar-box ul {

list-style:none;

}



.sidebar-box li {

margin-bottom:10px;

color:#555;

cursor:pointer;

}



.sidebar-box input {

width:100%;

padding:10px;

border:1px solid #ddd;

}



.search-btn {

margin-top:10px;

background:#2b7cff;

color:white;

border:none;

padding:10px;

cursor:pointer;

}



/* VIDEO */

.video-box iframe {

width:100%;

height:350px;

border:none;

border-radius:6px;

}



/* QUOTE POST */

.quote-box {

background:
linear-gradient(
rgba(43,124,255,0.8),
rgba(99,193,50,0.8)
),
url('images/prague.jpg');

background-size:cover;

background-position:center;

padding:80px 40px;

color:white;

font-size:22px;

font-weight:500;

text-align:center;

border-radius:6px;

margin-bottom:20px;

}

/* FOOTER */

.footer {

background:#f7f7f7;

padding:60px 0;

margin-top:60px;

}

.footer-grid {

display:grid;

grid-template-columns:repeat(6,1fr);

gap:30px;

width:90%;

margin:auto;

font-size:14px;

}

.footer h4 {

margin-bottom:15px;

}

.footer ul {

list-style:none;

}

.footer li {

margin-bottom:8px;

color:#777;

}



.footer input {

width:100%;

padding:10px;

margin-top:10px;

margin-bottom:10px;

border:1px solid #ddd;

}



.subscribe-btn {

background:#2b7cff;

color:white;

border:none;

padding:10px 20px;

cursor:pointer;

}



.bottom-footer {

margin-top:40px;

text-align:center;

font-size:13px;

color:#777;

border-top:1px solid #ddd;

padding-top:20px;

}
