.more {
  display: grid;
}
@media (min-width: 740px) {
  .more {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 739.98px) {
  .more {
    grid-auto-flow: column;
    gap: 6px;
    overflow-x: auto;
  }
}
.more_item {
  display: grid;
  padding: var(--margin-heading);
  color: var(--white);
  background-color: var(--accent);
  border-radius: 10px;
}
@media (min-width: 740px) {
  .more_item {
    gap: 10px;
  }
}
@media (min-width: 1200px) {
  .more_item {
    grid-template-columns: 244px 1fr;
  }
}
@media (max-width: 739.98px) {
  .more_item {
    gap: 6px;
    width: 154px;
  }
}
.more_pic {
  border-radius: 10px;
}
.more_content {
  display: flex;
  flex-direction: column;
  row-gap: var(--margin-text);
}
.more_link {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  column-gap: 8px;
  align-items: center;
  width: fit-content;
  padding-inline: 6px 2px;
  margin-top: auto;
  font-weight: 500;
  color: var(--yellow-400);
}
@media (min-width: 740px) {
  .more_link {
    padding-block: 6px;
    font-size: 16px;
  }
}
@media (max-width: 739.98px) {
  .more_link {
    padding-block: 4px;
    font-size: 14px;
  }
}
.more_link::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: currentColor;
  transition: opacity 0.15s ease-in-out;
}
.more_link::after {
  width: var(--_size);
  height: var(--_size);
  content: "";
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath fill='%23FABD00' d='M3.33 9.17v1.66h10l-4.58 4.59 1.18 1.18 6.6-6.6-6.6-6.6-1.18 1.18 4.58 4.59h-10Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (min-width: 740px) {
  .more_link::after {
    --_size: 20px;
  }
}
@media (max-width: 739.98px) {
  .more_link::after {
    --_size: 14px;
  }
}
.more_link:hover, .more_link:focus-visible {
  color: var(--yellow-300);
}
.more_link:hover::before, .more_link:focus-visible::before {
  opacity: 0;
}