.stbg-card-graduacao {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 180px;

  padding: 30px;

  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

  text-align: center;
  text-decoration: none;

  color: inherit;

  transition: all 0.3s ease;
}

.stbg-card-graduacao:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stbg-card-graduacao h2 {
  margin: 0;

  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;

  color: inherit;
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 1024px) {
  .stbg-card-graduacao {
    min-height: 170px;
    padding: 25px;
  }

  .stbg-card-graduacao h2 {
    font-size: 1.6rem;
  }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {
  .stbg-card-graduacao {
    min-height: 150px;
    padding: 20px;
  }

  .stbg-card-graduacao h2 {
    font-size: 1.4rem;
  }
}
