.section-about .grid-2 {
    gap: 48px;
}

.about-text {
    align-self: flex-start;
    text-align: left;
}

.about-name {
    margin-bottom: 16px;
}

.about-role {
    color: var(--color-primary);
    margin-bottom: 8px;
}

.about-specialty {
    color: var(--color-muted-foreground);
    margin-bottom: 16px;
}

.about-description p {
    margin-bottom: 16px !important;
    line-height: 1.6;
    color: var(--color-foreground);
    text-align: left;
}

.about-photo .photo-wrapper {
    width: 320px;
    height: 320px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: oklab(0.930913 0.0000423491 0.0000185966 / 0.3);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .section-about .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 425px) {
    .about-photo .photo-wrapper {
        width: 288px;
        height: 288px;
    }
}
