﻿h2 {
    text-align: center;
    padding: 24px 0;
}

#banner {
    padding: 10px 20px;
    background-color: var(--premium);
    color: white;
    font-size: 22px;
}

#banner img {
    margin-right: 8px;
}

#offer {
    margin: 40px 30px 20px 30px;
    text-align: center;
    position: relative;
    text-wrap: balance;
}

#offer div.logo {
    font-size: 45px;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

#offer .pricewrap {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

#offer .price {
    position: relative;
}

#offer .price .current {
    font-size: 120px;
    font-weight: bolder;
    color: var(--premium);
    line-height: 120px;
}

#offer .price .prev {
    position: absolute;
    top: 0px;
    left: -30px;
    font-weight: bold;
    font-size: 24px;
    color: var(--priLight);
}

#offer .price .prev:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 4px solid;
    border-color: var(--primary);
    opacity: 0.5;
    transform: rotate(-35deg);
}

#offer .term {
    font-weight: bold;
    font-size: 22px;
    color: var(--priLight);
}

#offer .notes {
    text-align: left;
}

.links {
    margin: 20px 0 0 0;
    padding: 30px 20px;
    text-align: center;
    font-size: 18px;
    background-color: var(--bgLight);
}

.links a {
    color: var(--accent);
    text-decoration: underline;
}

#features {
    padding: 0 20px 20px 20px;
}

table.features { 
    margin: 0 auto;
}

@media only screen and (max-width: 600px) {

    #offer {
        margin: 20px;
    }

    #offer div.logo {
        font-size: 30px;
        gap: 10px;
    }

    #offer div.logo img {
        height: 50px;
    }
}

@media screen and (min-width: 768px) {

    .hide-on-desktop {
        display: none;
    }
}

/* ---------- Highlights Partial ---------- */
#highlights {
    margin: 0 30px;
}

#highlights .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 8px;
    column-gap: 48px;
    margin-bottom: 20px;
}

#highlights div.image {
    text-align: center;
}

#highlights div.title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--premium);
}

#highlights ul {
    font-size: 14px;
    padding-left: 20px;
}

@media only screen and (max-width: 1000px) {

    #highlights .grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 8px;
        column-gap: 24px;
    }
}

@media only screen and (max-width: 600px) {
    #highlights .grid {
        grid-template-columns: 1fr;
        row-gap: 8px;
        column-gap: 24px;
    }
}

/* ---------- PremiumFaq Partial ---------- */
#premiumfaq {
    padding: 10px 30px 30px 30px;
}

#premiumfaq .question {
    font-size: 18px;
    font-weight: bold;
    color: var(--premium);
}

#premiumfaq ul {
    font-size: 14px;
}

@media only screen and (max-width: 600px) {
    #premiumfaq {
        padding: 0 20px;
    }
    #premiumfaq ul {
        padding-left: 20px;
    }
}
