/* ============================================================
   LYSN Web STORE - content overrides on top of the kandle design
   (구조/애니메이션/컬러는 원본 디자인 그대로, 콘텐츠 표현만 보강)
   ============================================================ */

/* ---- Text logo (Lysn 로고 이미지 대체) ---- */
.logo-text {
    font-family: 'Poppins', 'Pretendard', sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1;
}

footer .logo-text {
    font-size: 26px;
    margin-bottom: 1rem;
    display: inline-block;
}

/* ---- Hero: 떠다니는 아티스트 앨범 카드 ---- */
.album-card {
    width: 200px;
    height: 200px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 25px 40px 0 rgba(0, 0, 0, .25);
    border: 3px solid rgba(255, 255, 255, .85);
}

.p-1.album-card { width: 210px; height: 210px; }
.p-2.album-card { width: 150px; height: 150px; }
.p-3.album-card { width: 170px; height: 170px; }

/* ---- Article 이미지 영역: 아티스트 카드 그룹 ---- */
.art-card {
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 35px 0 rgba(0, 0, 0, .18);
}

.a1-1.art-card { width: 300px; height: 300px; }
.a1-2.art-card { width: 180px; height: 180px; border: 4px solid #fff; }
.a1-3.art-card { width: 160px; height: 160px; border: 4px solid #fff; }
.a1-4.art-card { width: 150px; height: 150px; }

.a2-1.art-card { width: 320px; height: 320px; }
.a2-2.art-card { width: 200px; height: 200px; }

.a3-1.art-card { width: 300px; height: 300px; }
.a3-2.art-card { width: 190px; height: 190px; border: 4px solid #fff; }

/* ---- 태그 배지 (언어/통화) ---- */
.badge-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 2rem;
}

.badge {
    padding: 8px 18px;
    border-radius: 50px;
    background-color: #f2eefb;
    color: var(--sub-color);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ============================================================
   아티스트 스토어 그리드 (LYSN 핵심 콘텐츠)
   ============================================================ */
.artist-store {
    padding: 140px 0;
    background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
}

.store-head {
    width: 1200px;
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 4rem;
}

.store-head h1 {
    color: #222;
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
}

.store-head p {
    color: #666;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 1.2rem;
}

.artist-grid {
    width: 1200px;
    max-width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

.artist-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 20px 20px 24px;
    box-shadow: 0 12px 30px 0 rgba(101, 95, 255, .08);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
}

.artist-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px 0 rgba(210, 58, 169, .18);
}

.artist-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    object-fit: cover;
    background: #eee;
}

.artist-name {
    margin-top: 1.1rem;
    font-size: 19px;
    font-weight: 700;
    color: #222;
    text-align: center;
    letter-spacing: -0.02em;
}

.artist-cta {
    margin-top: .4rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    display: flex;
    align-items: center;
    gap: 3px;
}

/* ---- 반응형 ---- */
@media (max-width: 1050px) {
    .album-card { display: none; }

    .art-card { position: static !important; }

    .a1-1.art-card,
    .a2-1.art-card,
    .a3-1.art-card { width: 100%; max-width: 320px; height: auto; aspect-ratio: 1/1; }

    .a1-2.art-card,
    .a1-3.art-card,
    .a1-4.art-card,
    .a2-2.art-card,
    .a3-2.art-card { display: none; }

    .artist-store { padding: 70px 0; }
    .store-head { margin-bottom: 2.5rem; }
    .store-head h1 { font-size: 34px; }
    .store-head p { font-size: 17px; }
    .artist-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
}

@media (max-width: 640px) {
    .artist-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .store-head h1 { font-size: 28px; }
    .artist-name { font-size: 16px; }
    .artist-item { padding: 12px 12px 16px; border-radius: 18px; }
}
