.sp-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }
}

.support-section .view-more-button {
  font-family: var(--noto-serif);
}

.support-section {
  background-color: #F4F4F4;
  padding: 60px 40px;
  color: #252525;
}

.support-inner {
  width: min(1120px, 100%);
  margin-inline: auto;
  text-align: center;
}

.support-title {
  color: #A52222;
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 2rem;
}

.support-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-lead {
  margin-bottom: 40px;
  text-align: left;
}

.support-lead p {
  font-size: 1rem;
  line-height: 2.5;
  color: #252525;
}

.support-cards {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}

.support-card {
  flex: 1;
  background: #fff;
  color: #252525;
  border: 1px solid #A52222;
  padding: 45px 15px;
  display: flex;
  text-decoration: none;
  flex-direction: column;
  text-align: left;
  align-items: center;
  transition: opacity 0.3s ease;
  width: calc((100% - 40px) / 3);
  min-height: 280px;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.support-card-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.support-card-body {
  flex: 1;
  margin-bottom: 20px;
}

.support-card-desc {
  color: #252525;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  .support-section {
    padding: 40px 20px;
  }

  .support-title {
    text-align: left;
  }

  .support-lead {
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .support-cards {
    flex-direction: column;
    gap: 15px;
  }

  .support-card {
    width: 100%;
    padding-inline: 30px;
  }
}
