.about-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 940px;
    max-width: calc(100dvw - 56px);
    gap: 84px;
}
.about-card {
    padding: 32px 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
}
.about-card-alt {
    background: var(--green-grad);
    padding: 32px 44px;
    border-radius: 10px;

}
.about-card-preface {
    color: var(--active-green);
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 16px;
}
.about-card-title {
    max-width: 428px;
    color: var(--green);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
}
.about-card-text {
    max-width: 428px;
    color: var(--theme-dusk);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}
.about-alt-text {
    max-width: 340px;
    color: var(--white);
}

.team-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 940px;
    max-width: calc(100dvw - 56px);
    /*gap: 84px;*/
}
.team-card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
}
.team-card-text {
    max-width: 940px;
}
.member-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 38px;
    width: 940px;
    max-width: calc(100dvw - 56px);
    margin: 48px 0 0 0;
}
.uflex-member {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 12px;
    height: 364px;
    width: 264px;
    max-width: calc(100dvw - 56px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}
.uflex-member-info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(1, 12, 22, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 8px 16px;
    width: 264px;
    overflow: hidden;
}
.uflex-member-text-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
}
.uflex-member-name {
    color: var(--pop-green-active);
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 16px;
}
.uflex-member-title {
    color: var(--mist);
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 12px;
}
.uflex-member-linkedin-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.uflex-member-linkedin {
    height: 24px;
    cursor: pointer;
}
.uflex-member-linkedin:hover {
    .uflex-member-linkedin-path {
        fill: var(--white);
    }
}
.uflex-member-linkedin-path {
    fill: var(--mist);
}
@media (max-width: 996px) {
    .uflex-member {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding: 12px;
        height: 364px;
        width: 380px;
        max-width: calc(100dvw - 56px);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: 10px;
    }
}

.call-to-action-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 176px;
    background: var(--blue-grad);
    background-image: url('/images/stock/computer work.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    width: 804px;
    padding: 40px 68px;
}
.cta-title {
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    width: 426px;
    max-width: 100%;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
}
.cta-item-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}
.cta-button-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}
.cta-login {
    color: var(--white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);

}
@media (max-width: 928px) {
    .call-to-action-container {
        flex-direction: column;
        gap: 20px;
        padding: 40px 24px;
        max-width: calc(100dvw - 104px);
        align-items: flex-start;
    }
    .cta-button-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .cta-button-container .button {
        font-size: clamp(12px, 2vw, 20px);
    }
    .cta-button-container .button-icon-filled {
        font-size: clamp(16px, 2vw, 20px);
    }
    .cta-login {
        width: 100%;
    }
    .cta-title {
        font-size: clamp(20px, 4vw, 36px);
        line-height: clamp(28px, 5vw, 48px);
    }
}