/** ================================================================================
 * Related Manga Banner 26.07.
 * ============================================================================== */
.manga-banner_items {
  margin: 60px auto;
}
@media screen and (min-width: 769px) {
  .manga-banner_items {
    max-width: 1000px;
  }
}
@media screen and (max-width: 768px) {
  .manga-banner_items {
    max-width: 700px;
  }
}
@media screen and (min-width: 769px) {
  .manga-banner_item {
    border: 1px solid #ccc;
    box-shadow: 0px 2px 6px 0px rgba(204, 204, 204, 0.6);
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: stretch;
  }
}
.manga-banner_item {
  text-decoration: none;
}
.manga-banner_item:hover {
  color: #fff;
  opacity: 0.8;
}
.manga-banner_item--img {
  font-size: 0;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .manga-banner_item--img {
    position: relative;
    min-height: 0;
    overflow: hidden;
  }
  .manga-banner_item--img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media screen and (min-width: 769px) {
  .manga-banner_item--contents {
    display: flex;
    flex-direction: column;
  }
}
.manga-banner_item--title {
  background-color: #0d3592;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 769px) {
  .manga-banner_item--title {
    padding: 22px 30px;
  }
}
@media screen and (max-width: 768px) {
  .manga-banner_item--title {
    padding: 12px 25px;
  }
}
@media screen and (min-width: 769px) {
  .manga-banner_item--body {
    display: grid;
    grid-template-columns: 44fr 29fr;
    padding: 20px 0 15px 32px;
  }
}
@media screen and (max-width: 768px) {
  .manga-banner_item--body {
    padding: 10px 25px 5px;
  }
}
.manga-banner_item--text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.manga-banner_item--text * {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}
.manga-banner_item--text p {
  margin-bottom: 0 !important;
}
.manga-banner_item--link {
  background-color: #c03;
  border-radius: 8px;
  border: 1px solid #000;
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto;
  padding: 12px 10px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 240px;
}
.manga-banner_item--link:visited, .manga-banner_item--link:active, .manga-banner_item--link:focus {
  color: #fff;
}
.manga-banner_item--link::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  display: inline-block;
  height: 8px;
  margin-left: 1rem;
  transform: rotate(45deg);
  width: 8px;
  position: absolute;
  top: calc(50% - 4px);
  right: 10px;
  transition: all 0.5s ease;
}
.manga-banner_item--link:hover {
  color: #fff;
}