@media (min-width: 650px) {
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 900px) {
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 1500px) {
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }
}

/*
 * The masthead. The theme's h1 is sized for a card heading; the one line a
 * new visitor reads first gets to be bigger than that, and to shrink with the
 * screen rather than wrap into four lines on a phone.
 */
.hero-title {
    font-size: calc(1.5rem + 1.2vw);
    font-weight: 700;
    line-height: 1.2;
}

/*
 * The week in figures, in a row: how many experts, how many players, how many
 * positions, what it costs. Each number sits over its label.
 */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.hero-stats li {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #212832;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: #69707a;
}

/* The numbered circles beside the three steps. */
.hero-steps .icon-stack {
    font-size: 0.9rem;
}

/*
 * The buttons in the masthead scroll to the free panels and to the tables.
 * The top nav is fixed, so without this the target lands under it.
 */
#free-picks,
#tables,
#season-pass {
    scroll-margin-top: 5rem;
}

/*
 * The Season Pass card. The two lists -- what is free, what the pass adds --
 * are ticked rather than bulleted, grey ticks for the free column and the
 * theme's blue for the pass, so the eye lands on the paid one.
 */
.paywall-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.5rem;
}

.paywall-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.65rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

.paywall-list-free li::before {
    background-color: #a7aeb8;
}

.paywall-list-pass li::before {
    background-color: #0061f2;
}

.paywall-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
}

@media (min-width: 992px) {
    .paywall-price {
        justify-content: flex-start;
    }
}

.paywall-price-amount {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #212832;
}

.paywall-price-terms {
    font-size: 1rem;
    color: #69707a;
}

/*
 * The full price, crossed out beside the discounted one. Sized against the
 * amount it sits next to rather than fixed, since it appears both in the
 * paywall price line and in the smaller masthead stat.
 */
.price-was {
    font-size: 0.6em;
    font-weight: 400;
    color: #69707a;
}

/*
 * The pictures beside the three steps, and the icons on the feature tiles.
 * Fixed widths, so an illustration drawn tall and one drawn wide take the
 * same room and the text beside them lines up.
 */
.hero-step-art {
    width: 7rem;
    height: 5.5rem;
    object-fit: contain;
}

.hero-feature-icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.hero-features .badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Where to follow, at the foot of the side nav: a row of icons in the
   nav's own grey, warming to the theme's blue under the pointer, in place
   of the two rows of text they used to be. */
.sidenav-social {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem 0.75rem 1.25rem;
}

.sidenav-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 100%;
    color: #69707a;
    font-size: 1.1rem;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.sidenav-social-link:hover,
.sidenav-social-link:focus {
    background-color: #dde9fd;
    color: #0061f2;
}
