/* CSS Document */
.topics {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1410px;
}
.topics > div {
  display: inline-block;
  vertical-align: top;
  width: calc(25% - 10.5px);
}
.topics > div .img {
  margin-bottom: 20px;
}
.topics > div .text .subLinks a {
  color: #6e6a64;
}
.topics > div .text .subLinks a:hover, .topics > div .text .subLinks a:active {
  color: black !important;
}

.quickGuides {
  background-color: var(--greyLight);
}
.quickGuides .subsection {
  padding: calc(var(--paddingLower) + 10px);
  padding-top: 80px;
  padding-bottom: 20px;
  max-width: 1180px;
  margin: auto;
}
.quickGuides .subsection .links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: calc(var(--padding) + 10px);
}
.quickGuides .subsection .links .item {
  display: inline-block;
  vertical-align: top;
  width: 31%;
  margin-right: 3.5%;
  border-top: solid 1px var(--grey);
  margin-bottom: calc(var(--padding) + 40px);
}
.quickGuides .subsection .links .item .preHeader {
  margin-top: 8px;
  margin-bottom: 5px;
  color: var(--greyMid2);
}
.quickGuides .subsection .links .item > *:last-child {
  margin-bottom: 0;
}
.quickGuides .subsection .links .item:nth-child(3n+0) {
  margin-right: 0;
}

@media (max-width: 1024px) {
  .topics > div {
    width: calc(50% - 7px);
    margin-bottom: 30px;
  }

  .quickGuides .subsection .links .item {
    width: 48%;
  }
  .quickGuides .subsection .links .item:nth-child(3n+0) {
    margin-right: 4%;
  }
  .quickGuides .subsection .links .item:nth-child(2n+0) {
    margin-right: 0;
  }
}
@media (max-width: 640px) {
  .quickGuides .subsection .links {
    display: block;
  }
  .quickGuides .subsection .links .item {
    display: block;
    width: auto;
    margin-right: 0 !important;
  }
}
