.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
            linear-gradient(
                    90deg,
                    rgba(0,0,0,.75) 0%,
                    rgba(0,0,0,.45) 35%,
                    rgba(0,0,0,.15) 65%,
                    rgba(0,0,0,.05) 100%
            ),
            url("/assets/img/news/news.jpg") center/cover no-repeat;
    z-index:0;
    filter: saturate(1.05) contrast(1.05);
}

.hl-wrap{
    padding-top: 110px;
    padding-bottom: 90px;
}

.hl-head{
    max-width: 920px;
}

.hl-title{
    font-family: "Bree Serif", serif;
    font-size: clamp(32px, 3.2vw, 44px);
    letter-spacing: .01em;
    margin: 0 0 10px;
    color: #0f172a;
}

.hl-sub{
    margin: 0;
    max-width: 70ch;
    color: #475569;
    line-height: 1.55;
}

.hl-grid{
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hl-card{
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(0,0,0,.12);
    display: grid;
    grid-template-rows: 180px 1fr;
    min-height: 360px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.hl-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(0,0,0,.16);
}

.hl-media{
    background: var(--img) center/cover no-repeat;
}

.hl-body{
    padding: 16px 16px 18px;
    display: grid;
    gap: 10px;
    align-content: start;
}

.hl-meta{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hl-tag{
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .02em;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.hl-loc{
    font-size: 12px;
    color: #64748b;
}

.hl-h3{
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #0f172a;
}

.hl-p{
    margin: 0;
    color: #334155;
    line-height: 1.55;
    font-size: 14px;
}

.hl-btn{
    margin-top: auto;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #dbe3ee;
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

.hl-btn:hover{
    transform: translateY(-1px);
    background: #f8fafc;
    border-color: #cbd5e1;
}

.hl-more{
    display: flex;
    justify-content: center;
    margin-top: 26px;
    padding-bottom: 12px;
}

.hl-more-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid #dbe3ee;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
    transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.hl-more-btn:hover{
    transform: translateY(-2px);
    background: #f1f5f9;
    border-color: #cbd5e1;
    box-shadow: 0 16px 34px rgba(0,0,0,.14);
}

@media (max-width: 980px){
    .hl-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px){
    .hl-grid{ grid-template-columns: 1fr; }
    .hl-card{ grid-template-rows: 200px 1fr; }
}