﻿.hn-section {
    padding: 60px 0 70px;
    background: linear-gradient(180deg,#ffffff,#f7f9ff);
}

.hn-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 16px;
}

.hn-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

    .hn-head h2 {
        font-size: 26px;
        font-weight: 900;
    }

.hn-more {
    text-decoration: none;
    color: #2b44ff;
    font-weight: 700;
}

.hn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
    gap: 22px;
}

.hn-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,.06);
    overflow: hidden;
    transition: .25s;
}

    .hn-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 26px 60px rgba(0,0,0,.12);
    }

.hn-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.hn-body {
    padding: 14px 16px 16px;
}

.hn-cat {
    font-size: 11px;
    text-transform: uppercase;
    color: #6d6d6d;
}

.hn-body h3 {
    margin: 6px 0 6px;
    font-size: 16px;
}

    .hn-body h3 a {
        text-decoration: none;
        color: #111;
    }

.hn-sub {
    color: #666;
    font-size: 13px;
    margin-bottom: 6px;
}

.hn-meta {
    font-size: 12px;
    color: #777;
}
