/* Artist Posts Grid */
.artist-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.artist-post-card {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.artist-post-card:hover {
    transform: translateY(-0.25rem);
}

.artist-post-thumbnail {
    position: relative;
    width: 100%;
    overflow: visible;
    background: #fff;
    flex-shrink: 0;
    display: grid;
    justify-content: center;
}

.artist-post-thumbnail img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
}

.artist-post-content {
    position: relative;
    padding: 1rem;
    background: #fff;
    text-align: center;
}

.artist-post-title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.artist-post-title a {
    color: #333;
    text-decoration: none;
}

.artist-post-title a:hover {
    color: #666;
}

.artist-post-excerpt {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
    text-align: center;
}

/* Mobile Portrait */
@media screen and (max-width: 1600px) {
    .artist-posts-grid {
        grid-template-columns: 1fr 1fr;
    }
} 

@media screen and (max-width: 1300px) {
    .artist-posts-grid {
        grid-template-columns: 1fr;
    }
} 

.toggle-view {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #000;
    color: white;
    padding: 8px 12px;
    border: 2px solid white;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1000;
} 