.epc-section-links-title{
  background-color: #304250;
  padding: 30px;
}

.epc-section-links-title-inner{
  max-width: 1200px;
  margin: 0 auto;
}

p.epc-section-links-title-blurb{
  color: #d0e8f5;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0px;
}

.epc-section-links-title-title h1{
  color: #ffffff;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.fc-section-links {
  background-color: #F0F3F6;
  padding: 40px 0 60px;
}

.fc-section-links-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.fc-section-links-section-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Card */
.fc-section-links .section-link {
  background: #fff;
  width: calc((100% - 60px) / 3);
  margin: 0;
  padding: 35px 40px;
  box-sizing: border-box;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  display: flex;
  transition: .2s ease-out;
}

.fc-section-links .section-link-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Small uppercase blue label */
.fc-section-links-inner .section-link .section-link-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2e7ca8;
  text-align: left;
  padding: 0 0 18px 0;
  line-height: 1.4;
}

/* Teaser */
/* Remove flex-grow from the teaser */
.fc-section-links-inner .section-link .section-teaser {
  text-align: left;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  padding: 0 0 28px 0;
}

/* Push the button wrapper (last div in the card) to the bottom */
.fc-section-links .section-link-inner > div:last-child {
  margin-top: auto;
}

/* Button */
.fc-section-links .section-link-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2e7ca8;
  text-decoration: none;
  border: 1px solid #2e7ca8;
  padding: 12px 22px;
  transition: background-color .2s ease-out, color .2s ease-out;
}

.fc-section-links .section-link-link::after {
  content: " \2192"; /* → */
}

.fc-section-links .section-link-link:hover,
.fc-section-links .section-link-link:focus {
  background-color: #4a7fa5;
  border-color: #4a7fa5;
  color: #fff;
}

.fc-section-links .section-link-link:focus {
  outline: 2px dotted blue;
  outline-offset: 2px;
}

@media (max-width: 1200px) {
  .fc-section-links .section-link {
    width: calc((100% - 30px) / 2);
  }
}

@media (max-width: 620px) {
  .fc-section-links .section-link {
    width: 100%;
  }
}