/* =========================
   WRAP
========================= */
.li-list-wrap {
    min-height: 100vh;
}

/* =========================
   HERO
========================= */
.li-hero {
    padding: 60px 20px;
    text-align: center;
}

.li-hero__title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
}

.li-hero__title em {
    color: #ea541a;
    font-style: normal;
}

.li-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 36px;
}

/* =========================
   SEARCH BAR
========================= */
.li-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 720px;
    margin: 0 auto;
}

.li-search-input-wrap {
    flex: 1;
    position: relative;
}

.li-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.li-search-input {
    width: 100%;
    padding: 13px 14px 13px 44px;
    background: #26272B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 14px;
    color: #fff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.li-search-input:focus {
    border-color: #ea541a;
}

.li-search-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.li-region-select {
    padding: 13px 36px 13px 14px;
    background: #26272B url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    outline: none;
    cursor: pointer;
    appearance: none;
    white-space: nowrap;
    min-width: 120px;
    transition: border-color 0.2s;
}

.li-region-select:focus {
    border-color: #ea541a;
}

.li-region-select option {
    background: #26272B;
    color: #fff;
}

.li-search-btn {
    padding: 13px 26px;
    background: #ea541a;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.li-search-btn:hover {
    background: #d44817;
}

/* =========================
   FILTER BAR
========================= */
.li-filter-bar {
    overflow-x: auto;
    scrollbar-width: none;
}

.li-filter-bar::-webkit-scrollbar {
    display: none;
}

.li-filter-inner {
    display: flex;
    gap: 6px;
    padding: 16px 24px;
    max-width: 1300px;
    margin: 0 auto;
    width: max-content;
}

.li-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}

.li-filter-btn:hover {
    border-color: rgba(234, 84, 26, 0.4);
    color: rgba(255, 255, 255, 0.85);
}

.li-filter-btn.is-active {
    background: #ea541a;
    border-color: #ea541a;
    color: #fff;
    font-weight: 700;
}

/* =========================
   RESULT WRAP
========================= */
.li-result-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 32px 24px 80px;
}

.li-result-header {
    margin-bottom: 24px;
}

.li-result-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.li-result-count strong {
    color: #fff;
    font-weight: 700;
}

/* =========================
   GRID
========================= */
.li-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* =========================
   CARD
========================= */
.li-card {
    display: block;
    text-decoration: none;
    background: #26272B;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* 썸네일 */
.li-card__thumb {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #1e1f22;
}

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

/* 이미지 없을 때 플레이스홀더 */
.li-card__no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2e2f34, #1e1f22);
}

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

/* 카테고리 배지 */
.li-card__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(234, 84, 26, 0.88);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

/* 이미지 하단 오버레이 */
.li-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 14px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.li-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.li-card__loc {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.li-card__loc svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* 카드 본문 */
.li-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.li-card__job {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 역량/관심사 섹션 */
.li-card__section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.li-card__section-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.li-card__section-label--interest {
    color: rgba(234, 84, 26, 0.55);
}

.li-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.li-card__tag {
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    white-space: nowrap;
}

.li-card__tag--interest {
    background: rgba(234, 84, 26, 0.08);
    border-color: rgba(234, 84, 26, 0.2);
    color: rgba(234, 84, 26, 0.9);
}

.li-card__tag-more {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* =========================
   EMPTY
========================= */
.li-empty {
    padding: 100px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 15px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .li-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .li-hero {
        padding: 20px 16px 40px;
    }

    .li-hero__title {
        font-size: 28px;
    }

    .li-search-bar {
        flex-wrap: wrap;
    }

    .li-search-input-wrap {
        flex: 1 1 100%;
    }

    .li-region-select {
        flex: 1;
    }

    .li-search-btn {
        flex: 1;
    }

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

    .li-result-wrap {
        padding: 24px 16px 60px;
    }

    .li-filter-inner {
        padding: 12px 16px;
    }
}

@media (max-width: 540px) {
    .li-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .li-card__thumb {
        height: 220px;
    }
}

/* =========================
   등록 버튼 (고정)
========================= */
.li-write-fixed {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 32px;
    z-index: 1000;
    height: 56px;
    padding: 0 26px;
    border-radius: 28px;
    background: #ea541a;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background 0.2s;
}

.li-write-fixed:hover {
    background: #d44817;
}
