/* part-time.html page styles */

/* Page Specific Styles for a Clean, Professional Look */
.pt-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.pt-header h1 {
  font-family: 'Spectral', serif;
  font-size: 3rem;
  color: #111827;
  margin-bottom: 1rem;
}

.pt-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.pt-section {
  margin-bottom: 4rem;
}

.pt-section h2 {
  font-family: 'Spectral', serif;
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
  border-left: 4px solid #0b3d91;
  padding-left: 1rem;
}

.pt-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

.pt-section ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.pt-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #4b5563;
}

.pt-section ul li::before {
  content: "✓";
  color: #0b3d91;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  font-family: 'Spectral', serif;
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 1rem;
}

.info-card p {
  color: #4b5563;
  line-height: 1.6;
}

.pt-overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pt-overview-list li {
  margin-bottom: 0.5rem;
}

.pt-overview-list li:last-child {
  margin-bottom: 0;
}

.pt-contact-link {
  color: #0b3d91;
  font-weight: 600;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.schedule-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.schedule-card h3 {
  color: #0b3d91;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
  padding-bottom: 0.5rem;
}

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.schedule-list li span:first-child {
  font-weight: 600;
  color: #374151;
}

.highlight-box {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 8px 8px 0;
}

.highlight-box h3 {
  color: #1e40af;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
