/* === Sekcja Nowości — styl spójny z problem-section === */
.whats-new-section {
    background-color: var(--brand-dark);
}

.whats-new-section h2 {
    color: #fff;
    font-size: 1.75rem;
}

/* === Pojedynczy box nowości (wzorowany na .problem-box) === */
.news-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.news-box:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: var(--brand-primary);
}

/* === Ikona (wzorowana na .problem-icon) === */
.news-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(17, 102, 45, 0.15);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.news-box:hover .news-icon {
    background-color: var(--brand-primary);
    color: #fff;
}

/* === Tagi === */
.news-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* === Responsywność === */
@media (max-width: 767.98px) {
    .news-box {
        padding: 1.5rem;
    }

    .whats-new-section h2 {
        font-size: 1.5rem;
    }
}
