/* Student-PC | Index/landing: welcome copy + county picker (select + badge + go button). */

/* BEGIN SPC INDEX (landing / county picker) */
.spc-content-container {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 30px;
  color: #292c30;
}

#student-pc .spc-content-container > h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: #292c30;
  margin-bottom: 32px;
  margin-top: 0;
}

#student-pc .spc-content-container > h4 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #292c30;
  margin: 0 0 8px;
}

#student-pc .spc-content-container > p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #525252;
  margin: 0;
  max-width: 720px;
}

.spc-county-select {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 0;
  max-width: 360px;
}

.spc-county-select__field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  min-height: 64px;
  background: #fff;
  border: 1px solid #bbbcbd;
  border-radius: 8px;
  transition: box-shadow 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.spc-county-select__field:focus-within {
  border-color: #77797b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.spc-county-select__badge {
  display: block;
  flex: none;
  max-height: 25px;
  max-width: 25px;
  width: auto;
  margin: 0;
  pointer-events: none;
}

.spc-county-select__input {
  flex: 1 1 auto;
  border: none;
  background: transparent;
  padding: 16px 28px 16px 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #292c30;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.spc-county-select__input:focus {
  outline: none;
}

.spc-county-select__chevron {
  position: absolute;
  right: 16px;
  color: #555;
  pointer-events: none;
}

.spc-county-select__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: none;
  border-radius: 4px;
  background: var(--komplett-yellow);
  color: #222;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px !important;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: filter 0.15s ease-in-out;
}

.spc-county-select__button:hover {
  filter: brightness(0.96);
}

@media screen and (max-width: 599px) {
  .spc-county-select {
    max-width: none;
  }

  .spc-content-container {
    padding: 24px 20px;
  }

  #student-pc .spc-content-container > h2 {
    font-size: 30px;
  }
}

/* END SPC INDEX */
