:root {
  --c-cyan: #00e1e6;
  --c-darkblue: #0a1db7;
  --c-lightblue: #70a7ff;
  --c-orange: #f79c1d;
}

/* Nadpisy */
.section-title {
  font-size: 3rem !important;
}
.section-subtitle {
  font-size: 1.4rem !important;
}

/* Boxy s číslem a textem vedle sebe */
.course-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  font-weight: 600;
  min-height: 90px;   /* zaručí nízký vzhled jako na screenu */
  height: 90px;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
  max-width: 500px;
  width: 100%;
  border-radius: 0.2rem;
}

/* Číslo boxu */
.course-number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
}

/* Hlavní název boxu, zarovnání vedle čísla */
.course-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  display: flex;
  align-items: center;
  white-space: pre-line;
}

/* Speciální styl jen pro box 5 - jazykový výčet pod nadpisem */
.course-box .course-title .languages {
  font-size: 1.02rem;
  font-weight: 400;
  opacity: 0.9;
  /* margin-top: 0.1em; */
  display: block;
  line-height: 1.05;
}

.course-title-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;       /* zarovnání vlevo */
  justify-content: flex-start;   /* posune text nahoru */
  margin-top: -1.2rem !important;      /* pokud se někde dědí margin-top */
}
.course-title-5 .languages {
  font-size: 1.02rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 0.1em;
  text-align: left;
}


/* Barvy boxů */
.bg-cyan { background-color: var(--c-cyan); }
.bg-darkblue { background-color: var(--c-darkblue); }
.bg-lightblue { background-color: var(--c-lightblue); }
.bg-orange { background-color: var(--c-orange); }

/* Rozestupy mezi sloupci podle Bootstrap */
.custom-row > [class*="col-"] {
  padding-left: 0.55rem;
  padding-right: 0.55rem;
  margin-bottom: 0;
}

.gx-00 {
	--bs-gutter-x: -10rem;
}

/* POCITADLO */
.certificate-counter {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px #00dfef29;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px 44px 32px;
  margin: 0 auto;
  max-width: 340px;
  min-height: 240px;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  text-align: center;
}
.counter-label {
  color: #00DFEF;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: 1px;
}
.counter-number {
  color: #00DFEF;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.counter-date {
  color: #afdff7;
  font-size: 18px;
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .certificate-counter {
    max-width: 90vw;
    min-height: 180px;
    padding: 32px 12px 28px 12px;
  }
  .counter-number {
    font-size: 44px;
  }
  .counter-label {
    font-size: 18px;
  }
  .counter-date {
    font-size: 15px;
  }
}


