.choiceExpertContent {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.choiceExpertSubtitle {
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    max-width: 210px;
}
.choiceExpertSubtitle:hover {
    color: var(--green);
}
.choiceExpertTitle {
    color: var(--green);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
}
.choiceExpertGroup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.choiceExpertCount {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    width: 26px;
    height: 16px;
}
.choiceExpertItem {
    width: 300px;
}
.active {
    color: var(--green);
}
@media (max-width: 1200px) {
    .choiceExpertContent {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 60px;
    }
}
@media (max-width: 680px) {
    .choiceExpertContent {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .choiceExpertItem {
        width: auto;
    }
}
