/* About Section */
.about {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--brand-red);
    font-weight: var(--font-bold);
}

.studio-card {
    background: var(--overlay-red-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-red-light);
    margin-bottom: var(--spacing-md);
}

.studio-card h3 {
    color: var(--brand-red);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
    font-weight: var(--font-semibold);
}

.studio-card p {
    color: var(--text-tertiary);
    line-height: var(--line-height-relaxed);
}

.credentials {
    background: var(--overlay-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--brand-red);
}

.credentials h4 {
    color: var(--brand-orange);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: var(--font-semibold);
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 0.7rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--overlay-white-medium);
}

.credentials li:before {
    content: "→ ";
    color: var(--brand-red);
    font-weight: bold;
    margin-right: var(--spacing-xs);
}

.credentials li:last-child {
    border-bottom: none;
}

/* About Responsive */
@media (max-width: 768px) {
    .about {
        padding: 4rem var(--spacing-sm) var(--spacing-md);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}
