h3 {
    color: #b0b0b0;
}

li {
    color: #b0b0b0;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(255, 44, 85, 0.1);
}

.curator-headshot {
    flex-shrink: 0;
    position: relative;
}

.curator-image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    border: 2px solid #ff2c55;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.3s ease;
}

.curator-image:hover {
    filter: grayscale(0%) contrast(1.2);
    box-shadow: 0 0 20px rgba(255, 44, 85, 0.3);
}

.curator-bio {
    flex: 1;
}

.curator-bio h1 {
    font-family: 'Unbounded', sans-serif;
    color: #ff2c55;
    font-size: 2.2em;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.curator-bio p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.curator-bio strong {
    color: #ff2c55;
    font-weight: bold;
}

.curator-bio em {
    color: #ffd700;
    font-style: italic;
}

.highlight-quote {
    background: linear-gradient(90deg, rgba(255, 44, 85, 0.1) 0%, transparent 100%);
    border-left: 3px solid #ff2c55;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #f0f0f0;
}

.tech-blend {
    color: #b0b0b0;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .curator-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .curator-bio h1 {
        font-size: 1.8em;
    }
}