@import url('base.css');

@keyframes fadeStart {
	0% {
		opacity: 0;
		transform: translate(10px);
	}
	100% {
		opacity: 1;
	}
}

.mediaLinks {
    display: flex;
    align-items: center;
}

.mediaLinks p {
    padding-right: 10px;
}

.PostBase, .GeneralBase{
    width: 80%;
    margin-left: auto;
    margin-right: auto;

    opacity: 0;
    animation: fadeStart 0.5s 0.1s forwards;
}

.videoContainer {
    display: flex;
    justify-content: center;
}

.PostBase p {
    font-family: 'Overpass';
    padding: 8px 0;
    font-size: 1.25em;
}

.PostBase h3 {
    transition: 0.1s ease-out;
    font-size: 2em;
}
.PostBase h4 {
    font-size: 1.5em;
}

.PostBase h1 {
    font-size: 1.5em;
}

.PostBase a {
    font-family: 'Overpass';
}

.PostBase ul > p {
    font-size: 1em;
}

.PostBase ul {
    font-family: 'Overpass';
    font-size: 1.25em;
}

.centerText {
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: 'Overpass';
    font-size: 1.25em;
    color: #fff;
}

/* Item for each production entry on Animations and SFX work. */
.production-entry {
    padding: 20px;
    /* min-width: 256px; */
	background-repeat: no-repeat;
	background-size: cover;
    background-position: 50% 50%;
    margin-bottom: 30px;
    position: relative;
    
    min-height: 140px;
    border-radius: 8px;

    transition: 40ms ease-out;
}

.production-entry > h3 {
    text-shadow: 0px 1px 3px black;
    position: absolute;
    bottom: 2px;
}

.production-entry > p {
    text-shadow: 0px 1px 3px black;
    position: absolute;
    bottom: 30px;
}

.production-entry > p[id="collab"] {
    text-shadow: 0px 1px 3px black;
    top: 8px;
    bottom: initial;
    padding: 4px 10px;
    background-color: #20202010;
    border-radius: 12px;
    font-size: .8em;

    backdrop-filter: blur(10px);
    border: #f0f0f090 2px solid
}


.production-entry:hover {
    scale: 1.02;
}

details {
	color: white;
	font-family: 'Overpass';
    border: 2px solid #fff;
    padding: 4px 8px;
    border-radius: 8px;
}

.cardViews {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 12px;
    flex-wrap: wrap;
}

blockquote {
  background: #000;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}

@media only screen and (max-width: 1100px) {
    .production-entry > h3 {
        font-size: 2.8vw;
    }

    .production-entry > p {
        font-size: 1.8vw;
    }
}

@media only screen and (max-width: 500px) {
    :root {
		--header-gap: 140px;
	}
    header {
        flex-direction: column;
    }

    .production-entry > h3 {
        position: absolute;
        bottom: 2px;
        font-size: 5vw;
    }

    .production-entry > p {
        position: absolute;
        bottom: 20px;
        font-size: 3vw;
    }

    .cardViews {
        display: flex;
        flex-direction: column;
    }

    .production-entry {
        padding: 10px;
        background-size: cover;
        min-height: 140px;
        border-radius: 8px;
    }

    .production-entry:hover {
        scale: 1.05
    }

    .production-entry:hover > h3 {
        font-size: 5vw;
    }
}