:root {
  --primary-color: #06b6d4;
  --secondary-color: #0891b2;
  --accent-color: #22d3ee;
  --light-color: #f0f9ff;
  --dark-color: #164e63;
  --success-color: #38b000;
  --warning-color: #ff9e00;
  --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

.batches_schedule_table {
  padding: 80px 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-color);
  background-color: #f9fafc;
  line-height: 1.6;
  background-color: #f9fafc;
}

.batches_schedule_table h2 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  font-size: 2rem;
}

.batches_schedule_table h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.batches_schedule_table .subtitle {
  color: #6c757d;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

.batches_schedule_table-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.batches_schedule_table-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.batches_schedule_table-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.item-image {
  height: 200px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}

.batches_schedule_table-item:hover .item-image img {
  transform: scale(1.05);
}

.item-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.batches_schedule_table-item h3 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.batches_schedule_table-item p {
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.item-meta {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.meta-item i {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.meta-label {
  font-size: 0.85rem;
  color: #6c757d;
}

.meta-value {
  font-weight: 600;
  color: var(--dark-color);
}

.item-link {
  display: inline-block;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  width: 100%;
}

.item-link:hover {
  background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  font-weight: 600;
  border-radius: 50px;
}

.badge-popular {
  background-color: var(--warning-color);
  color: white;
}

.badge-upcoming {
  background-color: var(--success-color);
  color: white;
}

.item-header {
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .batches_schedule_table {
    padding: 50px 0;
  }
  .batches_schedule_table-items {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .meta-item .meta-label, .meta-item .meta-value {
    font-size: 0.85rem !important;
  }
}
@media (max-width: 576px) {
  .section-header {
    margin-bottom: 0;
  }
  .batches_schedule_table h2 {
    font-size: 1.4rem !important;
  }
  .batches_schedule_table-item h3 {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .batches_schedule_table-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .batches_schedule_table-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.section-header {
  margin-bottom: 60px;
}/*# sourceMappingURL=batch-table.css.map */