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

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

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

.artist-sub-post-thumbnail {
    position: relative;
    width: 100%;
    overflow: visible;
    background: #fff;
    flex-shrink: 0;
}

.artist-sub-post-thumbnail img {
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

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

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

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

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

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

.artist-sub-read-more {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.artist-sub-read-more:hover {
    opacity: 0.7;
}

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