.news-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .news-hero-inner {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .news-hero-inner--single {
        align-items: flex-start;
    }
}

.news-hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00aeef;
    margin-bottom: 0.75rem;
}

.news-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #004a99;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .news-hero-title {
        font-size: 2.5rem;
    }
}

.news-hero-desc {
    color: #64748b;
    line-height: 1.7;
    max-width: 36rem;
}

.news-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    shrink: 0;
}

.news-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.news-action-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #004a99, #0077cc, #00aeef);
}

.news-action-btn--primary:hover:not(:disabled) {
    box-shadow: 0 8px 24px rgba(0, 174, 239, 0.25);
}

.news-action-btn--outline {
    color: #004a99;
    background: #fff;
    border: 1px solid rgba(0, 74, 153, 0.2);
}

.news-action-btn--outline:hover:not(:disabled) {
    border-color: #00aeef;
    color: #00aeef;
}

.news-action-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.news-content {
    background: #e8f6fc;
}

.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.news-filter-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    text-decoration: none;
}

.news-filter-btn:hover {
    border-color: #00aeef;
    color: #004a99;
    background: #f0f9fc;
}

.news-filter-btn.is-active {
    background: linear-gradient(135deg, #004a99, #0077cc);
    border-color: #0077cc;
    color: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #d4eaf5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.news-card:hover {
    box-shadow: 0 12px 32px rgba(0, 74, 153, 0.1);
    transform: translateY(-2px);
}

.news-card-image-wrap {
    position: relative;
}

.news-card--pdf .news-card-image-link,
.news-card--file-pdf .news-card-image-link {
    background: linear-gradient(135deg, #fff5f5 0%, #fdeaea 50%, #f8ecec 100%);
}

.news-card--file-word .news-card-image-link {
    background: linear-gradient(135deg, #eef4fc 0%, #dce8f8 50%, #c9daf0 100%);
}

.news-card--pdf .news-card-image:not(.news-card-image--hidden),
.news-card--file-pdf .news-card-image:not(.news-card-image--hidden) {
    opacity: 0.72;
}

.news-card-image-link--placeholder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-image-link--pdf {
    background: linear-gradient(135deg, #fff5f5 0%, #fdeaea 50%, #f8ecec 100%);
}

.news-card-image-link--word {
    background: linear-gradient(135deg, #eef4fc 0%, #dce8f8 50%, #c9daf0 100%);
}

.news-card-file-badge {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.96);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 14px rgba(0, 74, 153, 0.12);
}

.news-card-file-badge--pdf {
    color: #c0392b;
    border: 1px solid rgba(192, 57, 43, 0.15);
}

.news-card-file-badge--word {
    color: #2b579a;
    border: 1px solid rgba(43, 87, 154, 0.18);
}

.news-card-file-badge-icon {
    flex-shrink: 0;
}

.news-card-file-watermark {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.news-card-file-watermark--pdf {
    color: rgba(192, 57, 43, 0.22);
}

.news-card-file-watermark--word {
    color: rgba(43, 87, 154, 0.24);
}

.news-card-file-watermark--large {
    position: static;
    inset: auto;
}

.news-card-file-watermark--large.news-card-file-watermark--pdf {
    color: rgba(192, 57, 43, 0.55);
}

.news-card-file-watermark--large.news-card-file-watermark--word {
    color: rgba(43, 87, 154, 0.58);
}

.news-card-file-watermark-icon {
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.8));
}


.news-card-pdf-badge {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.96);
    color: #c0392b;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 14px rgba(0, 74, 153, 0.12);
    border: 1px solid rgba(192, 57, 43, 0.15);
}

.news-card-pdf-badge-icon {
    flex-shrink: 0;
}

.news-card-pdf-watermark {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    color: rgba(192, 57, 43, 0.18);
}

.news-card-pdf-watermark-icon {
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.8));
}

.news-card-image-link {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0f9fc;
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image {
    transform: scale(1.03);
}

.news-card-refresh {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.92);
    color: #004a99;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 74, 153, 0.15);
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.news-card:hover .news-card-refresh,
.news-card-refresh:focus-visible {
    opacity: 1;
}

.news-card-refresh:hover {
    background: #fff;
    color: #00aeef;
}

.news-card-refresh:disabled {
    opacity: 0.6;
    cursor: wait;
}

.news-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.625rem;
}

