.organization-page {
    --org-blue: #073b78;
    --org-blue-bright: #0a58b0;
    --org-red: #ed1c24;
    --org-ink: #17324d;
    --org-muted: #5f748b;
    --org-soft: #f3f7fc;
    --org-line: #cad9e9;
    color: var(--org-ink);
}

.organization-page * {
    box-sizing: border-box;
}

.organization-page .page-hero p {
    max-width: 890px;
}

.org-introduction {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(420px, 1.2fr);
    gap: 34px;
    align-items: center;
    margin: 18px 0;
    padding: 28px 30px;
    background: #fff;
    border: 1px solid var(--org-line);
    border-top: 4px solid var(--org-blue);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(7, 59, 120, .08);
}

.org-introduction h2,
.org-section-heading h2,
.org-closing h2 {
    margin: .35rem 0 0;
    color: var(--org-ink);
    line-height: 1.12;
}

.org-introduction p {
    margin: 0;
    color: var(--org-muted);
    line-height: 1.72;
    text-align: justify;
    text-wrap: pretty;
}

.org-section {
    margin-top: 22px;
}

.org-section-heading {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 14px;
    padding: 0 4px;
}

.org-section-number {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    background: var(--org-blue);
    font-weight: 900;
    letter-spacing: .08em;
    box-shadow: 0 8px 18px rgba(7, 59, 120, .18);
}

.org-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.org-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 24px 26px 25px;
    background: #fff;
    border: 1px solid var(--org-line);
    border-top: 4px solid var(--org-blue);
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(7, 59, 120, .08);
}

.org-card::after {
    content: "";
    position: absolute;
    top: -58px;
    right: -58px;
    width: 130px;
    height: 130px;
    border: 18px solid rgba(10, 88, 176, .055);
    border-radius: 50%;
    pointer-events: none;
}

.org-card-featured {
    grid-column: 1 / -1;
    border-top-color: var(--org-red);
    background: linear-gradient(135deg, #fff 0%, #fff 66%, #f3f7fc 100%);
}

.org-card-topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    min-height: 30px;
}

.org-card-index {
    color: var(--org-blue-bright);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.org-card-mark {
    display: grid;
    place-items: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border: 2px solid #e7eef7;
    border-radius: 50%;
    color: var(--org-blue);
    font-size: .67rem;
    font-weight: 900;
}

.org-card h3 {
    margin: .55rem 0 .55rem;
    color: var(--org-ink);
    font-size: clamp(1.22rem, 1.7vw, 1.55rem);
    line-height: 1.15;
    text-wrap: balance;
}

.org-card p {
    margin: 0 0 14px;
    color: var(--org-muted);
    line-height: 1.66;
    text-align: justify;
    text-wrap: pretty;
}

.org-card ul {
    display: grid;
    gap: 9px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.org-card li {
    position: relative;
    padding-left: 20px;
    color: var(--org-ink);
    line-height: 1.48;
}

.org-card li::before {
    content: "";
    position: absolute;
    top: .54em;
    left: 1px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--org-red);
    box-shadow: 0 0 0 4px rgba(237, 28, 36, .08);
}

.org-responsibility-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 34px;
    margin-top: 3px;
}

.org-responsibility-columns ul {
    margin-top: 0;
    align-content: start;
}

.org-profession-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.org-profession-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    color: var(--org-blue);
    background: var(--org-soft);
    border: 1px solid #d9e5f2;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.2;
}

.org-closing {
    position: relative;
    overflow: hidden;
    margin-top: 22px;
    padding: 30px clamp(24px, 5vw, 58px);
    color: #fff;
    background: linear-gradient(120deg, #062f64 0%, #0a4a9e 68%, #1268c3 100%);
    border-bottom: 5px solid var(--org-red);
    border-radius: 20px;
    box-shadow: 0 15px 34px rgba(7, 59, 120, .18);
}

.org-closing::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -45px;
    width: 210px;
    height: 210px;
    border: 28px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.org-closing h2 {
    position: relative;
    z-index: 1;
    max-width: 820px;
    color: #fff;
}

.org-closing p {
    position: relative;
    z-index: 1;
    max-width: 950px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .88);
    line-height: 1.68;
    text-align: justify;
}

@media (max-width: 980px) {
    .org-introduction {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .org-card {
        padding: 22px;
    }

    .org-responsibility-columns {
        grid-template-columns: 1fr;
        gap: 9px;
    }
}

@media (max-width: 700px) {
    .org-introduction {
        padding: 22px 20px;
        border-radius: 17px;
    }

    .org-introduction p,
    .org-card p,
    .org-closing p {
        text-align: left;
    }

    .org-section-heading {
        align-items: flex-start;
    }

    .org-section-number {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        font-size: .8rem;
    }

    .org-card-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .org-card-featured {
        grid-column: auto;
    }

    .org-card {
        padding: 20px 18px 21px;
        border-radius: 17px;
    }

    .org-card h3 {
        font-size: 1.24rem;
    }

    .org-card li {
        padding-left: 18px;
    }

    .org-profession-list span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .org-closing {
        padding: 25px 21px;
        border-radius: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .organization-page *,
    .organization-page *::before,
    .organization-page *::after {
        scroll-behavior: auto !important;
    }
}
