/* work content styles ------------------------------ */
.header {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0);
}
.mainWork {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 2vh;
    row-gap: 2vh;
    box-sizing: border-box;
    width: 100%;
    justify-content: center;
    justify-items: center;
    background-color: var(--primaryColour);
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 2vh;
    padding-bottom: 2vh;
}
.workEntryContainer {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    width: 100%;
    border-radius: 5px;
    background-color: var(--backgroundColour);
    z-index: 90;
    padding: 2vw;
}
.festivalLink {
    text-decoration: underline;
}
.festivalLink:hover {
    color: cornflowerblue;
}
.workYTEmbed {
    width: 100%;
    height: 30vh;
    z-index: 9;
    border-radius: 5px;
    align-self: center;
}
h1 {
    font-size: clamp(1.3rem, 1.6vw, 2rem);
    font-weight: bold;
    white-space: nowrap;
    box-sizing: border-box;
    margin-top: 1vh;
    margin-bottom: 1vh;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;

}
li {
    margin: 0;
    box-sizing: border-box;
    font-size: clamp(0.8rem, 0.8vw, 1.2rem);
    line-height: 130%;
    list-style-position: outside;
}
/* work responsive styles */
@media screen and (max-width: 1400px) {
    .mainWork {
        grid-template-columns: 1fr 1fr;
        column-gap: 2vw;
        justify-content: space-evenly;
    }
    
}
@media screen and (max-width: 650px) {
    .mainWork {
        grid-template-columns: 1fr;
    }
    .workEntryContainer {
        width: 100%;
        padding: 4vw;
    }
}

