.help-cards .fixed-card {
  background-color: var(--darker-blue);
  border: 1px solid var(--dark-turquoise);
  border-radius: 20px;
  padding: 24px;
  font-family: Inter, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 216px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  color: var(--light-cyan);
}

.help-cards h2 {
  margin-top: 0;
  color: var(--green);
  text-align: start;
  font-family: inherit;
  font-size: 18px;
}

.help-cards .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.help-cards .fixed-card a {
  color: var(--light-cyan);
  display: block;
  margin-top: 4px;
}

.help-cards .fixed-card a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.help-cards .fixed-card a::after {
  background-image: url("../svg/arrow_open_link_white.svg");
}

.help-cards p {
  margin: 0;
}

.help-cards .status-text {
  color: var(--gray);
  margin-bottom: 18px;
}

@media (max-width: 700px) {
  .help-cards h2 {
    margin: 0;
  }
  .help-cards .content {
    font-size: 12px;
  }
  .service-status {
    font-size: 14px;
  }
}

@media (min-width: 701px) {
  .help-cards .fixed-card {
    padding: 32px;
    min-height: 280px;
  }
  .help-cards h2 {
    font-size: 28px;
  }
  .help-cards .fixed-card a {
    margin-top: 0.5em;
  }
}
