/* ========== 개발언어 리스트 ========== */
.lang_list {
    display: flex;
    flex-direction: column;
}

.lang_item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 1px solid #E1E1E1;
}

.lang_item:first-child {
    border-top: 1px solid #E1E1E1;
}

.lang_item .lang_head {
    flex: 1;
    padding-right: 40px;
}

.lang_item .no {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 500;
    background: linear-gradient(to right, #0073FF, #0E0044);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}

.lang_item .title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
}

.lang_item .lang_desc {
    font-size: 13px;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
}

/* ========== 래퍼런스 태그 ========== */
.lang_ref {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 14px;
}

.lang_ref .ref_label {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    flex-shrink: 0;
    white-space: nowrap;
}

.lang_ref .ref_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
}

.lang_ref .ref_tags li {
    font-size: 11px;
    font-weight: 400;
    color: #6B8ACB;
    white-space: nowrap;
}

/* ========== 로고 ========== */
.lang_item .lang_logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    padding-top: 24px;
}

.lang_item .lang_logo img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

/* ========== 태블릿 (1023px 이하) ========== */
@media screen and (max-width: 1023px) {
    .lang_item {
        padding: 28px 0;
    }

    .lang_item .lang_head {
        padding-right: 24px;
    }

    .lang_item .title {
        font-size: 16px;
    }

    .lang_item .lang_desc {
        font-size: 12px;
    }

    .lang_item .lang_logo {
        width: 90px;
        padding-top: 16px;
    }

    .lang_item .lang_logo img {
        max-height: 70px;
    }

    .lang_ref .ref_tags {
        gap: 4px 6px;
    }
}

/* ========== 모바일 (767px 이하) ========== */
@media screen and (max-width: 767px) {
    .lang_item {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 0;
        gap: 20px;
    }

    .lang_item .lang_head {
        padding-right: 0;
        width: 100%;
    }

    .lang_item .title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .lang_item .lang_desc {
        font-size: 12px;
        line-height: 1.7;
    }

    .lang_ref {
        flex-direction: column;
        gap: 6px;
        margin-top: 12px;
    }

    .lang_ref .ref_tags {
        gap: 4px 6px;
    }

    .lang_ref .ref_tags li {
        font-size: 10px;
    }

    .lang_ref .ref_label {
        font-size: 10px;
    }

    .lang_item .lang_logo {
        width: 70px;
        padding-top: 0;
    }

    .lang_item .lang_logo img {
        max-height: 56px;
    }
}
