.gitl-wrap {
    padding: 0px;
    font-size: clamp(16px, 1.6vw, 20px);
}
.gitl-title {
    color: inherit;
    text-align: center;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1;
    margin: 0 0 25px;
    font-weight: 800;
    padding: 18px 20px;
}


.gitl-title.gitl-past-title {
	font-size: 1.7em;
	margin-top: 50px;
}

.gitl-table {
    width: 100%;
}

.gitl-head,
.gitl-row {
    display: grid;
    grid-template-columns: 150px auto;
    gap: 15px;
    align-items: start;
}
.gitl-head {
	display: none!important;
	/*
    border: 2px solid #ffffff;
    margin: 0px 0px 25px 0px;
    background: var(--gitl-muted);
    padding: 0px 20px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ffffff !important;
	*/
}

.gitl-row {
    padding: 25px;
    font-weight: 400;
    margin: 0px;
    background: #ffffff00;
    border: 0px #e2e6e8 solid;
}

.gitl-row:nth-child(even) {
    background: rgba(45, 45, 45, 0.5);
}

.gitl-date,
.gitl-main,
.gitl-head-main {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.gitl-date span {
    display: block;
}

.gitl-location-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding-top: 2px;
}

.gitl-ticket {
    display: inline-block;
    border: 2px solid #d31133;
	border-radius: 50px;
    color: #ffffff;
	background: #d31133;
    padding: 2px 12px;
    font-weight: 400;
	font-size: 0.9em;
	position: absolute;
    right: 2vw;
}

.gitl-ticket:hover {
    color: #d31133;
	background: #ffffff;
}

.gitl-error {
    color: #b00020;
    font-weight: 700;
}

div.gitl-past .gitl-ticket {
	display: none!important;
}

@media (max-width: 760px) {
    	.gitl-head { 
		display: none; 
	}
	
    .gitl-row {
        grid-template-columns: lfr;
        gap: 8px;
        padding: 18px 16px;
    }

    .gitl-date {
        font-weight: 600;
    }

    .gitl-date,
    .gitl-main,
    .gitl-head-main {
        gap: 0rem !important;
    }
}

.gitl-summary {
    font-size: 1.3em;
	font-weight: 600;
}

.gitl-date > span:first-child {
    
    font-size: 1.2em;
    padding-top: 2px;
}