.section-about-contrast .section-header {
    max-width: 900px;
    margin-bottom: 28px;
}

.section-about-contrast .section-header p {
    margin-top: 12px;
}

.section-about-contrast .about-contrast {
    display: grid;
    grid-template-columns: 40fr 60fr;
    gap: 20px;
    align-items: stretch;
}

.section-about-contrast .about-contrast__col {
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}

.section-about-contrast .about-contrast__col--team {
    background: #f0f0f0;
    border: 1px solid var(--color-border);
}

.section-about-contrast .about-contrast__col--solo {
    background: var(--color-background);
    border: 1px solid rgba(195, 27, 38, 0.45);
    box-shadow:
        rgba(195, 27, 38, 0) 0px 0px 0px 0px,
        rgba(195, 27, 38, 0) 0px 0px 0px 0px,
        rgba(195, 27, 38, 0) 0px 0px 0px 0px,
        rgba(195, 27, 38, 0) 0px 0px 0px 0px,
        rgba(195, 27, 38, 0.1) 0px 1px 3px 0px,
        rgba(195, 27, 38, 0.1) 0px 1px 2px -1px;
    transform: translateY(-6px);
}

.section-about-contrast .about-contrast__title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    line-height: 1.3;
    color: var(--color-foreground);
}

.section-about-contrast .about-contrast__title-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
}

.section-about-contrast .about-contrast__title-icon img,
.section-about-contrast .about-contrast__title-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.section-about-contrast .about-contrast__subtitle {
    margin: 10px 0 0;
    color: var(--color-primary);
    font-weight: 600;
}

.section-about-contrast .about-contrast__list,
.section-about-contrast .about-contrast__losses {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.section-about-contrast .about-contrast__list li,
.section-about-contrast .about-contrast__losses li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.section-about-contrast .about-contrast__list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 8px;
    background: #8a8a94;
    flex: 0 0 auto;
}

.section-about-contrast .about-contrast__losses li::before {
    content: "\2014";
    display: block;
    width: auto;
    height: auto;
    margin-top: 0;
    background: none;
    border-radius: 0;
    align-self: center;
    flex: 0 0 auto;
    color: var(--color-muted-foreground);
    line-height: 1;
}

.section-about-contrast .about-contrast__losses-title {
    margin: 18px 0 0;
    font-size: 14px;
    color: var(--color-muted-foreground);
}

.section-about-contrast .about-contrast__losses {
    margin-top: 10px;
}

.section-about-contrast .about-contrast__losses li {
    align-items: center;
    color: var(--color-muted-foreground);
}

.section-about-contrast .about-contrast__benefits {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.section-about-contrast .about-contrast__benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(195, 27, 38, 0.16);
    border-radius: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--color-foreground);
}

.section-about-contrast .about-contrast__benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #C4513D1A;
    border-radius: 12px;
    color: var(--color-primary);
    flex: 0 0 64px;
    transition: all 0.3s ease;
}

.section-about-contrast .about-contrast__benefit-icon svg,
.section-about-contrast .about-contrast__benefit-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.section-about-contrast .about-contrast__note {
    margin: 18px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
    font-weight: 500;
    color: var(--color-foreground);
}

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

    .section-about-contrast .about-contrast__col--solo {
        transform: none;
    }

    .section-about-contrast .about-contrast__benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .section-about-contrast .about-contrast__col {
        padding: 20px;
    }

    .section-about-contrast .about-contrast__title {
        font-size: 21px;
    }

    .section-about-contrast .about-contrast__benefits {
        grid-template-columns: 1fr;
    }

}
