body, html {
    background-color: #000;
}

#info {
    padding-block: 9.5rem 0;

    background-image: url("/equipment.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
    isolation: isolate;
}
#info::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #000, #000000cc);
    z-index: -1;
}
#info::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 5rem;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: -2;
}

/* Info Article */

article h2 {
    margin-block: 5rem;

    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
    text-transform: uppercase;
    color: var(--accent-yellow);
}

article h3 {
    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 3.3rem;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;

    margin-block: 3rem;
}
article p {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.35;
    color: #ccc;

    text-wrap: pretty;
    text-align: justify;
    overflow-wrap: break-word;
    hyphens: auto;

    margin-bottom: 3rem;

    & a, & b {
        font-size: inherit;
        font-weight: inherit;
        font-style: inherit;
        color: var(--accent-yellow);
    }
    & a {
        text-underline-offset: 3px;
        text-decoration-thickness: from-font;
    }
}

article ul {
    margin-left: 5rem;
    margin-bottom: 3rem;
}
article li {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.35;
    color: #fff;

    margin-bottom: 1rem;
}


@media (max-width: 1250px) {
    #info article {
        display: grid;
        place-items: center;
        gap: 2rem;
    }
}