@charset "UTF-8";

/* ==========================================================
   Influence+
   influencers.css
========================================================== */

/* ===========================
   Page Hero
=========================== */

.page-hero{
    padding:100px 0;
    background:linear-gradient(
        135deg,
        #f8fafc,
        #eef6ff
    );
    text-align:center;
}

.page-hero h1{
    margin-bottom:20px;
    font-size:2.5rem;
    font-weight:700;
}

.page-hero p{
    color:var(--text-light);
    font-size:1.1rem;
    line-height:1.8;
}

/* ===========================
   Search
=========================== */

.influencer-search{
    padding:50px 0;
}

.search-box{
    display:flex;
    align-items:center;
    gap:15px;
    padding:25px;
    background:#fff;
    border-radius:16px;
    box-shadow:var(--shadow);
}

.search-box input{
    flex:1;
    height:48px;
    padding:0 16px;
    border:1px solid var(--border);
    border-radius:8px;
    font-size:1rem;
}

.search-box select{
    width:200px;
    height:48px;
    padding:0 15px;
    border:1px solid var(--border);
    border-radius:8px;
    background:#fff;
}

/* ===========================
   Influencer List
=========================== */

.influencer-list{
    padding:40px 0 100px;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:2rem;
    margin-bottom:10px;
}

.section-title p{
    color:var(--text-light);
}

/* ===========================
   Grid
=========================== */

.influencer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* ===========================
   Card
=========================== */

.influencer-card{
    overflow:hidden;
    background:#fff;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:.3s;
}

.influencer-card:hover{
    transform:translateY(-6px);
}

.influencer-card__image{
    width:100%;
    aspect-ratio:1 / 1;
    overflow:hidden;
}

.influencer-card__image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.influencer-card__body{
    padding:25px;
}

.influencer-card__body h3{
    margin-bottom:10px;
    font-size:1.25rem;
}

.category{
    display:inline-block;
    margin-bottom:15px;
    padding:5px 12px;
    background:#eef6ff;
    color:var(--primary);
    border-radius:30px;
    font-size:.85rem;
}

.sns{
    margin-bottom:20px;
    color:var(--text-light);
    font-size:.95rem;
}

/* ===========================
   Button
=========================== */

.influencer-card .btn{
    width:100%;
    text-align:center;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:1024px){

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

}

@media(max-width:768px){

    .page-hero{
        padding:70px 0;
    }

    .page-hero h1{
        font-size:2rem;
    }

    .search-box{
        flex-direction:column;
        align-items:stretch;
    }

    .search-box select{
        width:100%;
    }

    .influencer-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

}

/* ==========================================
   Member Lock
========================================== */

.member-lock{
    position:fixed;
    inset:0;
    z-index:9999;
}

.member-lock__overlay{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,.55);
    backdrop-filter:blur(8px);
}

.member-lock__modal{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:min(520px,90%);
    padding:45px;
    background:#fff;
    border-radius:22px;
    text-align:center;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.member-lock__badge{
    display:inline-block;
    margin-bottom:20px;
    padding:8px 18px;
    border-radius:999px;
    background:#2563eb;
    color:#fff;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.08em;
}

.member-lock__modal h2{
    margin-bottom:18px;
    font-size:1.8rem;
}

.member-lock__modal p{
    margin-bottom:35px;
    color:var(--text-light);
    line-height:1.9;
}

.member-lock__buttons{
    display:flex;
    gap:15px;
}

.member-lock__buttons .btn{
    flex:1;
}

@media(max-width:768px){

    .member-lock__modal{
        padding:30px 24px;
    }

    .member-lock__buttons{
        flex-direction:column;
    }

}