<style>
    /* Basic container */
    .inferno-lineup {
        margin: 2rem 0;
        padding: 1.5rem 1.75rem 2rem;
        background: #111;
        color: #f5f5f5;
        border-top: 4px solid #ed524e; /* Inferno red */
        border-bottom: 1px solid #333;
        font-family: inherit; /* let the site font win */
    }

    .inferno-lineup h2 {
        margin: 0 0 1rem;
        font-size: 1.4rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #ed524e;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

    .lineup-days {
        display: grid;
        gap: 1.5rem;
    }

    .lineup-day {
        border: 1px solid #333;
        padding: 1rem 1rem 1.25rem;
        background: #181818;
    }

    .lineup-day-header {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: space-between;
        margin-bottom: 0.75rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

    .lineup-day-name {
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 700;
	margin-bottom:-1rem;
    }

    .lineup-day-date {
        font-size: 0.9rem;
        opacity: 0.8;
    }
    .lineup-stages {
        display: grid;
        gap: 1rem;
        /* Two columns when there is space, automatically falling back to one */
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        align-items: flex-start;
    }

    .stage {
        padding: 0.5rem 0 0;
    }

    .stage-name {
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin: 0 0 0.5rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.25rem;
    }

    .stage-name--rockefeller {
        color: #ed524e;
    }

    .stage-name--johndee {
        color: #f0f0f0;
    }


    .stage-name--club {
        color: #f0f0f0;
		margin-bottom: -0.75rem;
    }

    .band-list {
        list-style: none;
        margin: 0;
        padding: 0;
        font-size: 0.95rem;
    }

    .band-list li {
        padding: 0.15rem 0;
        border-bottom: 1px dotted #333;
    }

    .band-list li:last-child {
        border-bottom: none;
    }

    .band-time {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        opacity: 0.75;
        margin-right: 0.35rem;
    }

    .lineup-note {
        margin-top: 1.25rem;
        font-size: 0.8rem;
        opacity: 0.75;
    }

	.img-tooltip {
	  position: relative;
	  display: inline-block;
	  img {
		margin-bottom: -1px;
		margin-left: -3px;
	  }
	}
	
	.img-tooltip .tooltip-text {
	  visibility: hidden;
	  opacity: 0;
	  transition: opacity 0.2s ease;
	  
	  position: absolute;
	  bottom: 110%; /* move tooltip above the image */
	  left: 50%;
	  transform: translateX(-50%);
	  
	  background: #111;
	  color: #fff;
	  padding: 6px 10px;
	  font-size: 0.85rem;
	  border-radius: 3px;
	  white-space: nowrap;
	  
	  z-index: 10;
	}
	
	.img-tooltip:hover .tooltip-text {
	  visibility: visible;
	  opacity: 1;
	}



</style>



/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
