.about {
    display: grid;
    gap: 16px;
}

.about__title {
    margin: 0;
    text-align: center;
}

.about__intro {
    margin: 0;
    text-align: center;
    opacity: 0.85;
}

.about__section {
    margin-top: 0;
}

.about__section h2 {
    margin-top: 0;
}

.about__text {
    margin: 10px 0 0;
}

.about__hint {
    margin: 10px 0 0;
    opacity: 0.8;
}

/* Area pills */
.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.pill {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(168, 140, 200, 0.18);
    border: 1px solid rgba(168, 140, 200, 0.30);
    font-weight: 700;
    font-size: 14px;
}

/* Small list at the end */
.about__list {
    margin: 10px 0 0;
    padding-left: 20px;
}

.about__list li {
    margin: 8px 0;
}

/* Policies */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

@media (max-width: 720px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
}

.policy {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.6);
}

.policy__title {
    margin: 0;
    font-size: 16px;
}

.policy__text {
    margin: 6px 0 0;
    opacity: 0.85;
}

/* Team */
.team {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

@media (max-width: 720px) {
    .team {
        grid-template-columns: 1fr;
    }
}

.team__card {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.6);
}

.team__name {
    margin: 0;
    font-size: 16px;
}

.team__text {
    margin: 6px 0 0;
    opacity: 0.85;
}