.active-headline {
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.headline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.headline-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.headline-title {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
    line-height: 1.3;
}
.headline-title:hover {
    color: #4e73df;
}

.headline-numbers {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.headline-number {
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}
.headline-number:hover {
    background: #4e73df;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .active-headline { height: 220px; }
}
@media (max-width: 576px) {
    .headline-title { font-size: 1rem; }
    .headline-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}