/* === University News Section === */
.university-news {
  background: #f7f7f7;
  box-shadow: 0 0 6px #d5d5d5;
  display: flex;
  flex-wrap: wrap;
}
.university-news .col-left {
  width: 20%;
  position: relative;
}
.university-news .col-right {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.university-news .news-date {
  color: #59c17a;
  font-size: 18px;
  font-weight: 500;
}

/* === Courses List Section === */
.courses-list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  padding: 20px;
  background: #f0f0f0;
  border-radius: 8px;
}
.course-block {
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 300px;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.course-block h3 {
  color: #333;
  margin: 0 0 10px;
}
.course-block p {
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}
.course-block a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}
.course-block a:hover {
  text-decoration: underline;
}
.google-form-block iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* === Responsive Styles === */
@media (max-width: 1199px) {
  .university-news .col-left { width: 35%; }
  .university-news .col-right { width: 65%; }
}
@media (max-width: 768px) {
  .course-block {
    min-width: 90%;
    max-width: 100%;
  }
  .courses-list-container {
    flex-direction: column;
    align-items: center;
  }
  .committee-section {
    padding: 18px 8px 12px;
  }
  .committee-pdf {
    text-align: left;
  }
  .committee-item {
    padding: 14px 10px;
  }
}
@media (max-width: 767px) {
  .university-news { flex-direction: column; }
  .university-news .col-left,
  .university-news .col-right { width: 100%; }
  .university-news .col-left {
    max-height: 300px;
    overflow: hidden;
  }
}
@media (max-width: 576px) {
  .committee-actions {
    flex-direction: column;
    gap: 12px;
  }
}

/* === Committee Section === */
.committee-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 32px 28px 24px;
  margin-bottom: 40px;
}
.committee-section h3 {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 12px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.committee-pdf {
  text-align: right;
  margin-bottom: 24px;
}
.committee-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.btn-committee {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,123,255,0.07);
}
.btn-committee i {
  margin-right: 8px;
  font-size: 1.2em;
}
.btn-pdf {
  background: #fff;
  color: #dc3545;
  border: 1.5px solid #dc3545;
}
.btn-pdf:hover {
  background: #dc3545;
  color: #fff;
}
.btn-form {
  background: #fff;
  color: #28a745;
  border: 1.5px solid #28a745;
  margin-top: 8px;
}
.btn-form:hover {
  background: #28a745;
  color: #fff;
}
.committee-item {
  background: #f8f9fa;
  border-left: 4px solid #007bff;
  border-radius: 7px;
  padding: 18px 20px 14px;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, border-left-color 0.2s;
}
.committee-item:hover {
  box-shadow: 0 4px 16px rgba(0,123,255,0.10);
  border-left-color: #0056b3;
}
.committee-item strong {
  color: #007bff;
  font-size: 1.08rem;
  display: block;
  margin-bottom: 6px;
}
.committee-item span {
  color: #333;
  font-size: 0.98rem;
  display: block;
  margin-bottom: 4px;
}

/* === Home Events === */
.events-block .col-left {
  width: 25% !important;
}