.news-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
}

.news-card-category {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #00aeef;
    background: #e8f6fc;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
}

.news-card-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.news-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.45;
    color: #004a99;
}

.news-card-title a {
    color: inherit;
    text-decoration: none;
}

.news-card-title a:hover {
    color: #00aeef;
}

.news-card-excerpt {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.5rem;
    margin-top: auto;
}

.news-card-footer-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-card-edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border: none;
    border-radius: 0.5rem;
    background: #f0f9fc;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.news-card-edit:hover {
    background: #e8f6fc;
    color: #00aeef;
}

.news-textarea {
    resize: vertical;
    min-height: 5rem;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #00aeef;
    text-decoration: none;
}

.news-card-link:hover {
    color: #004a99;
}

.news-card-author {
    font-size: 0.75rem;
    color: #94a3b8;
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1.5rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px dashed #d4eaf5;
    color: #64748b;
}

.news-empty-sub {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.news-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.news-modal[hidden] {
    display: none;
}

.news-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 60, 0.45);
    backdrop-filter: blur(4px);
}

.news-modal-panel {
    position: relative;
    width: 100%;
    max-width: 28rem;
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 24px 48px rgba(0, 74, 153, 0.15);
    max-height: 90vh;
    overflow-y: auto;
}

.news-modal-panel--success {
    text-align: center;
}

.news-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f0f9fc;
    border-radius: 0.5rem;
    color: #64748b;
    cursor: pointer;
    transition: background 0.2s;
}

.news-modal-close:hover {
    background: #e8f6fc;
    color: #004a99;
}

.news-modal-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #004a99;
    margin-bottom: 0.5rem;
    padding-right: 2rem;
}

.news-modal-desc {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #004a99;
    margin-bottom: 0.375rem;
}

.news-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d4eaf5;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    color: #004a99;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.news-input:focus {
    outline: none;
    border-color: #00aeef;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.news-select {
    appearance: auto;
    cursor: pointer;
}

.news-submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #004a99, #0077cc);
    cursor: pointer;
    transition: box-shadow 0.2s, opacity 0.2s;
    margin-top: 0.25rem;
}

.news-submit-btn:hover:not(:disabled) {
    box-shadow: 0 8px 20px rgba(0, 119, 204, 0.3);
}

.news-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.news-form-status {
    font-size: 0.875rem;
    text-align: center;
    min-height: 1.25rem;
}

.news-form-status.is-error {
    color: #dc2626;
}

.news-form-status.is-success {
    color: #059669;
}

.news-privacy {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.5;
    text-align: center;
}

.news-success-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #004a99, #00aeef);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.news-modal-open {
    overflow: hidden;
}

.research-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #d4eaf5;
}

.research-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.research-placeholder-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #004a99;
    margin-bottom: 0.75rem;
}

.research-placeholder-desc {
    color: #64748b;
    line-height: 1.7;
    max-width: 32rem;
    margin: 0 auto;
}

.research-placeholder-link {
    color: #00aeef;
    font-weight: 600;
    text-decoration: none;
}

.news-pagination {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.news-pagination-summary {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

.news-pagination-summary strong {
    color: #004a99;
    font-weight: 600;
}

.news-pagination-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.625rem;
    border: 1px solid #d4eaf5;
    background: #fff;
    color: #004a99;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

a.news-pagination-btn:hover {
    background: #f0f9fc;
    border-color: #00aeef;
    color: #0077cc;
}

.news-pagination-btn.is-current {
    background: linear-gradient(135deg, #004a99, #0077cc);
    border-color: #0077cc;
    color: #fff;
    cursor: default;
}

.news-pagination-btn.is-disabled {
    color: #94a3b8;
    background: #f8fafc;
    border-color: #e2e8f0;
    cursor: not-allowed;
}

.news-pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 2.5rem;
    color: #94a3b8;
    font-weight: 600;
}

.research-placeholder-link:hover {
    color: #004a99;
    text-decoration: underline;
}
