.org-page {
    width: 100%;
    background: #f5f8fc;
}


.org-container {
    width: calc(100% - 40px);
    max-width: 1400px;

    margin: 0 auto;
}

.org-hero {
    padding:
        52px 0 45px;

    background:
        linear-gradient(
            135deg,
            #082b58,
            #0b3d75
        );

    color: #ffffff;
}


.org-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #72c2f2;

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.7px;
}


.org-hero h1 {
    margin: 0;

    color: #ffffff;

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    font-size: 38px;
    font-weight: 800;

    line-height: 1.2;
}


.org-hero p {
    max-width: 650px;

    margin:
        12px 0 0;

    color:
        rgba(255,255,255,.82);

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.6;
}

.org-section {
    padding:
        50px 0 65px;
}

.org-card {
    overflow: hidden;

    border:
        1px solid #dce5ee;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 8px 28px
        rgba(11, 50, 100, .07);
}

.org-card-header {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr) auto;

    align-items: center;

    gap: 18px;

    padding:
        20px 22px;

    border-bottom:
        1px solid #e1e8ef;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f9fbfd
        );
}

.org-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eaf3fb;

    color: #0b3264;

    font-size: 25px;
}

.org-card-title > span {
    display: block;

    margin-bottom: 3px;

    color: #0072bc;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;
}


.org-card-title h2 {
    margin: 0;

    color: #0b3264;

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    font-size: 23px;
    font-weight: 800;
}

.org-actions {
    display: flex;

    align-items: center;
}


.org-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 40px;

    padding:
        8px 14px;

    border-radius: 8px;

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition: .2s ease;
}


.org-btn-primary {
    background: #0b3264;

    color: #ffffff;
}


.org-btn-primary:hover {
    background: #0072bc;

    color: #ffffff;
}

.org-image-wrapper {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        35px;

    overflow: auto;

    background:
        #ffffff;
}


.org-image {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 1100px;

    margin: 0 auto;

    object-fit: contain;

    border-radius: 8px;

    background: #ffffff;
}

@media (max-width: 991.98px) {

    .org-hero {
        padding:
            42px 0 38px;
    }


    .org-hero h1 {
        font-size: 31px;
    }


    .org-section {
        padding:
            40px 0 50px;
    }


    .org-card-header {
        grid-template-columns:
            auto minmax(0, 1fr);

        gap: 14px;
    }


    .org-actions {
        grid-column:
            1 / -1;

        padding-left: 69px;
    }


    .org-image-wrapper {
        padding:
            25px;
    }

}

@media (max-width: 575.98px) {

    .org-container {
        width:
            calc(100% - 26px);
    }


    .org-hero {
        padding:
            32px 0;
    }


    .org-hero h1 {
        font-size: 27px;
    }


    .org-hero p {
        font-size: 12.5px;
    }


    .org-section {
        padding:
            28px 0 38px;
    }


    .org-card {
        border-radius: 11px;
    }


    .org-card-header {
        grid-template-columns:
            42px minmax(0, 1fr);

        gap: 10px;

        padding:
            15px;
    }


    .org-icon {
        width: 42px;
        height: 42px;

        border-radius: 9px;

        font-size: 19px;
    }


    .org-card-title h2 {
        font-size: 18px;
    }


    .org-actions {
        grid-column:
            1 / -1;

        width: 100%;

        padding-left: 0;

        margin-top: 5px;
    }


    .org-btn {
        width: 100%;

        padding:
            9px 10px;

        font-size: 10.5px;
    }


    .org-image-wrapper {
        padding:
            10px;

        overflow-x: auto;
    }


    .org-image {
        width: 100%;

        max-width: 100%;

        height: auto;

        max-height: none;

        object-fit: contain;
    }

}