@charset "UTF-8";

.link {
  max-width: 1000px;
  margin: 0 auto;
}

.link-list {
  margin: 0 20px 0 0;
  font-size: 0;
}

.link-item {
  display: inline-block;
  width: calc(33.33333333% - 20px);
  margin: 0 0 30px 20px;
  vertical-align: top;
}

.link-item:nth-of-type(n + 4) {
  margin-bottom: 0;
}

.link-item a:hover {
  opacity: 1;
}

.link-item-image {
  position: relative;
}

.link-item-image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background-color 0.2s;
}

.link-item-image-overlay:hover {
  background: transparent;
}

.link-item-text {
  margin-top: 15px;
  font-size: 12px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .link {
    max-width: initial;
  }

  .link-list {
    margin: 0 0 0 -10px;
  }

  .link-item {
    width: calc(50% - 10px);
    margin: 0 0 30px 10px;
  }

  .link-item:nth-of-type(n + 4) {
    margin-bottom: 30px;
  }

  .link-item-image {
    border: 1px solid #ccc;
  }

  .link-item-text {
    margin-top: 10px;
    font-size: 11px;
    font-weight: normal;
    text-align: center;
  }
}
