/* Detail */
.detail {
    text-align: unset;
    padding: 3rem 1rem;
    max-width: 1300px;
    margin: auto;
}

.sponsor {
    padding-top: 0rem;
}

.sponsor h2 {
    font: var(--font-race);
    font-size: 2.2rem;
    color: var(--blue-ocean);
    margin: .5rem 0rem;
}


.sponsor div {
    display: flex;
    gap: 2rem;
    justify-content: space-evenly;
}

.sponsor img {
    border-radius: 25px;
}


@media screen and (max-width: 465px) {
    .sponsor div {
        flex-direction: column;
        align-items: center;
    }

    .sponsor img {
        max-width: 100%;
    }

    .detail p {
        text-align: justify
    }
}