/**
 * Meet the Team - Hero
 */

.mtt-hero {
    background-color: #26282a;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mtt-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-bottom: 4rem;
    padding-top: 8rem;
}

.mtt-hero__title-col {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    max-width: 604px;
}

.mtt-hero__title {
    color: #fff;
    font-family: var(--font-aeonik);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.05;
    text-wrap: balance;
    margin: 0;
}

.mtt-hero__highlight {
    color: #f25d21;
}

.mtt-hero__desc-col {
    max-width: 571px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 2rem;
}

.mtt-hero__description {
    color: #e8e8e8;
    font-family: var(--font-aeonik);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
    text-wrap: pretty;
    margin: 0;
}

.mtt-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mtt-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 1.5rem;
    color: #fff;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
}

.mtt-hero__cta:hover {
    text-decoration: none;
}

.mtt-hero__cta--primary {
    background-color: #f25d21;
    border: 1px solid transparent;
    box-shadow: 0 0 1px 0 rgba(242, 93, 33, 0.5) inset, 0 0 1px 0 rgba(242, 93, 33, 0.5);
}

.mtt-hero__cta--outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .mtt-hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mtt-hero__title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .mtt-hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .mtt-hero__title {
        font-size: 2.5rem;
    }

    .mtt-hero__grid {
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .mtt-hero__title {
        font-size: 2rem;
    }
}
