/* ======================================================= */
/* ====== CERTIFICATION BANNER CSS ======================= */
/* ======================================================= */

.cert-banner-section {
  background-color: #f9fafb; /* bg-gray-50 */
  padding-top: 5rem; /* py-20 */
  padding-bottom: 5rem;
}
@media (min-width: 640px) {
  /* sm:py-24 */
  .cert-banner-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.cert-banner-container {
  /* width: 100%; */
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem; /* mb-4 */
}

.icon-background {
  padding: 1rem; /* p-4 */
  background-color: #dbeafe; /* bg-blue-100 */
  color: #2563eb; /* text-blue-600 */
  border-radius: 9999px; /* rounded-full */
  display: inline-flex;
}

.banner-title {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700; /* font-bold */
  color: #1f2937; /* text-gray-800 */
  letter-spacing: -0.025em; /* tracking-tight */
}
@media (min-width: 640px) {
  /* sm:text-5xl */
  .banner-title {
    font-size: 3rem;
  }
}

.banner-subtitle {
  margin-top: 1rem; /* mt-4 */
  font-size: 1.125rem; /* text-lg */
  color: #4b5563; /* text-gray-600 */
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
}

/* --- ESC Logo Styling --- */
.esc-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.esc-logo {
  width: 16rem; /* w-64 is approx 256px */
  height: auto; /* auto height maintains aspect ratio */
  border-radius: 9999px;
}
