.global-needs-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.global-needs-img img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}

.global-needs-img {
    border-right: 1px solid var(--border-color);
}

.global-needs-img.dir-reverse {
    border-right: none;
    border-left: 1px solid var(--border-color);
}

.global-needs-content {
    padding: var(--container-space);
    display: flex;
    flex-direction: column;
    height: 45rem;
    justify-content: space-between;
}

.global-needs-content-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.global-needs-heading {
    font-size: 4rem;
    letter-spacing: -0.08rem;
}

.global-needs-description {
    line-height: 140%;
}

.global-needs-content .hw-button {
    margin-top: 1rem;
    min-height: fit-content;
}

.global-needs-section .button-pill-icon {
    display: none;
}

.global-needs-section .button-pill.with-icon {
    padding-left: 1rem;
}

@media (max-width: 992px) {

    .global-needs-heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .global-needs-section {
        display: flex;
        flex-direction: column;


    }

    .global-needs-img {
        border-right: none;
        border-left: none;
        border-bottom: 1px solid var(--border-color);
        height: 23.5rem;
    }

    .global-needs-content-container {
        align-items: center;
        text-align: center;
        max-width: 34rem;
        gap: 0.5rem
    }

    .global-needs-content {
        align-items: center;
        padding-top: 5rem;
        padding-bottom: 2.5rem;
        height: 100%;
        gap: 5rem;
    }

    .global-needs-heading {
        font-size: 2rem;
    }

    .global-needs-description {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }

    .global-needs-contend-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .global-needs-content .button-pills-container {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 0.5rem;
        text-align: center;
        width: 100%;
    }

    .global-needs-content .button-pills-container .button-pill {
        justify-content: center;
    }

    .global-needs-content {
        gap: 2.5rem;
        padding-top: 2.5rem;
    }

    .global-needs-description {
        margin-bottom: 1.5rem;
    }

}