/* Portal público — tokens e componentes alinhados à landing VOLARO (Inter, verdes/azuis). */
:root {
    --green-500: #10B981;
    --green-600: #059669;
    --blue-500: #3B82F6;
    --blue-600: #2563EB;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --white: #FFFFFF;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --radius: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.portal-body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px);
}

.portal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.portal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 88px;
}
.portal-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--gray-900);
    flex-shrink: 0;
}
.portal-logo__img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}
.portal-search {
    position: relative;
    flex: 1 1 200px;
    max-width: 320px;
    min-width: 0;
    margin: 0 auto 0 12px;
}
.portal-search__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.portal-search__form {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}
.portal-search__input {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    padding: 8px 12px;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--gray-800);
    background: transparent;
}
.portal-search__input:focus {
    outline: none;
}
.portal-search__form:focus-within {
    border-color: var(--green-500);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.15);
}
.portal-search__submit {
    flex: 0 0 auto;
    border: none;
    border-left: 1px solid var(--gray-200);
    background: var(--gray-50);
    color: var(--gray-700);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 8px 14px;
    cursor: pointer;
    font-family: inherit;
}
.portal-search__submit:hover {
    background: var(--green-50, #ecfdf5);
    color: var(--green-700);
}
.portal-search__suggest {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: 360px;
    overflow-y: auto;
}
.portal-search__suggest-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}
.portal-search__suggest-list a {
    display: block;
    padding: 10px 14px;
    color: var(--gray-800);
    text-decoration: none;
}
.portal-search__suggest-list a:hover {
    background: var(--gray-50);
}
.portal-search__suggest-title {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
}
.portal-search__suggest-excerpt {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 2px;
}
.portal-search__suggest-badge {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--green-700);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.portal-mobile-panel__search {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}
.portal-mobile-panel__search .portal-search {
    max-width: none;
    margin: 0;
}
.portal-search-page__box {
    max-width: 520px;
    margin-bottom: 28px;
}
.portal-search-page__box .portal-search {
    max-width: none;
    margin: 0;
}
.portal-search-page__hint,
.portal-search-page__empty {
    color: var(--gray-600);
    font-size: 0.9375rem;
}
.portal-search-page__summary {
    margin: 0 0 24px;
    color: var(--gray-600);
}
.portal-search-group {
    margin-bottom: 32px;
}
.portal-search-group__title {
    font-size: 1.125rem;
    margin: 0 0 12px;
    color: var(--gray-900);
}
.portal-search-results {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
}
.portal-search-results__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
}
.portal-search-results__item:last-child {
    border-bottom: none;
}
.portal-search-results__link {
    flex: 1 1 auto;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}
.portal-search-results__link:hover .portal-search-results__title {
    color: var(--green-600);
}
.portal-search-results__title {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
}
.portal-search-results__excerpt {
    display: block;
    margin-top: 4px;
    font-size: 0.875rem;
    color: var(--gray-500);
}
.portal-search-results__badge {
    flex: 0 0 auto;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--green-700);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.portal-nav-links {
    display: flex;
    align-items: center;
    gap: 8px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.portal-nav-links--desktop { }
.portal-nav-links a,
.portal-nav-trigger {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    padding: 6px 0;
    border: none;
    background: none;
}
.portal-nav-links a:hover,
.portal-nav-trigger:hover { color: var(--green-600); }
.portal-nav-links a.is-active { color: var(--green-600); font-weight: 600; }

.portal-nav-item { position: relative; }
.portal-nav-item--dropdown:hover .portal-dropdown,
.portal-nav-item--dropdown:focus-within .portal-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.portal-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 20;
}
.portal-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--gray-700);
}
.portal-dropdown a:hover {
    background: var(--gray-50);
    color: var(--green-600);
}

.portal-mobile-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
}
.portal-mobile-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 1px;
}

.portal-mobile-panel {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 16px;
}
.portal-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.portal-mobile-nav li { margin: 0; }
.portal-mobile-nav a {
    display: block;
    padding: 10px 0;
    color: var(--gray-700);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}
