/*--------------------------------------



--------------------------------------*/
main {
  margin: 0 0 100px;
}

.runTitle {
  font-size: 1.8rem;
  background: #ffebeb;
  padding: 8px 15px;
  margin-bottom: 15px;
  color: #fc3131;
}

.runWrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 80px;
}

.pdfTitle {
  color: #fff;
  background: #FF7878;
  border-radius: 5px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.runPdfLink {
  transition: all 0.2s;
}
.runPdfLink:hover {
  opacity: 0.8;
}

.runPdfPic {
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

.runInqWrap {
  background: #f1f1f1;
  padding: 20px;
}

.runInqTitle {
  font-size: 1.8rem;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #cfcfcf;
}

.runLink {
  display: inline-block;
  color: #FF7878;
  transition: 0.3s;
  border-radius: 3px;
  margin-bottom: 10px;
}
.runPic img {
  margin: 0 auto;
}

.runPic + .runPic {
  margin: 20px 0 0;
}

.resultLink {
  display: inline-block;
  padding: 15px;
  color: #fff;
  background: #FF7878;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.2s;
}
.resultLink:hover {
  opacity: 0.8;
}
@media (width >= 768px) {
  .runTitle {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .runWrap {
    grid-template-columns: 1fr 300px;
    gap: 80px 40px;
  }
  .runInqWrap {
    padding: 25px 20px;
  }
}
@media (width >= 960px) {
  .runWrap {
    grid-template-columns: 1fr 400px;
    gap: 80px 60px;
  }
  .runPicWrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .runPic {
    width: calc(50% - 10px);
  }
  .runPic img {
    margin: 0 0 10px;
  }
  .runPic + .runPic {
    margin: 0 0 10px;
  }
}

/*# sourceMappingURL=run.css.map*/