.scholarship-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e2e0eb;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  width: 100%;
}

.card {
  padding: 2.2rem 2rem;
  border: 1px solid #e2e0eb;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
}

.card-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(45deg, #42307d 0%, #7f56d9 100%);
  border-radius: 12px;
  flex-shrink: 0;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.01em;
}

.card-text {
  font-size: 0.88rem !important;
  color: #6b6b80 !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .scholarship-container {
    grid-template-columns: 1fr;
  }
}
