.artwork-header {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.artwork-meta {
    flex: 0 0 300px;
}

.artwork-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.artwork-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.artist-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.artist-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.artwork-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.artwork-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.artwork-details {
    margin-bottom: 1.5rem;
}

.artwork-details h2 {
    margin-bottom: 1rem;
}

.detail-content {
    line-height: 1.8;
}

.detail-content p {
    margin-bottom: 1rem;
}

.artwork-comments {
    margin-bottom: 1.5rem;
}

.artwork-comments h2 {
    margin-bottom: 1.5rem;
}

.comment-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 500;
}

.comment-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

.comment-text {
    line-height: 1.6;
}

@media (max-width: 800px) {
    .artwork-header {
        flex-direction: column;
    }

    .artwork-meta {
        flex: 0 0 auto;
    }

    .artwork-image {
        min-height: 300px;
    }
}