.portal-mobile-nav__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    padding: 16px 0 8px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .portal-nav-links--desktop { display: none; }
    .portal-mobile-btn { display: flex; }
    .portal-nav .portal-search { display: none; }
}

@media (min-width: 1025px) {
    .portal-mobile-panel { display: none !important; }
}

.portal-main {
    padding-top: 100px;
    min-height: 60vh;
}

.portal-flash-stack {
    position: fixed;
    top: 96px;
    right: 16px;
    z-index: 1100;
    max-width: min(400px, 90vw);
}
.portal-flash {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 8px;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}
.portal-flash--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.portal-flash--warn { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.portal-flash--ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }

.portal-hero {
    padding: 48px 0 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(59, 130, 246, 0.08) 100%);
}
.portal-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--gray-900);
    line-height: 1.15;
}
.portal-hero .gradient-text {
    background: linear-gradient(135deg, var(--green-500) 0%, var(--blue-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.portal-hero:not(.portal-hero--slider) p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 640px;
}
.portal-hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Banner rotativo (slider) no hero do portal */
.portal-hero--slider {
    padding: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(59, 130, 246, 0.14) 100%);
}
.portal-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 5;
    min-height: 280px;
    max-height: 520px;
}
@supports not (aspect-ratio: 16 / 5) {
    .portal-slider { height: clamp(280px, 38vw, 520px); }
}
.portal-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}
.portal-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.portal-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}
.portal-slide__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.portal-slide__link {
    position: absolute;
    inset: 0;
    display: block;
}
.portal-slide__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: clamp(24px, 5vw, 56px) 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.72) 0%, rgba(17, 24, 39, 0.45) 45%, rgba(17, 24, 39, 0) 80%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.15) 0%, rgba(17, 24, 39, 0.55) 100%);
}
.portal-slide__content {
    max-width: 720px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
.portal-slide__title {
    margin: 0 0 12px;
    font-size: clamp(1.4rem, 3.2vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}
/* Subtítulo: cor branca (evita .portal-hero p cinza) + sombra forte só neste texto */
.portal-hero--slider .portal-slide__subtitle {
    margin: 0;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    max-width: 640px;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 2px 14px rgba(0, 0, 0, 0.8),
        0 0 32px rgba(0, 0, 0, 0.4);
}
.portal-slide__actions {
    margin: 22px 0 0;
}
.portal-slide__actions .btn {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
    .portal-slide__overlay {
        background:
            linear-gradient(180deg, rgba(17, 24, 39, 0.35) 0%, rgba(17, 24, 39, 0.7) 100%);
        align-items: flex-end;
        padding-bottom: clamp(32px, 8vw, 56px);
    }
}

.portal-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-800);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: background-color 0.15s ease, transform 0.15s ease;
}
.portal-slider__nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.05);
}
.portal-slider__nav--prev { left: clamp(8px, 2vw, 20px); }
.portal-slider__nav--next { right: clamp(8px, 2vw, 20px); }

.portal-slider__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.portal-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease;
}
.portal-slider__dot:hover { background: rgba(255, 255, 255, 0.7); }
.portal-slider__dot.is-active {
    background: var(--white);
    transform: scale(1.2);
}

@media (max-width: 640px) {
    .portal-slider { aspect-ratio: 4 / 3; min-height: 220px; }
    .portal-slider__nav { width: 36px; height: 36px; }
}

.portal-section {
    padding: 48px 0;
}
.portal-section h2 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    color: var(--gray-900);
}
.portal-section__lead {
    margin: 0 0 24px;
    color: var(--gray-500);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
    background: linear-gradient(135deg, var(--green-500) 0%, var(--green-600) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
}
.btn-outline:hover {
    border-color: var(--green-500);
    color: var(--green-600);
}

.portal-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.portal-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.portal-card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--gray-900); }
.portal-card p { margin: 0 0 12px; font-size: 0.9rem; color: var(--gray-600); }
.portal-card a { font-weight: 600; color: var(--green-600); }

.portal-quick-services__title {
    margin: 0 0 12px;
    font-size: 1.125rem;
    color: var(--gray-900);
}

.portal-transparency-docs__title {
    margin: 2rem 0 0.5rem;
    font-size: 1.125rem;
    color: var(--gray-900);
}

