/* our-exam-centre.html page styles */

/* Exam Centre Page Styling */
.exam-centre-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.exam-centre-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.exam-centre-figure {
  margin: 0;
  position: static;
  max-width: clamp(460px, 48vw, 720px);
  width: 100%;
  flex: none;
  display: block;
}

.exam-centre-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.exam-centre-cta {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 92%;
  align-items: center;
  text-align: center;
}

.exam-centre-cta p {
  margin: 0;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
}

.exam-centre-cta .enquiry-btn {
  margin-top: 0;
  align-self: flex-start;
}

.exam-centre-summary {
  padding: 0;
}

.exam-centre-summary h1 {
  font-family: 'Spectral', serif;
  font-size: 1.75rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  font-weight: 600;
}

.exam-centre-summary > p {
  font-size: 1rem;
  color: #0066cc;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.exam-centre-summary h2 {
  font-family: 'Spectral', serif;
  font-size: 1.25rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
  font-weight: 600;
}

.exam-centre-summary .list {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 0;
}

.exam-centre-summary .list li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
  color: #333;
  font-size: 0.95rem;
}

.exam-centre-summary .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #0066cc;
  border-radius: 50%;
}

.exam-centre-summary section > p {
  background: #f8f9fa;
  padding: 1rem;
  border-left: 3px solid #0066cc;
  line-height: 1.6;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.enquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: #1e40af;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 24px;
}

.enquiry-btn:hover {
  background-color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.enquiry-btn svg {
  width: 18px;
  height: 18px;
}

.exam-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.exam-logos img {
  height: 42.5px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.exam-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .exam-logos {
    gap: 1.5rem;
  }

  .exam-logos img {
    height: 42.5px;
  }
}

@media (max-width: 968px) {
  .exam-centre-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .exam-centre-figure {
    margin: 0 auto;
    max-width: min(640px, 100%);
  }

  .exam-centre-cta {
    max-width: 100%;
  }
}

.exam-logos img.exam-logo--tall {
  height: 60px;
}

@media (max-width: 640px) {
  .exam-centre-intro {
    padding: 1rem 0;
  }

  .exam-centre-summary h1 {
    font-size: 1.875rem;
  }

  .exam-centre-summary h2 {
    font-size: 1.375rem;
  }
}
