/**
 * E04_U05_1 – Ein Vokabelzimmer. Slika kot osnova, na njej 9 fill-in polj (LANDKARTE).
 */

@font-face {
  font-family: "League Spartan";
  src: url("../assets/fonts/LeagueSpartan-VariableFont_wght.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.exercise-container {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
  font-family: "League Spartan", sans-serif;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

.vocab-wrap {
  position: relative;
  display: inline-block;
  width: 36rem;
  max-width: 100%;
}

.vocab-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.vocab-wrap .letter-in {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  font-size: 1.25rem;
  font-family: "League Spartan", sans-serif;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  border: 0.2rem solid rgba(21, 95, 132, 1);
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
}

.vocab-wrap .letter-in:focus {
  outline: none;
  border-color: #00699f;
  background: #fff;
  z-index: 2;
}

.vocab-wrap .letter-in.correct {
  border-color: #258174;
  background: rgba(37, 129, 116, 0.15);
  color: #258174;
}

.vocab-wrap .letter-in.incorrect {
  border-color: #c00;
  background: rgba(255, 0, 0, 0.1);
  color: #c00;
}

/* Položaji, velikosti in font-size za vsako polje posebej */
.vocab-wrap .pos-1 { left: 5.3rem;    top: 22.5rem; width: 7.5rem;   height: 7.5rem;   font-size: 6rem; }
.vocab-wrap .pos-2 { left: 7.7rem;  top: 12.7rem; width: 6.3rem;   height: 6.3rem;   font-size: 3.5rem; }
.vocab-wrap .pos-3 { left: 10.4rem; top: 4.1rem;  width: 5.2rem;   height: 5.2rem;   font-size: 2.15rem; }
.vocab-wrap .pos-4 { left: 17.8rem;   top: 4.1rem;  width: 5.2rem;   height: 5.2rem;   font-size: 2.25rem; }
.vocab-wrap .pos-5 { left: 25.2rem;   top: 4.1rem;  width: 5.2rem;   height: 5.2rem;   font-size: 2.25rem; }
.vocab-wrap .pos-6 { left: 27.9rem; top: 12.7rem; width: 6.3rem; height: 6.3rem; font-size: 3.5rem; }
.vocab-wrap .pos-7 { left: 30.4rem;   top: 22.5rem; width: 7.5rem; height: 7.5rem; font-size: 6rem; }
.vocab-wrap .pos-8 { left: 17.8rem; top: 22.5rem; width: 7.5rem; height: 7.5rem; font-size: 6rem; }
.vocab-wrap .pos-9 { left: 17.8rem; top: 33.5rem; width: 8.5rem; height: 8.5rem; font-size: 7rem; }

.hint-sentences {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  text-align: left;
  flex-shrink: 0;
  font-family: "League Spartan", sans-serif;
  margin-left: -3rem;
  margin-top: 2rem;
}

.hint-sentences p {
  margin: 0 0 0.4rem 0;
}

.hint-sentences p:last-child {
  margin-bottom: 0;
}

