.scholarship-page {
  margin-bottom: 120px;
}

.scholarship-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  max-width: 720px;
  margin: 0 auto 48px;
}

.scholarship-tab-button {
  min-height: 54px;
  border: 0;
  border-right: 1px solid #e2e2e2;
  padding: 10px 18px;
  background: #f4f4f4;
  color: #3c3c3c;
  cursor: pointer;
  word-break: keep-all;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-seciton-title-sm);
}

.scholarship-tab-button:last-child {
  border-right: 0;
}

.scholarship-tab-button.active {
  background: var(--color-primary);
  color: #fff;
}

.scholarship-tab-panel {
  display: none;
  color: #555;
  font-size: 17px;
  line-height: 1.75;
}

.scholarship-tab-panel.active {
  display: block;
  animation: scholarship-panel-in 220ms ease;
}

.scholarship-tab-panel p,
.scholarship-tab-panel li {
  word-break: keep-all;
}

.scholarship-tab-panel h2,
.scholarship-tab-panel h3 {
  color: #171717;
  font-weight: 900;
}

.scholarship-tab-panel h2 {
  margin: 0 0 42px;
  font-size: 28px;
}

.scholarship-tab-panel h2::before {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  margin-bottom: 12px;
  background: var(--color-primary);
}

.scholarship-tab-panel h3 {
  margin: 42px 0 28px;
  font-size: 23px;
}

.scholarship-tab-panel h3::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 12px;
  background: var(--color-primary);
}

.scholarship-tab-panel strong {
  font-weight: 800;
}

@keyframes scholarship-panel-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .scholarship-tabs {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .scholarship-tab-button {
    border-right: 0;
    border-bottom: 1px solid #e2e2e2;
  }
}
