.shienInfo {
  margin-top: 40px;
  margin-left: auto;
  width: calc(100% - clamp(200px, 25%, 240px));
  background: #0d9bb4;
}
.shienInfo a {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.shienInfo a::before {
  content: "";
  display: block;
  position: absolute;
  inset: 5px;
  border: 1px solid #fff;
}
.shienInfo__title {
  margin-bottom: 10px;
  max-width: 480px;
  height: auto;
}
.shienInfo__title img {
  max-width: 100%;
  height: auto;
}
.shienInfo__text {
  margin-bottom: 15px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
.shienInfo__btn {
  padding: 5px 25px;
  display: inline-block;
  background: #fff;
  border-radius: 20px;
  color: #0d9bb4;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1024px) {
  .shienInfo {
    margin: 20px 20px 0 20px;
    width: auto;
    box-sizing: border-box;
  }
  .shienInfo__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 520px) {
  .shienInfo a {
    padding: 20px;
  }
  .shienInfo__title {
    max-width: 250px;
  }
  .shienInfo__text {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.4;
  }
  .shienInfo__btn {
    padding: 5px 10px;
    font-size: 11px;
    width: 100%;
    text-align: center;
  }
}