/**
 * O nás - stránkové styly
 */

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--color-primary);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.staff-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.staff-card h3 {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.staff-card p {
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.history-content {
    background: var(--color-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.history-content p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.history-content p:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background: linear-gradient(135deg, var(--color-primary-light), #e0f7fa);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    border-left: 5px solid var(--color-primary);
}

.highlight-box h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    .history-content {
        padding: 20px;
    }
}
