@charset "utf-8";

.under-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .under-links {
    grid-template-columns: 1fr;
  }
}

.under-links-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  min-height: 120px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
  line-height: calc(26 / 18);
  border-radius: 6px;
  border: 1px solid #EC7D0A;
  background: #fff;
  background: linear-gradient(to right, #EC7D0A 40px, #fff 40px, #fff 100%);
  padding: 10px 25px 10px 58px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .under-links-item {
    min-height: 100px;
    font-size: 1.7rem;
    line-height: calc(34 / 26);
    border-radius: 5px;
    background: linear-gradient(to right, #EC7D0A 35px, #fff 35px, #fff 100%);
    padding-left: 50px;
  }
}

.under-links-item::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .under-links-item::before {
    width: 15px;
    height: 15px;
    left: 10px;
  }
}

.under-links-item::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #EC7D0A;
  border-right: solid 2px #EC7D0A;
  margin: auto;
  position: absolute;
  top: 0;
  left: 16px;
  bottom: 1px;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .under-links-item::after {
    left: 14px;
    bottom: 0px;
  }
}

@media screen and (min-width: 769px) {
  @media (hover: hover) {
    .under-links-item:hover {
      color: #333333;
      background: #FDEEDD;
      background: linear-gradient(to right, #EC7D0A 40px, #FDEEDD 40px, #FDEEDD 100%);
    }
  }
}

.under-links-wrap + .under-links-wrap {
  margin-top: 50px;
}

.under-links-title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: calc(24 / 22);
  border-left: 4px solid #EC7D0A;
  margin: 0 0 20px;
  padding: 0 0 2px 10px;
}
@media screen and (max-width: 768px) {
  .under-links-title {
    font-size: 2rem;
    padding-bottom: 0;
  }
}

.t-ico-external::after {
  background-image: url(/patients/hyqvia/assets/img/common/ico-external-black.png);
}
@media (hover: hover) {
  .under-links-item:hover .t-ico-external::after {
    background-image: url(/patients/hyqvia/assets/img/common/ico-external-blue.png);
  }
}
