.main h1 {
    font-size:4em;
    font-weight:300;
    margin-bottom:1em;
    color:#fff9b8; /* pale yellow */
    margin-top:5%;
}

/* tour dates */

.sm {
    margin-bottom:3rem;
}

.main .show-type {
    font-weight:bold;
    color:var(--yellow);
}

.venue {
    float:left;
    clear:left;
    width:100%;
    margin-bottom:0.25em;
    background-color:#779f05; /* green */
    border-radius: 0.25em;
}

    .venue-date {
        float:left;
        width:10%;
        background-color:#0d4232; /* dark green */
        padding:1em;
        margin-right:2%;
        border-radius: 0.25em;
    }
    
        .main .day,
        .main .month,
        .main .year {
            text-align: center;
            width:100%;
            margin-bottom:0;
        }
        
        .venue-date div {
            float:left;
            width:50%;
        }
    
        .main .day {
            color:#fff;
            font-size:3em;
            line-height: 1;
        }
        
        .main .month {
            font-size:1.3em;
            color:#fffaa8; /* yellow */
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            line-height: 1;
        }
        
        .main .year {
            font-size:1em;
            color:#fff;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }
    
    .venue-main {
        float:left;
        width:100%;
        padding:0.75em;
        text-align: left;
    }
    
        .venue-main .text {
            float:left;
            width:66%;
        }
    
        .venue-main h2 {
            float:left;
            font-size:2em;
            font-weight:300;
            margin-bottom: 0;
            color:#fffaa8; /* yellow */
            display:grid;
            grid-template-columns: max-content max-content max-content;
            grid-gap:0.25rem;
        }

            .venue-main h2 span {
                font-weight:400;
                color:#0d4232; /* dark green */
            }

            .venue-main h2 span.country {
                background-color:var(--dgreen);
                color:#fff;
                font-size:0.7rem;
                padding:0.25rem;
                border-radius:0.2rem;
                line-height:1.3;
                letter-spacing: 0;
            }
        
        .main p.time {
            float:left;
            clear:left;
            font-size:1.2em;
            margin-bottom:0;
            color:#0d4232; /* dark green */
        }
    
    .venue-buy {
        float:right;
        width:20%;
        background-color:#779f05; /* green */
    }
    
        .venue-buy a {
            float:left;
            background-color:#0d4232; /* dark green */
            width:100%;
            padding:1em;
            color:#fff;
            font-size:1.6em;
            text-align: center;
            text-decoration: none;
            border-radius: 0.25em;
        }
        
            .venue-buy .soon,
            .venue-buy .sold-out,
            .venue-buy .soon:hover,
            .venue-buy .sold-out:hover{
                background-color:#999;
            }

            .venue-buy a p {
                font-size:1em;
                margin:0;
                color:#fff;
            }
            
            .venue-buy a p.lastfew {
                display:inline-block;
                text-transform: uppercase;
                padding:0.1em 0.75em;
                clear:both;
                font-size:0.7em;
                background-color:var(--yellow);
                color:#000;
                margin-bottom:0;
                border-radius:100em;
                font-weight:bold;
            }
            
            .venue-buy a:hover {
                background-color:#a6cb03;
            }



        

@media screen and (max-width:1250px){
    .venue-date div {
        width:100%;
    }
}

@media screen and (max-width:949px) {
    
    .main .venue-buy a {
        font-size:1.4em;
    }
    
    .main .day {
        font-size:3em;
    }
}

@media screen and (max-width:649px) {
    
    .venue-date {
        width:25%;
    }
    
    .venue-main .text {
        width:73%;
    }
    
    .venue-main h2 {
        font-size:2em;
    }
    
    .venue-buy {
        float:left;
        clear:left;
        width:100%;
        padding:0;
        margin-top:2%;
    }
    
}

@media screen and (max-width:599px) {
    .main table td {
        display:block;
        text-align: center;
        width:100% !important;
        margin-bottom:1em;
    }

        .main table td h3 {
            margin-bottom:0;
            font-size:2em;
        }
}

@media screen and (max-width:419px) {
    .venue-buy {
        width:100%;
    }

    .people {
        grid-template-columns:1fr;
    }
}

@media screen and (max-width:299px) {
    .main .day {
        font-size:3em;
    }
}