/* 앨범 그리드 - LP 스타일 */

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.album-card {
    position: relative;
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: translateY(-10px);
}

.album-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.album-cover {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.5);
}

.album-info {
    padding: 1rem 0;
}

.album-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.album-meta {
    font-size: 0.9rem;
    color: #666;
}

/* TV 최적화 - 큰 화면 */
@media (min-width: 1920px) {
    .album-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 40px;
    }
}

/* 태블릿 */
@media (max-width: 1024px) {
    .album-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .album-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .page-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
