/* Artist Grid Layout */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--wp--preset--spacing--50);
    margin: var(--wp--preset--spacing--60) 0;
}

.artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--wp--preset--spacing--40);
    transition: transform 0.3s ease;
    border: 1px solid var(--wp--preset--color--contrast-3);
    background-color: var(--wp--preset--color--base);
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: var(--wp--preset--color--contrast);
}

.artist-card img {
    aspect-ratio: 1 / 1;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--wp--preset--spacing--30);
    transition: filter 0.3s ease;
}

.artist-card:hover img {
    filter: grayscale(0%);
}

.artist-card h3 {
    margin: 0;
    font-size: var(--wp--preset--font-size--large);
}

.artist-card h3 a {
    text-decoration: none;
    color: inherit;
}

.artist-types {
    margin-top: var(--wp--preset--spacing--10);
    font-size: var(--wp--preset--font-size--small);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

/* Author Profile Styling */
.artist-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.artist-profile-header .wp-block-avatar {
    margin-bottom: var(--wp--preset--spacing--30);
}

/* Album Grid Customization */
.wp-block-post-template.is-flex-container {
    gap: var(--wp--preset--spacing--40);
}

.wp-block-post-template .wp-block-post-featured-image img {
    transition: filter 0.3s ease, transform 0.3s ease;
    object-fit: cover;
}

.wp-block-post-template .wp-block-post-featured-image:hover img {
    filter: brightness(0.8);
    transform: scale(1.02);
}