.join {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex-direction: column;
}

.join .title {
    color: #f4f8ff;
    font-size: clamp(28px, 3vw, 40px);
    font-family: 'FYT';
    position: relative;
    display: inline-block;
    padding-bottom: 36px;
    font-weight: 700;
}

.join .title::after {
    content: 'careers';
    font-size: 16px;
    font-family: 'PHT';
    color: #6f8dc7;
    position: absolute;
    bottom: 7px;
    right: -50px;
    text-transform: Uppercase;
}

.join .content {
    width: 100%;
    position: relative;
}

.join .content .main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.join .main .card {
    flex: 1 1 0;
    width: auto;
    min-height: 430px;
    padding: 34px 28px 24px 44px;
    border-radius: 18px;
    background: rgba(12, 20, 36, 0.82);
    border: 1px solid rgba(116, 167, 255, 0.18);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
    font-family: 'FYT';
    margin-top: 24px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.join .main .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 64px rgba(0, 0, 0, 0.46);
}

.join .main .card>p {
    font-size: 21px;
    color: #f4f8ff;
    text-align: left;
    padding-bottom: 20px;
    font-weight: 700;
}

.join .main .card i {
    font-size: 15px;
    line-height: 1.55;
    min-height: 92px;
    height: auto;
    color: #b6c3d8;
    font-style: normal;
    display: block;
    margin-bottom: 14px;
    position: relative;
}

.join .main .card i::before {
    content: '';
    width: 12px;
    height: 12px;
    display: block;
    background-color: #4f83dc;
    position: absolute;
    left: -27px;
    top: 5px;
}

.join .main .card div {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    min-height: 50px;
    height: auto;
    color: #74a7ff;
    font-weight: bold;
    margin-top: 18px;
}

.join .main .card div::before {
    content: '';
    height: 8px;
    width: 140px;
    background: rgba(116, 167, 255, 0.22);
    position: absolute;
    bottom: 0;
    left: 70px;
}

.join .main .card:hover div::before {
    background: #74a7ff;
}

@media screen and (orientation: portrait) {
    .join {
        min-height: calc(100vh - 108px);
        justify-content: center;
    }

    .join .title {
        display: block;
        font-size: 24px;
        padding-bottom: 4px;
    }

    .join .content .main {
        width: 100%;
        flex-wrap: wrap;
        margin: 0 auto;
        gap: 10px;
    }

    .join .main .card {
        width: 100%;
        min-height: auto;
        margin-top: 0;
        padding: 16px 16px 14px 24px;
        border-radius: 14px;
    }

    .join .main .card>p {
        font-size: 16px;
        padding-bottom: 8px;
    }

    .join .main .card i {
        min-height: auto;
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 5px;
    }

    .join .main .card i::before {
        display: none;
    }

    .join .main .card div {
        font-size: 11px;
        height: auto;
        min-height: auto;
        margin-top: 8px;
        justify-content: flex-start;
    }

    .join .main .card div::before {
        display: none;
    }

    .join .main .card div img {
        transform: scale(0.5);
    }
}
