.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 0 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;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: oklab(0.930913 0.0000423491 0.0000185966 / 0.3);
    border-radius: 10px;
}

.stat-value {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-muted-foreground);
}

.section-about .grid-3 {
    gap: 32px;
}

.skill-card {
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #f0f0f0;
    transition: all 0.3s ease;
}

.skill-card:hover {
    border-color: oklab(0.524653 0.179994 0.0848948 / 0.2);
    background-color: oklab(0.524653 0.179994 0.0848948 / 0.1);
}

.skill-title {
    text-align: center;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 400;
}

.skill {
    margin-bottom: 24px;
}

.skill-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 12px;
}

.skill-percent {
    font-size: 24px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 4px;
}

.skill-name {
    font-weight: 500;
    font-size: 14px
}

.skill-years {
    font-size: 12px;
    color: var(--color-muted-foreground);
}

.skill-bar {
    background: var(--color-border);
    height: 4px;
    border-radius: 3px;
    overflow: hidden;
}

.skill-bar div {
    background: var(--color-primary);
    height: 100%;
    transition: width 0.6s ease;
}

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

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

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

    .about-photo .photo-wrapper {
        width: 288px;
        height: 288px;
    }
}

/* ===== TEXT-BLOCK ===== */
.block-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 12px;
}

.block-title,
.block-list .h4 {
    display: inline-block;
    align-self: flex-start;
    text-align: left;
    margin: 0;
}

.block-text,
.block-list p:not(:last-child) {
    display: block;
    width: 100%;
    text-align: left;
    color: var(--color-muted-foreground);
    margin-bottom: 36px;
}
