/* custom-events.css */

/*-- -------------------------- -->
<!--       Tab Style            -->
<--- -------------------------- -*/
.event-card-middle summary {
    font-size: 24px;
	margin-bottom: 10px;
    transition: margin 150ms ease-out;
}
.event-card-middle details[open] summary {
  margin-bottom: 20px;
}
.event-card-middle details {
    cursor: pointer;
    user-select: none;
    padding-bottom: 10px;
}
details ul {
    text-align: left;
}
.event-card a {
	color:#ce160d;
}
.entry-title {
	display:none;
}
/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  border-radius: 30px;
  transition: 0.3s;
  font-size: 17px;
  font-family: 'Fugaz One';
  background-color: #202020;
	color: #666;
	margin: .2rem
}
.tab .active {
	color: #fff;
}
/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ee000091;
	color: #fff;
}
/* Create an active/current tablink class */
.tab button.active {
  background-color:#ee0000;
}
/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
  min-height: 100vh;
}
.event-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 20px;
    background-color: #292929; margin: 10px 0;
    color: #fff;
    min-height: 18em;
}
.event-card-middle {
    flex: 2;
    border-right: 2px solid #ce160d;
    /*font-family:'Fugaz One';*/
}
.event-card-sponsor img {
    max-height: 200px;
    width: auto;
    display: block;
    margin: auto;
}
.event-card h3 {
    color:#fff;
    font-family: 'Fugaz One';
    margin-bottom:12px;
    text-transform:uppercase;
    font-weight:300;
}
.event-card .sponsor {
    margin: 0; font-size: 16px; font-weight: 600;
    font-family: 'Fugaz One';
    text-transform: uppercase;
}
.event-subtitle {
    text-transform: uppercase;
    font-size: 18px !important;
    letter-spacing: 3px;
    font-style: italic;
    font-weight: 600;
    margin-bottom:6px !important;
}

li {
    font-family: var(--font-family--system);
}
.event-card-logo {
    flex:1;
    display: flex; 
    align-items: baseline;
    justify-content:center;
    align-items: center;
}
@media screen and (max-width:800px) {
    .event-card {
        flex-direction:column;
        text-align:center;
    }
    .event-card-middle {
        border-right:none;
        border-bottom: 2px solid #ce160d;
    }
    .desktop-details {
        display:none
    }
}
@media screen and (min-width:0px) {
    .tab {
        overflow: hidden;
        padding:0 10px;
        display: flex;
        flex-direction: column;
    }
    .event-brush {
        background-image: url(images/events-brush.png);
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 10px 40px;
        font-family: 'Fugaz One';
        font-size: 18px;
        text-align:center;
        white-space: break-spaces;
        flex-direction:column;
    }
}
@media screen and (min-width:501px) {
    .event-brush {flex-direction:unset;}
}
@media screen and (min-width:601px) {
    .tab {
        display:block;
    }
}
@media screen and (min-width:801px) {
    .event-card-middle {
        padding-right:20px;
    }
    .mobile-details {
        display:none
    }
}