/* Production Catalogue Styles */

.production-catalogue-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Filters */
.pc-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.pc-filter-btn {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.pc-filter-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

.pc-filter-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Grid Layout */
.pc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .pc-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* Release Item */
.pc-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pc-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pc-item.hidden {
    display: none;
}

/* Cover Image */
.pc-cover {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.pc-no-cover {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.pc-no-cover span {
    font-size: 48px;
    color: #999;
}

/* Info Section */
.pc-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.pc-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: #000;
}

.pc-artist {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.pc-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pc-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #ccc;
}

.pc-roles {
    font-size: 12px;
    color: #666;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.pc-roles strong {
    color: #000;
}

/* Links */
.pc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.pc-link {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 1px solid;
}

.pc-bandcamp {
    background: #fff;
    color: #629aa9;
    border-color: #629aa9;
}

.pc-bandcamp:hover {
    background: #629aa9;
    color: #fff;
}

.pc-youtube {
    background: #fff;
    color: #ff0000;
    border-color: #ff0000;
}

.pc-youtube:hover {
    background: #ff0000;
    color: #fff;
}

.pc-discogs {
    background: #fff;
    color: #333;
    border-color: #333;
}

.pc-discogs:hover {
    background: #333;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .pc-item {
        font-size: 14px;
    }
    
    .pc-title {
        font-size: 15px;
    }
    
    .pc-filters {
        gap: 5px;
    }
    
    .pc-filter-btn {
        font-size: 13px;
        padding: 6px 12px;
    }
}