.page-main {
    background: linear-gradient(180deg, #000 0%, #101828 100%);
}

.about-layout {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-layout__image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-layout__copy h2 {
    margin: 0 0 1.5rem;
    color: #ffb900;
    font-size: 1.875rem;
    line-height: 1.2;
}

.about-layout__copy p {
    margin: 0 0 1.5rem;
    color: #d1d5dc;
    font-size: 1rem;
    line-height: 1.65;
}

.about-highlights {
    display: grid;
    gap: 1.5rem;
    margin-top: 4rem;
}

.highlight-card {
    padding: 1.5rem 1.25rem;
    border: 1px solid rgba(254, 154, 0, 0.2);
    border-radius: 0.875rem;
    background: linear-gradient(146deg, rgba(123, 51, 6, 0.2) 0%, rgba(115, 62, 10, 0.2) 100%);
    text-align: center;
}

.highlight-card__icon {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    color: #ffb900;
}

.highlight-card h2 {
    margin: 0 0 0.65rem;
    color: #ffd230;
    font-size: 1.25rem;
}

.highlight-card p {
    margin: 0;
    color: #99a1af;
    font-size: 1rem;
    line-height: 1.5;
}

@media (min-width: 960px) {
    .about-layout {
        grid-template-columns: 600px minmax(0, 1fr);
    }

    .about-highlights {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 959px) {
    .about-layout {
        gap: 1.5rem;
    }

    .about-layout__copy h2 {
        font-size: 1.6rem;
    }

    .about-layout__copy p,
    .highlight-card p {
        font-size: 0.9rem;
    }
}
