/* =========================
   WRAP
========================= */
.li-view-wrap {
    min-height: 100vh;
    padding-bottom: 80px;
}

/* =========================
   뒤로가기 네비
========================= */
.li-view-nav {
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px 24px 0;
}

.li-view-nav__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.li-view-nav__back:hover {
    color: #fff;
}

/* =========================
   프로필 헤더
========================= */
.li-profile {
    padding: 32px 24px 40px;
}

.li-profile__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

/* 사진 */
.li-profile__photo {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    background: #1e1f22;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.li-profile__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.li-profile__no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2e2f34, #1e1f22);
}

.li-profile__no-img span {
    font-size: 52px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
}

/* 정보 */
.li-profile__info {
    flex: 1;
    min-width: 0;
}

.li-profile__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

/* 뱃지 */
.li-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.li-badge--cat {
    background: rgba(234, 84, 26, 0.15);
    border: 1px solid rgba(234, 84, 26, 0.35);
    color: #ea541a;
}

.li-badge--startup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}

.li-profile__name {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.li-profile__meta {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    margin-left: 8px;
}

.li-profile__location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
}

.li-profile__location svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.li-profile__job {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* SNS */
.li-profile__sns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.li-sns-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: opacity 0.2s;
}

.li-sns-btn:hover {
    opacity: 0.8;
}

.li-sns-btn--instagram {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.25);
    color: #e1306c;
}

.li-sns-btn--facebook {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.25);
    color: #1877f2;
}

.li-sns-btn--youtube {
    background: rgba(255, 0, 0, 0.08);
    border-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

/* =========================
   본문 콘텐츠
========================= */
.li-view-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* =========================
   섹션
========================= */
.li-view-section {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.li-view-section__title {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

/* 태그 섹션 나란히 */
.li-view-section--tags {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 48px;
}

/* =========================
   자기소개
========================= */
.li-intro__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
    white-space: pre-line;
}

.li-intro__toggle {
    margin-top: 10px;
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: #ea541a;
    cursor: pointer;
    transition: opacity 0.2s;
}

.li-intro__toggle:hover {
    opacity: 0.75;
}

/* =========================
   태그 그룹
========================= */
.li-tag-group__label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.li-tag-group__label--local {
    color: rgba(255, 255, 255, 0.45);
}

.li-tag-group__label--startup {
    color: rgba(234, 84, 26, 0.6);
}

.li-tag-group__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.li-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
}

.li-tag--local {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.7);
}

.li-tag--startup {
    background: rgba(234, 84, 26, 0.08);
    border-color: rgba(234, 84, 26, 0.22);
    color: rgba(234, 84, 26, 0.9);
}

/* =========================
   추천 로컬인
========================= */
.li-recommend {
    margin-top: 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 40px;
}

.li-recommend__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.li-recommend__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.li-grid--recommend {
    grid-template-columns: repeat(4, 1fr);
}

/* =========================
   반응형
========================= */
@media (max-width: 720px) {
    .li-profile__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .li-profile__badges {
        justify-content: center;
    }

    .li-profile__location {
        justify-content: center;
    }

    .li-profile__photo {
        width: 110px;
        height: 110px;
    }

    .li-profile__name {
        font-size: 22px;
    }

    .li-profile__sns {
        justify-content: center;
    }

    .li-view-section--tags {
        flex-direction: column;
        gap: 20px;
    }

    .li-grid--recommend {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .li-profile {
        padding: 20px 16px 32px;
    }

    .li-view-nav {
        padding: 16px 16px 0;
    }

    .li-view-content {
        padding: 0 16px;
    }

    .li-recommend__inner {
        padding: 0 16px;
    }

    .li-grid--recommend {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}
