.about__header {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background-color: #fafafa;
    border-radius: 16px;
    min-height: 218px;
}

.about__title {
    position: relative;
    display: inline-block;
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-regular);
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    text-align: left;
    margin-bottom: 0.5em;
}

.about__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90%;
    height: 2px;
    transform: translateX(-50%);
    background: var(--color-primary);
    border-radius: 2px;
}

.about__text {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about__text--highlight {
    display: block;
    font-size: var(--font-size-xl);
    margin-bottom: 0.25em;
}

.about__block {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    flex: 2;
}

.about__content ul li {
    list-style-type: disc;
    margin-left: 1.5em;
}

.about__content ul li:nth-child(1) {
    list-style-type: none;
}

.about__content-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
}

.about__section:not(:last-child) {
    margin-bottom: 3rem;
}

.about__content-desc {
    color: var(--color-text-light);
    line-height: 1.8;
}

.about__image {
    max-width: 280px;
    width: 100%;
    flex: 1;
}

.about__image img {
    border-radius: 16px;
}

@media (max-width: 768px) {
    .about__block {
        flex-direction: column;
    }

    .about__title {
        font-size: var(--font-size-xl);
    }

    .about__text--highlight {
        display: block;
        font-size: clamp(18px, 3.125vw, 24px);
        word-break: auto-phrase;
        margin-bottom: 0.25em;
    }

    .about__content {
        font-size: var(--font-size-sm);
    }

    .about__content-title {
        font-size: clamp(16px, 3.125vw, 24px);
        word-break: auto-phrase;
    }
}
