#media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 6%;
       column-gap: 6%;
}
@media screen and (max-width: 1000px) {
  #media {
    grid-template-columns: repeat(1, 1fr);
  }
}
#media figure {
  margin: 0 0 15% 0;
}
@media screen and (max-width: 1000px) {
  #media figure {
    margin: 0 0 10% 0;
  }
}
@media screen and (max-width: 1000px) {
  #media figure:last-child {
    margin: 0 !important;
  }
}
#media figure:nth-last-child(-n+3) {
  margin: 0;
}
@media screen and (max-width: 1000px) {
  #media figure:nth-last-child(-n+3) {
    margin: 0 0 10% 0;
  }
}
#media figure img {
  margin: 0 0 8% 0;
}
@media screen and (max-width: 1000px) {
  #media figure img {
    margin: 0 0 4% 0;
  }
}
#media figure figcaption .date {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  margin: 0 0 1% 0;
}
#media figure figcaption h3 {
  font-size: 100%;
  font-weight: 500;
  text-align: left;
  margin: 0 0 3% 0;
}
#media figure figcaption .toggle {
  width: 100%;
  padding: 0 20px 0 0;
  cursor: pointer;
  position: relative;
}
#media figure figcaption .toggle:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  right: 0;
  top: 8px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(135deg);
  transition: 0.2s;
}
#media figure figcaption .toggle.open:after {
  transform: rotate(-45deg);
}
#media figure figcaption .text {
  display: none;
  margin: 0 0 3% 0;
  line-height: 1.5;
  text-align: left;
}
#media figure figcaption .text a {
  color: #000;
  text-decoration: underline;
}
#media figure figcaption .text a:hover {
  text-decoration: none;
}
#media .link_1 {
  position: relative;
}
#media .link_1 div {
  transition: 0.3s;
}
#media .link_1 div:nth-child(1) {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
}
#media .link_1 div:nth-child(1) img {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#media .link_1:hover div:nth-child(1) {
  opacity: 1;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  #media .link_1:hover div:nth-child(1) {
    opacity: 0;
  }
}
#media .link_2 {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #000;
  text-align: left;
}
#media .link_2::before {
  content: "> ";
}/*# sourceMappingURL=media.css.map */