/* === Sekcja: O nas === */
.about-section {
    background-color: var(--brand-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Nagłówek */
.about-section h2 {
    color: #fff;
    font-size: 1.9rem;
    font-weight: 700;
}

/* Opis */
.about-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Awatary zespołu */
.team-avatar {
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-avatar:hover {
    border-color: var(--brand-primary);
}

.team-avatar:hover img {
    transform: scale(1.1);
}

/* Cytat */
.about-section blockquote {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    border-left: 3px solid var(--brand-primary);
    display: inline-block;
    padding-left: 12px;
    margin-top: 1rem;
}

/* Responsywność */
@media (max-width: 767.98px) {
    .about-section h2 {
        font-size: 1.6rem;
    }

    .team-avatar {
        width: 70px;
        height: 70px;
    }

    .about-section p {
        font-size: 0.9rem;
    }

    .about-section blockquote {
        font-size: 0.9rem;
    }
}
