.institutional-page {
    display: grid;
    gap: var(--store-space-5);
    margin-inline: auto;
    max-width: none;
    width: 100%;
}

.institutional-page--wide {
    max-width: none;
}

.institutional-header {
    background: transparent;
    border-bottom: 1px solid var(--store-border);
    border-radius: 0;
    color: var(--store-text);
    padding: clamp(4px, 1.4vw, 14px) 0 clamp(16px, 2vw, 24px);
}

.institutional-header__eyebrow {
    color: var(--store-accent);
    display: block;
    font-size: .8125rem;
    font-weight: 850;
    margin-bottom: var(--store-space-2);
    text-transform: uppercase;
}

.institutional-header h1 {
    color: var(--store-text);
    font-size: clamp(2.35rem, 4.4vw, 4.8rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

.institutional-header p {
    color: var(--store-text-muted);
    font-size: 1rem;
    margin: var(--store-space-3) 0 0;
    max-width: 720px;
}

.institutional-header small {
    color: var(--store-text-muted);
    display: block;
    margin-top: var(--store-space-2);
}

.institutional-content {
    color: var(--store-color-text);
    font-size: 1rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.institutional-page > .institutional-content {
    background: var(--store-color-surface);
    border: 1px solid var(--store-color-border);
    border-radius: var(--store-radius-lg);
    padding: clamp(var(--store-space-5), 4vw, var(--store-space-6));
}

.institutional-content h2,
.institutional-content h3,
.institutional-content h4,
.institutional-content h5 {
    color: var(--store-color-text);
    font-weight: 700;
    line-height: 1.25;
    margin: var(--store-space-6) 0 var(--store-space-3);
}

.institutional-content h2 { font-size: 1.4rem; }
.institutional-content h3,
.institutional-content h4,
.institutional-content h5 { font-size: 1.1rem; }

.institutional-content p,
.institutional-content ul,
.institutional-content ol,
.institutional-content table {
    margin-bottom: var(--store-space-4);
}

.institutional-content a {
    color: var(--store-color-text);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.institutional-content img {
    height: auto;
    max-width: 100%;
}

.institutional-content table {
    min-width: 620px;
}

.institutional-table-scroll {
    overflow-x: auto;
    width: 100%;
}

.institutional-empty {
    background: var(--store-color-surface-muted);
    border: 1px solid var(--store-color-border);
    border-radius: var(--store-radius-lg);
    color: var(--store-color-text-muted);
    padding: var(--store-space-5);
}

.institutional-contact-grid {
    display: grid;
    gap: clamp(var(--store-space-5), 4vw, var(--store-space-8));
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
}

.institutional-card {
    background: var(--store-color-surface);
    border: 1px solid var(--store-color-border);
    border-radius: var(--store-radius-lg);
    box-shadow: var(--store-shadow-sm);
    padding: clamp(var(--store-space-5), 4vw, var(--store-space-6));
}

.institutional-card h2 {
    font-size: 1.15rem;
    font-weight: 900;
    margin: 0 0 var(--store-space-4);
}

.institutional-card .form-control,
.institutional-card .form-select,
.institutional-card textarea {
    background: var(--store-surface-soft);
    border-color: var(--store-border);
    border-radius: var(--store-radius-md);
    min-height: 48px;
}

.institutional-card .form-control:focus,
.institutional-card .form-select:focus,
.institutional-card textarea:focus {
    border-color: var(--store-primary);
    box-shadow: 0 0 0 .2rem rgba(17, 24, 39, .12);
}

.institutional-card .btn {
    background: var(--store-primary);
    border-color: var(--store-primary);
    border-radius: var(--store-radius-pill);
    color: #fff;
    font-weight: 900;
    min-height: 46px;
    padding-inline: var(--store-space-5);
}

.institutional-card .btn:hover,
.institutional-card .btn:focus {
    background: var(--store-accent);
    border-color: var(--store-accent);
    color: #fff;
}

.institutional-form-actions {
    align-items: center;
    display: flex;
    gap: var(--store-space-3);
    justify-content: flex-start;
}

.institutional-muted-list {
    color: var(--store-color-text-muted);
    display: grid;
    gap: var(--store-space-2);
    margin: 0;
    padding: 0;
}

.institutional-muted-list li {
    list-style: none;
}

@media (max-width: 767.98px) {
    .institutional-page {
        gap: var(--store-space-4);
    }

    .institutional-contact-grid {
        grid-template-columns: 1fr;
    }

    .institutional-card {
        padding: var(--store-space-4);
    }

    .institutional-content {
        padding: var(--store-space-5);
    }

    .institutional-form-actions {
        align-items: stretch;
        flex-direction: column;
    }
}
