/* ============================================
   COMPONENTS - HOME PAGE PRICE GRID
   Used in home.php ticket price display card
   ============================================ */

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    width: 100%;
    margin-bottom: .75rem;
}

.price-grid-cell {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 12px;
    padding: .7rem .9rem;
    text-align: center;
}

.price-grid-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .3rem;
}

.price-amount {
    font-family: var(--font-chewy);
    font-size: 1.9rem;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

.price-cents {
    font-size: 1rem;
    vertical-align: super;
}

.price-na {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    font-style: italic;
    line-height: 1.3;
    margin-top: .25rem;
}

.price-footnote {
    font-size: .75rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: .75rem;
    text-align: center;
}
