main > section {
    margin-bottom: 5rem;

    @media (max-width:800px) {
        margin-bottom: 2rem;
    }
}

main > section:not(.hero) {
    margin-inline: 13%;
    padding-top: 1px; /* prevent margin collapsing */

    @media (max-width:800px) {
        margin-inline: 2rem;
    }
}

.section-title {
    margin-bottom: 3rem;
}

main > section p {
    margin-bottom: 1rem;
    line-height: 1.5rem;
    font-size: 1.125rem;
}

h3 {
    font-size: 2.625rem;
    line-height: 3rem;
    margin: 3rem 0 2rem;

    @media (max-width:800px) {
        font-size: 1.5rem;
    }
}

.bullet-list {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;

    @media (max-width:800px) {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    @media (max-width:500px) {
        width: 100% !important;
        display: flex;
        flex-direction: column !important;
    }
}

.bullet-list div {
    width: 50%;
    @media (max-width:500px) {
        width: 100% !important;

    }
}

.bullet-list p {
    display: flex;
}

.bullet-list p span {
    color: hsl(var(--base-red-500));
    margin-right: 1rem;
    display: block;
    height: 100%;
}

.funky-cards {
    display: flex;
    justify-content: left;
    gap: 2.5rem;

    @media (max-width:1100px) {
        flex-direction: column !important;
    }

    @media (max-width:800px) {
        gap: 1rem;
    }
}

.funky-cards p {
    display: block;
    padding: 2.5rem;
    text-align: center;
    background-color: hsl(var(--base-grey-300));
    height: fit-content;
    width: fit-content;
    flex: 1 1 25%;

    @media (max-width:1100px) {
        width: unset !important;
    }
}

.funky-cards p:nth-child(2n) {
    margin-top: 2.5rem;
    @media (max-width:1100px) {
        margin-top: unset !important;
    }
}

.commitments-section{
    display: flex;
    align-items: center;

    @media (max-width:1200px) {
        flex-direction: column;
    }
}

.commitments-img{
    width: 50%;
    height: max-content;
    margin-right: 3rem;

    @media (max-width:1200px) {
        width: 80%;
        margin: 0;
        margin-bottom: 3rem;
    }
    @media (max-width:500px) {
        width: 100%;
    }
}

.block-public-auction-img{
    text-align: center;
    margin-bottom: 3rem;
}

.public-auction-img{
    width: 60%;
    @media (max-width:1200px) {
        width: 80%;
    }
    @media (max-width:500px) {
        width: 100%;
    }
}