.about {
    margin-top: 12.5rem;
}

.about__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
    margin-top: 2rem;
}
.about__wrapper--company {
    grid-template-columns: 1fr 0.75fr;
    gap: 5rem;
}

.about__left {
    flex: 1 1 auto;
}

.about__brand {
    font-size: 3.125rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--orange);
    margin-bottom: 2.5rem;
}

.about__brand--img {
    height: 5rem;
}

.about__text {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 1.875rem;
}

.about__mission {
    width: 80%;
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 1.875rem;
    padding-left: 1.25rem;
    border-left: 2px solid var(--orange);
}

.about__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--orange);
    border-radius: 0.1875rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    background: var(--orange);
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.about__link:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.about__media {
    position: relative;
    min-height: 0;
    border-radius: 0.25rem;
    overflow: hidden;
}

.about__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.25rem;
    object-fit: cover;
}

@media(max-width: 1024px) {
    .about__wrapper {
        grid-template-columns: 1fr auto;
        align-items: start;
    }

    .about__media {
        align-self: center;
        position: static;
        display: block;
        overflow: visible;
        border-radius: 0;
        margin-top: -20rem;
    }

    .about__image {
        position: static;
        width: auto;
        height: auto;
        max-width: 25rem;
        max-height: 25rem;
        border-radius: 0.25rem;
        display: block;
    }

    .about__mission {
        width: 100%;
    }

    .about__link {
        width: 100%;
        max-width: 45rem;
    }
}

@media(max-width: 768px) {
    .about__media { display: none; }
    .about__wrapper { grid-template-columns: 1fr; }
    .about__link { max-width: 100%; }
}