/* ==========================================================================
   INSTITUTIONAL — "Institutional Ecosystem & Sovereign Support"
   ========================================================================== */

.institutional {
    background-color: #10151d;
}

.institutional__heading {
    font-size: 30px;
    font-weight: 800;
    color: var(--medal-white);
    margin: 0 0 30px;
}

.institutional__grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.institutional__left {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.institutional__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.institutional__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inst-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inst-column__header {
    background-color: #eef0f2;
    color: #10151d;
    font-weight: 800;
    font-size: 17px;
    padding: 12px 18px;
    border-left: 4px solid var(--medal-red);
}

.inst-column__header--right {
    margin-bottom: 4px;
}

/* --- Карточки --- */

.inst-card {
    background-color: #262d38;
    border: 1px solid var(--medal-border);
    border-left: 4px solid var(--medal-red);
    padding: 18px 20px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.inst-card--core {
    align-items: center;
}

.inst-card--tall {
    flex: 1;
    align-items: flex-start;
    flex-direction: column;
}

.inst-card__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.inst-card--tall .inst-card__icon {
    width: 100%;
    height: 100px;
    background-size: contain;
    margin-bottom: 8px;
}

.inst-card__body h3 {
    color: var(--medal-white);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
}

.inst-card__title--lg {
    font-size: 26px !important;
}

.inst-card__body p {
    color: var(--medal-gray-light);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .institutional__grid {
        flex-direction: column;
    }

    .institutional__columns {
        grid-template-columns: 1fr;
    }

    .inst-card {
        flex-direction: column;
        align-items: flex-start;
    }
}
