.vof-about-story {
    padding: 120px 0;
    background: var(--surface);
}

.vof-about-story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vof-about-story__text .label-caps {
    display: block;
}

.vof-about-story__text h2 {
    margin-bottom: 24px;
}

.vof-about-story__text p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.vof-about-story__text p:last-child {
    margin-bottom: 0;
}

.vof-about-story__visual {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.vof-about-story__row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

.vof-about-story__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vof-about-story__icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vof-about-story__icon svg,
.vof-about-story__icon img {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
}

.vof-about-story__row-info strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    display: block;
    margin-bottom: 4px;
}

.vof-about-story__row-info p {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 1024px) {
    .vof-about-story .container { gap: 40px; }
    .vof-about-story__visual { padding: 36px; }
}

@media (max-width: 768px) {
    .vof-about-story { padding: 80px 0; }
    .vof-about-story .container { grid-template-columns: 1fr; }
    .vof-about-story__visual { padding: 32px; }
}
