.revolve-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 4.5em;
    grid-row-gap: 7.5em;
}

a.revolve_video {
    min-height: 20em;
    border-radius: 1.5em;
    border: 3px solid black;
    padding: 13px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    background-size: cover;
    background-color: #23262a;
}

.revolve-video__number {
    font-family: 'Recoleta';
    color: white;
    font-weight: bold;
    font-size: 2.5em;
    position: absolute;
    top: 3rem;
    z-index: 1;
}

.revolve-video__date {
    font-family: 'Recoleta';
    color: #92aa39;
    font-weight: bold;
    z-index: 1;
}

.revolve-video__title {
    font-size: 1.5em;
    font-family: 'Recoleta';
    font-weight: bold;
    margin-top: 0.2em;
    color: white;
    line-height: 1.2;
    z-index: 1;
}

.revolve-video__overlay {
    position: absolute;
    background-color: black;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 1.3em;
    opacity: 0;
    transition: all 0.5s;
    z-index: 0;
}

a.revolve_video:hover .revolve-video__overlay {
    opacity: 0.66;
}

@media only screen and (max-width: 768px) {
  .revolve-videos {
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: flex-start;
  }
}
