.container{
max-width:1340px;
margin:auto;
padding:40px 20px;
}

/* HERO */

.article-hero{
padding:100px 20px 60px;
text-align:center;
background:#f7f7f7;
}

.blog-label{
display:inline-block;
padding:6px 14px;
border-radius:20px;
border:1px solid #ddd;
background:#fff;
font-size:13px;
}

.hero-title{
font-size:48px;
font-weight:700;
margin:20px 0;
font-family:'Orbitron';
}

.hero-subtitle{
max-width:680px;
margin:auto;
color:#666;
line-height:1.6;
}

/* HEADER */

.article-header{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:40px;
}

.article-search input{
padding:12px 16px;
border-radius:30px;
border:1px solid #ddd;
min-width:260px;
}

/* GRID */

.article-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:30px;
}

.article-card{
background:#fff;
border-radius:14px;
border:1px solid #eee;
overflow:hidden;
transition:.25s;
}

.article-card:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

/* large cards */

.article-card.large{
grid-column:span 3;
}

/* small cards */

.article-card.small{
grid-column:span 2;
}

.article-image{
display:block;
aspect-ratio:16/9;
overflow:hidden;
}

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

/* CONTENT */

.article-content{
padding:20px;
}

.article-meta{
font-size:13px;
color:#000;
margin-bottom:10px;
display:flex;
gap:10px;
}

.article-title{
font-size:18px;
margin-bottom:10px;
line-height:1.4;
font-family:'Orbitron';
}

.article-title a{
text-decoration:none;
color:#111;
}

.excerpt{
font-size:14px;
color:#000;
line-height:1.6;
margin-bottom:15px;
}

.readmore{
color:#4db3b3;
font-weight:500;
text-decoration:none;
}

/* PAGINATION */

.pagination{
margin-top:60px;
text-align:center;
font-family:'Orbitron';
}

.pagination .page-numbers{
display:inline-block;
padding:10px 14px;
margin:0 5px;
border:1px solid #ddd;
border-radius:6px;
text-decoration:none;
}

.pagination .current{
background:#4db3b3;
color:#fff;
border-color:#fff;
}



/* TABLET */

@media (max-width:1024px){

.article-grid{
grid-template-columns:repeat(2,1fr);
}

.article-card.large,
.article-card.small{
grid-column:span 1;
}

.hero-title{
font-size:36px;
}

}

/* MOBILE */

@media (max-width:768px){

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

.hero-title{
font-size:30px;
}

.article-search input{
width:100%;
}

}