.about-main {
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.artist-bio {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    max-width: 900px; /* Constrain content width for readability */
    margin: auto;
}

.artist-img-container {
    flex-shrink: 0; /* Prevents the image from shrinking */
    width: 300px;
    height: 300px;
}

.artist-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container without distortion */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.artist-text {
    flex-grow: 1; /* Allows the text content to fill available space */
}

.artist-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 200;
}

@media (max-width: 768px) {
    .artist-bio {
        flex-direction: column;
        text-align: center;
    }
    .artist-img-container {
        width: 200px;
        height: 200px;
    }
}