/*=====================================
    CURRICULUM PAGE
======================================*/

.curriculum-box {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.section-heading h4 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.section-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--insuba-base, #0d6efd);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/*=========================
    TOP ICON
==========================*/
.curriculum-image {
  max-width: 300px;
  margin: auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.curriculum-image img {
  width: 100%;
  display: block;
  border-radius: 15px;
  transition: 0.5s;
}

.curriculum-image:hover img {
  transform: scale(1.06);
}

/*=========================
    CLUBS
==========================*/

.club-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 15px;
  text-align: center;
  padding: 30px 15px;
  transition: 0.35s;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.club-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.club-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--insuba-base, #0d6efd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.35s;
}

.club-card:hover .club-icon {
  background: var(--insuba-base, #0d6efd);
  color: #fff;
  transform: rotate(10deg);
}

.club-card h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/*=========================
    TABLE
==========================*/

.schedule-table {
  border: 1px solid #ececec;
}

.schedule-table thead {
  background: var(--insuba-base, #0d6efd);
  color: #fff;
}

.schedule-table th {
  border: none;
  padding: 16px;
}

.schedule-table td {
  padding: 15px;
  vertical-align: middle;
}

.schedule-table tbody tr {
  transition: 0.3s;
}

.schedule-table tbody tr:hover {
  background: #f8fbff;
}

.schedule-table i {
  color: var(--insuba-base, #0d6efd);
}

/*=========================
    ACTIVITIES
==========================*/

.activity-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.35s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.activity-card i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--insuba-base, #0d6efd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.35s;
}

.activity-card:hover i {
  background: var(--insuba-base, #0d6efd);
  color: #fff;
  transform: rotate(12deg);
}

.activity-card span {
  font-size: 18px;
  font-weight: 600;
}

/*=========================
    MOBILE
==========================*/

@media (max-width: 767px) {
  .curriculum-box {
    padding: 25px;
  }

  .section-heading h4 {
    font-size: 22px;
  }

  .curriculum-icon {
    width: 90px;
    height: 90px;
    font-size: 42px;
  }

  .club-card,
  .activity-card {
    padding: 20px;
  }
}
