section.title p,
#sponsorships p,
#sponsorships li,
#sponsor-details p {
    font-size: 1.25rem !important;
}

@font-face {
    font-family: "News Gothic Condensed";
    src: url("/fonts/NewsGoth%20Cn%20BT%20Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "News Gothic Condensed";
    src: url("/fonts/News%20Gothic%20Condensed%20Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

section.title,
header.divider,
#sponsorships,
#sponsor-details {
    font-family: "News Gothic Condensed", "Roboto", sans-serif;
    font-weight: 400;
}

section.title h1,
header.divider h2,
header.divider h3,
#sponsorships h2,
#sponsor-details h3,
.tier h3,
.tier .price,
.tier .button {
    font-weight: 700;
}

#sponsorships {
    background: #f4f4f4;
    padding: 50px 0;
    margin-top: 0;
}

#sponsorships .tiers {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.tier {
    flex: 1 1 320px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    padding: 6px;
    background: #fbbf25;
    box-shadow: 0 8px 24px rgb(149 157 165 / 25%);
}

.tier.silver {
    background: #c9cbcc;
}

.tier.bronze {
    background: #9c7327;
}

.tier h3 {
    margin: 0;
    padding: 14px 20px;
    text-align: center;
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: .5px;
    color: #000;
}

.tier.bronze h3 {
    color: #fbbf25;
}

.tier .card {
    background: #1c1c1c;
    color: #fff;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tier .passname {
    text-align: center;
    margin: 0;
    font-size: 20px;
    font-weight: 400;
}

.tier .price {
    text-align: center;
    margin: 5px 0 20px;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: #fbbf25;
}

.tier.silver .price {
    color: #fbbf25;
}

.tier ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    flex-grow: 1;
}

.tier ul li {
    position: relative;
    padding-left: 18px;
    margin: 12px 0;
    line-height: 1.4em;
    font-size: 17px;
}

.tier ul li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #fbbf25;
}

.tier .button {
    text-align: center;
    text-transform: uppercase;
    border-radius: 6px;
}

#sponsor-details .row {
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
}

#sponsor-details .box {
    background: #fff6e9;
    padding: 40px;
    flex: 1 1 45%;
    border-radius: 10px;
}

#sponsor-details .box h3 {
    margin-top: 0;
    text-transform: uppercase;
}

#sponsor-details address {
    font-style: normal;
    font-size: 18px;
    line-height: 1.6em;
    font-weight: bold;
    margin: 15px 0;
}

#sponsor-details .box p {
    line-height: 1.5em;
}

#sponsor-details .box a {
    color: #a07200;
    font-weight: bold;
}

header.divider h3 {
    color: #fff;
    font-weight: 400;
}

header.divider {
    background: #000;
    color: #fff;
}

@media only screen and (max-width: 800px) {
    #sponsorships .tiers {
        flex-direction: column;
        align-items: center;
    }

    .tier {
        width: 90%;
        max-width: none;
    }

    #sponsor-details .box {
        width: 90%;
        margin: 10px auto;
        padding: 25px;
        box-sizing: border-box;
    }
}