.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.news-preview,
.featured-song,
.random-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.random-section button {
    background: #c46a3b;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: sans-serif;
}
.random-section button:hover {
    background: #a5512a;
}
.lyric-quote {
    margin-top: 1.5rem;
    font-style: italic;
    border-left: 3px solid #c46a3b;
    padding-left: 1rem;
}
.bio-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: #f0ece4;
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    align-items: center;
}
.bio-text {
    flex: 2;
}
.bio-text h2 {
    margin-top: 0;
}
.bio-photo {
    flex: 0 0 120px;
    border-radius: 50%;
    object-fit: cover;
    max-height: 300px;
}
@media (max-width: 600px) {
    .bio-section {
        flex-direction: column;
        text-align: center;
    }
}