.portal-card-grid--services {
    margin-bottom: 1.5rem;
}

.portal-card--service {
    position: relative;
    border-color: rgba(16, 185, 129, 0.45);
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.08) 0%, rgba(59, 130, 246, 0.06) 100%);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.12);
}

.portal-card--service__badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--green-700);
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50px;
}

.portal-card--service h3 {
    color: var(--green-800);
}

.portal-card--service a {
    color: var(--green-700);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.portal-card-grid--news {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    align-items: stretch;
}
.portal-card--news {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.portal-card--news > a.portal-card--news__figure {
    color: inherit;
    font-weight: normal;
    line-height: 0;
    text-decoration: none;
}
.portal-card--news__figure {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}
.portal-card--news__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}
.portal-card--news__figure--empty {
    aspect-ratio: 16 / 10;
    min-height: 140px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(59, 130, 246, 0.14) 100%);
    border-bottom: 1px solid var(--gray-200);
}
.portal-card--news__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.portal-card--news__title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--gray-900);
}
.portal-card--news .portal-card--news__title a {
    color: var(--gray-900);
    font-weight: 700;
    text-decoration: none;
}
.portal-card--news .portal-card--news__title a:hover {
    color: var(--green-600);
}
.portal-card--news__date {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    flex: 1;
}
.portal-card--news__cta {
    align-self: flex-start;
    margin-top: auto;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--green-600);
    text-decoration: none;
}
.portal-card--news__cta:hover {
    color: var(--green-700);
    text-decoration: underline;
}
.portal-section__actions {
    margin-top: 1.75rem;
    text-align: center;
}
.portal-section--news-preview .portal-section__actions {
    text-align: left;
}
@media (max-width: 520px) {
    .portal-card-grid--news {
        grid-template-columns: 1fr;
    }
}

.portal-trans-item {
    scroll-margin-top: 88px;
}

.portal-doc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.portal-doc-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}
.portal-doc-list__period {
    flex: 0 0 auto;
    min-width: 8rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
}
.portal-doc-list a {
    color: var(--blue-600);
    font-weight: 500;
}

.portal-breadcrumb {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.portal-breadcrumb a { color: var(--gray-600); }

.portal-content-html {
    max-width: 800px;
}
.portal-content-html p:first-child { margin-top: 0; }

.portal-tree {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.portal-tree ul {
    list-style: none;
    margin: 8px 0 0;
    padding-left: 20px;
    border-left: 2px solid var(--gray-200);
}
.portal-tree li {
    margin: 6px 0;
    color: var(--gray-800);
}
.portal-tree .code {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-left: 6px;
}

.portal-form {
    max-width: 560px;
}
.portal-form label {
    display: block;
    font-weight: 600;
    margin: 16px 0 6px;
    color: var(--gray-800);
}
.portal-form input[type="text"],
.portal-form input[type="email"],
.portal-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}
.portal-form textarea { min-height: 140px; resize: vertical; }
.portal-form button { margin-top: 20px; }

.portal-footer {
    margin-top: 64px;
    padding: 40px 0;
    background: var(--gray-900);
    color: var(--gray-100);
}
.portal-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}
.portal-footer__note {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: var(--gray-300);
}
.portal-footer__links a {
    color: var(--green-400);
    font-weight: 500;
}
.portal-footer__links a:hover { text-decoration: underline; }

.portal-trans-item {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}
.portal-trans-item h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    color: var(--gray-900);
}

.portal-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.portal-news-list > li {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}
.portal-news-list--thumb .portal-news-list__item {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}
.portal-news-list__thumb {
    flex-shrink: 0;
    display: block;
    width: 120px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}
.portal-news-list__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.portal-news-list__text {
    flex: 1;
    min-width: min(100%, 12rem);
}
.portal-news-list a {
    font-weight: 600;
    color: var(--gray-900);
}
.portal-news-list a:hover { color: var(--green-600); }
.portal-news-meta { font-size: 0.85rem; color: var(--gray-500); margin-top: 4px; }

.portal-article img.hero {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 24px;
}
