<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @global
 * Globally used variables
 */
/**
 * @colours
 * Colour palette main
 */
/**
 * @file
 * Site Studio Icon Card Component.
 */
.cpt-icon-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  background-color: #f6f6f6;
  border-radius: 10px;
  text-decoration: none;
  color: #222221;
  text-align: center;
}
.cpt-icon-card h3 {
  font-size: 1.4em;
  margin: 20px;
}
.cpt-icon-card &gt; div:first-child {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 30px;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto;
  background-color: #fff;
}
.cpt-icon-card &gt; div:first-child img {
  width: 100%;
  height: 100%;
  display: block;
}
a.cpt-icon-card:hover {
  background-color: #eaeaea;
}

.cpt-icon-card .coh-heading {
  margin: 16px 0;
}
.cpt-icon-card .coh-paragraph:last-child {
  margin-bottom: 0;
}

.section-dark-teal .cpt-icon-card h3 {
  color: #065154;
}

.section-light-grey .cpt-icon-card {
  background-color: #fff;
}
.section-light-grey .cpt-icon-card &gt; div:first-child {
  background-color: #f6f6f6;
}
a.section-light-grey .cpt-icon-card:hover {
  background-color: #eaeaea;
}

@media (max-width: 1023px) {
  .cpt-icon-card {
    margin: 10px 0;
    height: calc(100% - 20px);
  }
  .cpt-icon-card h3 {
    font-size: 1.6em;
  }
  .cpt-icon-card &gt; div:first-child {
    width: 120px;
    height: 120px;
    padding: 20px;
  }
}
/*# sourceMappingURL=../maps/components/icon-card.css.map */
</pre></body></html>