.iubello-news {
    background: var(--color-blanco);
    padding: 4rem 0;
}
@media (min-width: 768px) {
    .iubello-news { padding: 6rem 0; }
}
.news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.news__inner {
    max-width: 72rem;
    margin: 0 auto;
}
.news__header {
    text-align: center;
    margin-bottom: 3rem;
}
.news__badge {
    display: inline-block;
    border-radius: 9999px;
    background: linear-gradient(to right, rgba(25,83,135,0.1), rgba(137,196,226,0.1));
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}
.news__badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-azul);
}
.news__title {
    margin: 0 0 1rem;
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--color-azul), var(--color-azul), var(--color-azul-celeste));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (min-width: 640px) {
    .news__title { font-size: 3rem; }
}
@media (min-width: 768px) {
    .news__title { font-size: 3.75rem; }
}
.news__subtitle {
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
    color: rgba(15,15,15,0.7);
}
@media (min-width: 640px) {
    .news__subtitle { font-size: 1.25rem; }
}

.news__grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .news__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .news__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Empty state */
.news__empty {
    border-radius: 1rem;
    border: 2px dashed rgba(25,83,135,0.3);
    background: linear-gradient(135deg, rgba(25,83,135,0.05), rgba(137,196,226,0.05), transparent);
    padding: 3rem;
    text-align: center;
}
@media (min-width: 768px) {
    .news__empty { padding: 4rem; }
}
.news__empty-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.news__empty-circle {
    display: flex;
    width: 6rem;
    height: 6rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-azul), var(--color-azul-celeste));
    box-shadow: 0 4px 12px rgba(25,83,135,0.3);
}
.news__empty-svg {
    width: 3rem;
    height: 3rem;
    color: var(--color-blanco);
}
.news__empty-title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-azul);
}
@media (min-width: 640px) {
    .news__empty-title { font-size: 1.875rem; }
}
.news__empty-text {
    max-width: 28rem;
    margin: 0 auto;
    font-size: 1rem;
    color: rgba(15,15,15,0.7);
}
@media (min-width: 640px) {
    .news__empty-text { font-size: 1.125rem; }
}
