
/*Main body background color*/
.main-body{
    background: linear-gradient(60deg, #d6eaf8, #135480); 
}  


/*Heading*/
h1{
    text-align: center;
    font-size: clamp(3rem, 1rem + 2.5vw, 4rem);
    padding: calc(1rem + 1vh) 20%;
}

/*Events List -- Main Body*/
.events-list{
    padding: calc(1rem + 1vh) calc(15rem + 1vw);
    font-size: clamp(1.25rem, 0.25rem + 1.25vw, 1.75rem);
}

.events-list li{
    padding-bottom: calc(1rem + 1vh);
}
.indent{
    text-indent: 3rem;
    list-style-type: none;
}

.events-list a{
    text-decoration: none;
}
.events-list a:hover{
    text-decoration: underline;
}

.no-list{
    list-style-type: none;
}

/*National & Local forums*/
.events-wrapper{
    display: flex;
    flex: row;
    height: 90vh;
}

.events-grid{
    width: 50vw;
    height: 80vh;
    position: relative;
}

.events-grid img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%) contrast(80%);
}

.events-grid-text{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 30% auto;
    text-align: center;
    color: #fff;
    font-size: clamp(3.5rem, 2.5rem + 1.25vw, 4rem);
    font-weight: 600;
}

.events-grid a{
    text-decoration: none;
    color: inherit;
}

.events-grid:hover img{
    transition: transform 0.5s ease;
    transform: scale(1.25);
    margin: 0;
    object-fit: cover;
}
.events-grid:hover{
    overflow: clip;
    cursor: pointer;
}


/*People list*/
.people-table{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: calc(1rem + 1vh) 0;
    font-size: clamp(1.25rem, 0.25rem + 1.25vw, 1.75rem); 
}
.people-table--cols{
    height:;
    width:;
    padding: 0 2vw;
    display: flex;
    flex-direction: column;
    gap: 4vh;
}
#people-table--col-1{
    text-align: right;
}

#people-table--col-2{
    text-align: center;
}

.people-table--text:last-child{
    
    padding-bottom: calc(1rem + 1vh);
}


