.headline {
    width: 98%;
    margin: 0 auto;
}

.headline .headline-item {
    display: inline-block;
    width: 22.6%;
    height: auto;
    vertical-align: top;
    margin: 26px 13px;
}

.hl-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.hl-img-wrap {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #111;
}

.hl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hl-card:hover .hl-img {
    transform: scale(1.06);
}

.hl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.72) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 20px 20px;
    pointer-events: none;
}

.hl-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 5px;
    display: block;
}

.hl-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Full-card link */
.hl-full-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

@media (max-width: 991px) {
    .headline .headline-item { width: 45%; margin: 10px 1.5%; }
    .hl-title { font-size: 15px; }
}

@media (max-width: 576px) {
    .headline { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 10px; width: 100%; box-sizing: border-box; }
    .headline .headline-item { display: block; width: calc(50% - 5px); margin: 0; }
    .hl-img-wrap { aspect-ratio: 1/1; }
    .hl-label { font-size: 9px; }
    .hl-title { font-size: 13px; letter-spacing: 0.04em; }
    .hl-overlay { padding: 10px 12px 12px; }
}
