
.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1em;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.price-grid p {
    margin: 0.3em 0;    
}

.price-grid > div:first-child {
    text-align: right;
}

.price-grid > div:first-child p {
    padding: 0.3em 0; 
}

.price-grid > div:last-child {
    text-align: left;
    font-size: 0.8rem;
}

.star-banner {
    text-align: center;
    margin: 0;
    margin-bottom: 1em;;
}

.star-banner span {
    font-size: 1.5rem;
    color: var(--theme-blue-dark);
    margin: 0 0.5em;
}

.section-header {
    margin-bottom: 1em;
    /* background-image: url("../img/star-cluster.svg"); */
    background-size: 50% auto;
    background-repeat: no-repeat;
    background-position: right top;
    border-bottom: 8px solid var(--theme-grey-dark);
}

.section-header > div:first-child {
    font-size: 2.2rem;
    color: var(--theme-grey-dark);
    margin: 0;
    display: flex;
}

.section-header > div:first-child > div:first-child {
    font-weight: bold;
}


.section-header > div:first-child > div:last-child {
    border-bottom: solid 1px var(--theme-grey-dark);
    flex-grow: 1;
}

.section-header h1 {
    font-size: 3rem;
    margin: 0.5em 0;
    color: var(--theme-grey-dark);
    font-weight: normal;
}

.card {
    padding: 1em 0.5em;
    border: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 2px 2px rgba(0,0,0,0.1);
    border-radius: 1em;
}

.card-content {
    text-align: center;
    
}

.card-header {
    text-transform: uppercase;
    text-align: center;
}

.pricing a.button-link {
    padding: 0.4em 0;
    width: 80%;
    margin: auto;
    display: inline-block;
    background-color: var(--theme-blue-darkest);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: x-large;
    font-weight: bold;
    /* box-shadow: 5px 5px 10px rgba(57, 157, 238, 0.3); */
}

.pricing a.button-link:hover, .pricing a.button-link:focus-visible {
    background-color: var(--theme-blue-dark);
    text-decoration: none;
    color: white;
}

.pricing a.button-link:active {
    color: white;
    background-color: var(--theme-blue-darkest);
}

span.price {
    font-weight: bold;
    color: var(--theme-orange-darkest);
    font-size: x-large;
}

#card-free .card-header {
    padding-top: 2.7em;
    padding-bottom: 5.3em;
}

#card-free .card-content a.button-link {
    color: var(--theme-blue-darkest);
    background-color: white;
    border: 1px solid var(--theme-blue-darkest);
}

#card-free .card-content a.button-link:hover, #card-free .card-content a.button-link:focus-visible {
    color: white;
    background-color: var(--theme-blue-dark);
    border: 1px solid var(--theme-blue-dark);
}

.pricing {
    padding: 1em 1em 0 1em;
    text-align: center;
}

.card-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

#product-description {
    font-family: "Cabin", "Verdana", sans-serif;
    padding-top: 1em;
    font-size: 1.4rem;
    text-align: justify;
}

#card-premium .card-header>div:last-child {
    font-size: medium;
}

#card-premium .card-header>div:last-child {
    font-size: small;
    text-transform: none;
}

#elephant-on-ball {
    height: 6rem;
    transform: translate(-0.5em, 0.15em);
}

.pricing ul.feature-list {
    display: inline-block;
    text-align: left;
    padding: 0 0 0 1.5em;
    list-style: disc;
    margin: auto;
    font-size: large;
    color: var(--theme-blue-darkest);
    font-weight: bold;
    min-height: 20em;
}

.pricing ul.feature-list li {
    margin: 0.1em 0;    
}

.pricing ul.feature-list li::marker {
    color: var(--theme-orange);
    font-size: 1.5em;
}
