@charset "UTF-8";

.talent-div {
    display: flex;
    padding: 56px 64px 72px 64px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #E1E1E1;
    background: linear-gradient(180deg, #FFF 0%, #F6FAFF 100%);
}

.talent-top {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 18px;
}

.talent-top::before {
    content: '';
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #00B9FF;
}

.talent-div .talent-title {
    color: #212121;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.54px;
}

.talent-types {
    display: flex;
    gap: 40px;
}

.talent-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.talent-icon {
    width: 180px;
    height: 180px;
    aspect-ratio: 1/1;
    border-radius: 100.5px;
    box-shadow: 0 0 16px 0 rgba(1, 128, 225, 0.25);
    overflow: hidden;
    background: radial-gradient(circle at center, #c9e4f9 60%, #fff 100%);
}

.talent-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    align-self: stretch;
}

.talent-content h3 {
    color: #212121;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.54px;
}

.talent-content p {
    color: #434343;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    letter-spacing: -0.48px;
}

@media (max-width: 1389px) {
    .talent-types {
        max-width: 402px;
        flex-wrap: wrap;
    }

    .talent-type {
        width: calc(50% - 20px);
        box-sizing: border-box;
    }
}

@media (max-width: 765px) {
    .talent-type {
        width: 100%;
    }
}