.single-team-footer {
    overflow: hidden;
    >.container {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 24px;
        align-items: center;
        position: relative;
    }
}

.single-team-footer-img {
    width: 486px;
    padding-top: 80px;
}

.single-team-footer-content {
    padding: 40px 0;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;

    >svg {
        position: absolute;
        z-index: -1;

        &:nth-of-type(1) {
            top: 0;
            left: 0;
        }

        &:nth-of-type(2) {
            bottom: 0;
            right: 0;
        }
    }
}

.single-team-footer-circle {
    position: absolute;
    z-index: -1;
    right: -400px;
    bottom: -650px;
    background-color: var(--color-primary-2);
    border-radius: 50%;
    width: 800px;
    aspect-ratio: 1;
}

@media screen and (width < 1024px) {
    .single-team-footer > .container {
        padding-top: 80px;
        padding-bottom: 80px;
        grid-template-columns: 100%;
        gap: 40px;
    }
    .single-team-footer-img {
        padding-top: 0;
        margin: 0 auto;
        max-width: 486px;
        width: 100%;
    }
    .single-team-footer-content ~ a {
        margin-left: auto;
        margin-right: auto;
    }
    .single-team-footer-circle {
        right: 50%;
        transform: translateX(50%);
        bottom: auto;
        top: 80px;
        max-width: 486px;
        width: calc(100% - 48px);
    }
}

@media screen and (width < 768px) {
    .single-team-footer-content {
        margin-bottom: 0px;
        >svg {
            width: 75px;
        }
    }
}

@media screen and (width < 576px) {
    .single-team-footer > .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .single-team-footer-content {
        >svg {
            width: 60px;
        }
    }
}