<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Bio pages styles */
.bio-content {
    background-color: white;
    padding: 2rem;
    border: 4px solid var(--black);
    box-shadow: var(--shadow-offset-x) var(--shadow-offset-y) 0 var(--black);
    margin-bottom: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

p, h3 {
    margin-bottom: 1.5rem;
}

.bio-text-column {
    flex: 3;
}

.bio-photos-column {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.youtube-embed {
    line-height: 0;
    width: 100%;
    margin: 2rem 0;
    border: 3px solid var(--black);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-offset-x) var(--shadow-offset-y) 0 var(--black);
}

.youtube-embed-placeholder {
    background-color: var(--light-magenta);
    width: 100%;
    height: 315px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 5px;
}

.videos-content {
    background-color: white;
    padding: 2rem;
    border: 4px solid var(--black);
    box-shadow: var(--shadow-offset-x) var(--shadow-offset-y) 0 var(--black);
    margin-bottom: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.videos-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Add this to the bio.css file */
.photo-credits {
    display: block;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.photo-credits a {
    display: inline;
    white-space: nowrap;
    color: var(--dark-cyan);
    text-decoration: none;
}

.photo-credits a:hover {
    text-decoration: underline;
}

.band-photo {
    line-height: 0;
    width: 100%;
    border: 3px solid var(--black);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-offset-x) var(--shadow-offset-y) 0 var(--black);
}

.band-photo-placeholder {
    background-color: var(--dark-cyan);
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 5px;
}

.back-button {
    background-color: white;
    color: var(--dark-cyan);
    margin-bottom: 2rem;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.nav-buttons .brutalist-button {
    margin-bottom: 0;
}

.tech-rider-button {
    background-color: white;
    color: var(--dark-cyan);
}

.brutalist-button:hover {
    background-color: var(--light-magenta);
    color: white;
}

@media (max-width: 992px) {
    .bio-content {
        flex-direction: column;
    }
    
    .videos-content {
        flex-direction: column;
    }
    
    .bio-photos-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .band-photo {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .bio-photos-column {
        grid-template-columns: 1fr;
    }
}
</pre></body></html>