body{
    background:#f3f4f7;
}

.articles-page{
    min-height:100vh;
}

h1{
	background:none !Important;
	
}
h2{
	background:none !Important;
border:None !Important;
color:black !important;	
}

.articles-hero{
    position:relative;

    min-height:460px;

    display:flex;
    align-items:flex-end;

    overflow:hidden;

    background:
        linear-gradient(135deg,
            #111 0%,
            #171717 100%);
}

.articles-hero-overlay{
    position:absolute;
    inset:0;

    background:
        radial-gradient(circle at top right,
            rgba(255,40,110,.28),
            transparent 30%);
}

.articles-hero-content{
    position:relative;
    z-index:2;

    width:100%;
    max-width:1100px;

    margin:0 auto;

    padding:70px 24px;
}

.articles-kicker{
    display:inline-flex;

    padding:8px 14px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;

    margin-bottom:22px;
}

.articles-hero h1{
    max-width:780px;

    margin:0 0 22px;

    color:#fff;

    font-size:64px;
    line-height:1;
    letter-spacing:-0.04em;

    font-weight:800;
}

.articles-hero p{
    max-width:700px;

    color:rgba(255,255,255,.78);

    font-size:20px;
    line-height:1.7;
}

.articles-powered{
    display:flex;
    align-items:center;
    gap:16px;

    margin-top:32px;
}

.articles-powered span{
    color:rgba(255,255,255,.55);

    font-size:11px;
    letter-spacing:.08em;
    font-weight:700;
}

.articles-powered img{
    width:150px;

    filter:brightness(0) invert(1);
}

.articles-grid{
    max-width:1100px;

    margin:20px auto 0;

    padding:0 24px 60px;

    position:relative;
    z-index:5;

    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:28px;
}

.article-card{
    display:flex;
    flex-direction:column;

    overflow:hidden;

    border-radius:28px;

    background:#fff;

    text-decoration:none;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.article-card:hover{
    transform:translateY(-6px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.12);
}

.article-image{
    aspect-ratio:16/9;

    overflow:hidden;
}

.article-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .4s ease;
}

.article-card:hover img{
    transform:scale(1.04);
}

.article-body{
    padding:24px;
}

.article-meta{
    margin-bottom:14px;

    color:#999;

    font-size:13px;
    font-weight:600;
}

.article-body h2{
    margin:0 0 14px;

    color:#111;

    font-size:28px;
    line-height:1.15;
    letter-spacing:-0.03em;
}

.article-body p{
    margin:0;

    color:#666;

    line-height:1.7;
}

.article-footer{
    margin-top:22px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    color:#ff286e;

    font-weight:700;
}

.articles-empty{
    padding:80px 24px;
    text-align:center;
}

@media(max-width:768px){

    .articles-hero{
        min-height:380px;
    }

    .articles-hero h1{
        font-size:42px;
    }

    .articles-hero p{
        font-size:16px;
    }

    .articles-grid{
        margin-top:-40px;
		        margin-top: 40px;
    }

}