body{

margin:0;

padding:0;

background:#050505;

color:#fff;

font-family:Arial,sans-serif;

overflow-x:hidden;
}

a{

text-decoration:none;

color:inherit;
}

| /*                                                                         |
| -------------------------------------------------------------------------- |
| Homepage Layout                                                            |
| -------------------------------------------------------------------------- |
| */                                                                         |

.homepage{

max-width:1600px;

margin:40px auto;

padding:0 20px;

display:grid;

grid-template-columns:
2fr 1fr;

gap:30px;

box-sizing:border-box;
}

| /*                                                                         |
| -------------------------------------------------------------------------- |
| Featured Article                                                           |
| -------------------------------------------------------------------------- |
| */                                                                         |

.featured-article{

position:relative;

display:block;

border-radius:24px;

overflow:hidden;

background:#111;

border:
1px solid rgba(255,255,255,.06);

transition:.25s;
}

.featured-article:hover{

transform:translateY(-4px);

border-color:
rgba(255,0,0,.4);
}

.featured-image{

width:100%;

height:520px;

object-fit:cover;

display:block;
}

.featured-overlay{

position:absolute;

left:0;

bottom:0;

width:100%;

padding:50px;

box-sizing:border-box;

background:
linear-gradient(
180deg,
transparent,
rgba(0,0,0,.95)
);
}

.featured-tag{

display:inline-block;

background:#c8102e;

padding:10px 16px;

border-radius:10px;

font-size:.8rem;

font-weight:bold;

margin-bottom:20px;
}

.featured-overlay h1{

font-size:3rem;

margin:0 0 20px;
}

.featured-overlay p{

max-width:700px;

line-height:1.7;

color:#ccc;

font-size:1.05rem;
}

.read-more{

display:inline-block;

margin-top:25px;

background:#c8102e;

padding:14px 22px;

border-radius:12px;

font-weight:bold;
}

| /*                                                                         |
| -------------------------------------------------------------------------- |
| Article Grid                                                               |
| -------------------------------------------------------------------------- |
| */                                                                         |

.articles-grid{

margin-top:30px;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:25px;
}

.article-card{

background:
linear-gradient(
180deg,
#161616,
#0f0f0f
);

border-radius:20px;

overflow:hidden;

border:
1px solid rgba(255,255,255,.05);

transition:.25s;
}

.article-card:hover{

transform:translateY(-4px);

border-color:
rgba(255,0,0,.4);
}

.article-thumb{

width:100%;

height:220px;

object-fit:cover;

display:block;
}

.article-content{

padding:22px;
}

.article-content h3{

margin-top:0;

font-size:1.2rem;

line-height:1.4;
}

.article-date{

color:#888;

margin-top:15px;

font-size:.9rem;
}

| /*                                                                         |
| -------------------------------------------------------------------------- |
| Sidebar                                                                    |
| -------------------------------------------------------------------------- |
| */                                                                         |

.sidebar{

display:flex;

flex-direction:column;

gap:25px;
}

.widget{

background:
linear-gradient(
180deg,
#161616,
#0d0d0d
);

border-radius:22px;

padding:30px;

border:
1px solid rgba(255,255,255,.05);
}

.widget h2{

margin-top:0;

font-size:1.3rem;

margin-bottom:20px;
}

| /*                                                                         |
| -------------------------------------------------------------------------- |
| Responsive                                                                 |
| -------------------------------------------------------------------------- |
| */                                                                         |

@media(max-width:1100px){

.homepage{

grid-template-columns:1fr;
}

.featured-image{

height:400px;
}

}

@media(max-width:700px){

.featured-overlay{

padding:30px;
}

.featured-overlay h1{

font-size:2rem;
}

.featured-image{

height:320px;
}

}
