.about {
    padding: 4rem 0;
    max-width: 960px;
    margin: 0 auto;
}

.about__hero {
    text-align: center;
    margin-bottom: 3rem;
}

.about__hero p {
    max-width: 720px;
    margin: 1rem auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.story-grid,
.values-grid,
.team-grid,
.analysis-grid,
.strategies-grid {
    display: grid;
    gap: 1.5rem;
}

.story-grid,
.values-grid,
.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.story-card,
.value-card,
.team-card {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.team-role {
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
}

.timeline {
    list-style: none;
    padding: 0;
    border-left: 3px solid #6366f1;
    margin: 2rem 0 0;
}

.timeline li {
    position: relative;
    padding: 1rem 0 1rem 1.5rem;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: -0.65rem;
    top: 1.2rem;
    width: 0.75rem;
    height: 0.75rem;
    background: #6366f1;
    border-radius: 999px;
}

.timeline-year {
    font-weight: 700;
    color: #1f2937;
    display: block;
}

.timeline-event {
    color: #475569;
    display: block;
}

.resource-links {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.resource-links a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #eef2ff;
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
}

.resource-links a:hover,
.resource-links a:focus {
    background: #c7d2fe;
}
