/* links
*     __    _____   ____ _______
*    / /   /  _/ | / / //_/ ___/
*   / /    / //  |/ / ,<  \__ \ 
*  / /____/ // /|  / /| |___/ / 
* /_____/___/_/ |_/_/ |_/____/  
*                               
*/

.link-box {
  display: grid;
  grid-template-columns: 49% 49%;
  column-gap: 1%;
  row-gap: 1%;
  padding: 2%;
}

.link-container .text {
  padding: 5%;
}

@media screen and (min-width: 1300px) {
  .link-box {
    grid-template-columns: 32% 32% 32%;
  }
}

@media screen and (min-width: 1000px) {
  .link-container {
    gap: 4%;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
}

@media screen and (max-width: 1000px) {
  .link-box {
    grid-template-columns: 100%;
  }
  .link-container {
    gap: 4%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .link-img {
    height: 200pt;
  }
}

@media screen and (max-width: 750px) {
  .link-container {
    gap: 4%;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .link-img {
    height: 200pt;
  }
}

.link-container {
  display: grid;
  max-width: 800pt;
  padding: 2%;
  background-color: var(--post-bg);
  border: 1pt solid var(--post-border);
  margin: 2%;
}
.link-container a {
  color: var(--lsuawm-fg);
}

.link-img {
  border-radius: 40pt;
  filter: drop-shadow(4px 4px 16px #00000088);
  width: 100%;
  height: 200pt;
  object-fit: cover;
}

.zoom {
  transition: transform 0.2s;
  /* Animation */
}

.zoom:hover {
  transform: scale(1.01);
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.text h3{
  font-size: 32px;
  margin-bottom: -10px;
}