@if($noticia->resumen)
{{-- ── BOTONES DE ENLACE ── --}}
@if($noticia->botones && count($noticia->botones) > 0)
@php
$botonesPublicos = collect($noticia->botones)->filter(fn($b) => !empty($b['url']));
@endphp
@if($botonesPublicos->count() > 0)
{{ $noticia->resumen }}
@endif {!! $noticia->contenido !!}
@foreach($botonesPublicos as $btn)
@php
$color = $btn['color'] ?? '#1565c0';
$texto = $btn['texto'] ?? 'Ver más';
$url = $btn['url'];
// Calcular color oscuro para el hover (shadow)
@endphp
{{ $texto }}
@endforeach