.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.about-photo {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 75%;
}

.about-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.about-photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    font-family: var(--font-heading);
}

.about-text h2 {
    margin-bottom: var(--space-lg);
}

.about-text p {
    color: var(--color-gray-700);
    font-size: var(--text-lg);
}

.about-values {
    margin-top: var(--space-2xl);
}

.about-values h3 {
    margin-bottom: var(--space-md);
}

.values-list {
    list-style: none;
    display: grid;
    gap: var(--space-md);
}

.values-list li {
    padding-left: var(--space-lg);
    position: relative;
    color: var(--color-gray-700);
}

.values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* Venmo section */
.venmo-section {
    text-align: center;
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.venmo-section h2 {
    margin-bottom: var(--space-sm);
}

.venmo-section p {
    color: var(--color-gray-700);
    margin-bottom: var(--space-lg);
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
}

.venmo-qr {
    margin-bottom: var(--space-lg);
}

.venmo-qr img {
    margin: 0 auto;
    border-radius: var(--border-radius-sm);
}

@media (max-width: 48rem) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-photo {
        max-width: 20rem;
        margin: 0 auto;
    }
}
