.gpnw2027-wrap {
  --gpnw-blue: #4AA8D8;
  --gpnw-blue-strong: #2388bd;
  --gpnw-orange: #F0A020;
  --gpnw-orange-strong: #d68600;
  --gpnw-text: #3A3A3A;
  --gpnw-line: #dce8ef;
  --gpnw-soft: #F5F5F5;
  --gpnw-blue-light: #E8F4FB;
  --gpnw-orange-light: #FEF5E4;
  --gpnw-gray-mid: #888888;
  --gpnw-white: #ffffff;
  color: var(--gpnw-text);
  font-family: Arial, Helvetica, sans-serif;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 18px 52px;
  line-height: 1.5;
}

.gpnw2027-wrap *,
.gpnw2027-wrap *::before,
.gpnw2027-wrap *::after {
  box-sizing: border-box;
}

.gpnw2027-wrap h1,
.gpnw2027-wrap h2,
.gpnw2027-wrap h3 {
  color: var(--gpnw-text);
  letter-spacing: 0;
  line-height: 1.22;
}

.gpnw2027-wrap h1 {
  margin: 0 0 24px;
  font-size: 34px;
}

.gpnw2027-wrap h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.gpnw2027-wrap h3 {
  margin: 22px 0 10px;
  font-size: 18px;
}

.gpnw2027-card {
  background: var(--gpnw-white);
  border: 1px solid var(--gpnw-line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(58, 58, 58, 0.08);
  margin: 0 0 22px;
  padding: 24px;
}

.gpnw2027-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.gpnw2027-grid .gpnw2027-card strong {
  display: block;
  font-size: 34px;
  color: var(--gpnw-orange);
}

.gpnw2027-grid .gpnw2027-card span {
  display: block;
  margin-top: 4px;
}

.gpnw2027-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 22px;
  align-items: start;
}

.gpnw2027-sticky {
  position: sticky;
  top: 24px;
}

.gpnw2027-form {
  display: grid;
  gap: 18px;
}

.gpnw2027-compact-form {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  align-items: end;
}

.gpnw2027-form label,
.gpnw2027-wrap label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.gpnw2027-form input,
.gpnw2027-form select,
.gpnw2027-form textarea,
.gpnw2027-wrap input,
.gpnw2027-wrap select,
.gpnw2027-wrap textarea {
  width: 100%;
  border: 1px solid var(--gpnw-line);
  border-radius: 6px;
  color: var(--gpnw-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding: 12px 13px;
}

.gpnw2027-form textarea,
.gpnw2027-wrap textarea {
  min-height: 124px;
  resize: vertical;
}

.gpnw2027-check {
  align-items: start;
  display: flex !important;
  gap: 10px !important;
  font-weight: 400 !important;
}

.gpnw2027-check input {
  width: auto;
  margin-top: 4px;
}

.gpnw2027-school,
.gpnw2027-hint,
.gpnw2027-notice {
  background: var(--gpnw-blue-light);
  border: 1px solid var(--gpnw-line);
  border-radius: 8px;
  padding: 14px 16px;
}

.gpnw2027-help {
  display: block;
  color: var(--gpnw-gray-mid);
  font-size: 14px;
  font-weight: 400;
}

.gpnw2027-jury-hint {
  display: block;
  color: var(--gpnw-gray-mid);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  margin-top: 2px;
}

.gpnw2027-notice {
  margin: 0 0 18px;
}

.gpnw2027-success {
  background: #eef7ee;
  border-color: #bad8ba;
}

.gpnw2027-warning {
  background: var(--gpnw-orange-light);
  border-color: var(--gpnw-orange);
}

.gpnw2027-error {
  background: #fff2ef;
  border-color: #e5b5aa;
}

.gpnw2027-code {
  display: inline-block;
  background: var(--gpnw-soft);
  border: 1px solid var(--gpnw-line);
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 12px;
}

.gpnw2027-button,
.gpnw2027-button-secondary,
.gpnw2027-button-small,
.gpnw2027-wrap button {
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.gpnw2027-button,
.gpnw2027-wrap button.gpnw2027-button {
  background: var(--gpnw-orange);
  border: 1px solid var(--gpnw-orange);
  color: #fff;
}

.gpnw2027-button:hover,
.gpnw2027-wrap button.gpnw2027-button:hover {
  background: var(--gpnw-text);
  border-color: var(--gpnw-text);
  color: #fff;
}

.gpnw2027-button-secondary,
.gpnw2027-button-small {
  background: #fff;
  border: 1px solid var(--gpnw-text);
  color: var(--gpnw-text);
}

.gpnw2027-button-small {
  min-height: 34px;
  padding: 7px 11px;
}

.gpnw2027-inline {
  display: inline-block;
  margin: 0 6px 6px 0;
}

.gpnw2027-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.gpnw2027-tabs a {
  background: #fff;
  border: 1px solid var(--gpnw-line);
  border-radius: 999px;
  color: var(--gpnw-text);
  padding: 9px 14px;
  text-decoration: none;
}

.gpnw2027-tabs a.is-active {
  background: var(--gpnw-text);
  border-color: var(--gpnw-text);
  color: #fff;
}

.gpnw2027-table-scroll {
  border: 1px solid var(--gpnw-line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(58, 58, 58, 0.07);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-color: var(--gpnw-gray-mid) var(--gpnw-soft);
  scrollbar-width: thin;
}

.gpnw2027-table-scroll::-webkit-scrollbar {
  height: 10px;
}

.gpnw2027-table-scroll::-webkit-scrollbar-track {
  background: var(--gpnw-soft);
  border-radius: 999px;
}

.gpnw2027-table-scroll::-webkit-scrollbar-thumb {
  background: var(--gpnw-gray-mid);
  border-radius: 999px;
}

.gpnw2027-table {
  border-collapse: collapse;
  min-width: 820px;
  width: 100%;
}

.gpnw2027-card > .gpnw2027-table {
  border: 1px solid var(--gpnw-line);
  border-radius: 8px;
}

.gpnw2027-table th,
.gpnw2027-table td {
  border-bottom: 1px solid var(--gpnw-line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.gpnw2027-table th {
  background: var(--gpnw-soft);
  font-weight: 700;
  white-space: nowrap;
}

.gpnw2027-table td:last-child {
  white-space: nowrap;
}

.gpnw2027-file-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gpnw2027-file-list li {
  border-bottom: 1px solid var(--gpnw-line);
  padding: 11px 0;
}

.gpnw2027-file-list li:last-child {
  border-bottom: 0;
}

.gpnw2027-file-list a,
.gpnw2027-wrap a {
  color: var(--gpnw-blue-strong);
  text-decoration: none;
  transition: color 0.15s ease;
}

.gpnw2027-file-list a:hover,
.gpnw2027-wrap a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .gpnw2027-wrap {
    padding: 20px 12px 38px;
  }

  .gpnw2027-wrap h1 {
    font-size: 28px;
  }

  .gpnw2027-card {
    padding: 18px;
  }

  .gpnw2027-layout {
    grid-template-columns: 1fr;
  }

  .gpnw2027-sticky {
    position: static;
  }
}

.gpnw2027-file-list li.gpnw2027-file-image {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gpnw2027-file-list li.gpnw2027-file-image img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--gpnw-line);
}

.gpnw2027-press-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.gpnw2027-press-gallery img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--gpnw-line);
}

.gpnw2027-hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* v3.8.0 · Juryansicht: Punktefeld direkt neben der jeweiligen Antwort */
.gpnw2027-question-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gpnw-line);
}

.gpnw2027-question-block:last-child {
  border-bottom: none;
}

.gpnw2027-question-answer h3 {
  margin-top: 0;
}

.gpnw2027-question-score label {
  display: block;
}

.gpnw2027-question-score input {
  width: 100%;
}

@media (max-width: 860px) {
  .gpnw2027-question-block {
    grid-template-columns: 1fr;
  }
}

/* v3.8.0 · Admin: Bildvorschau in der Unterlagentabelle */
.gpnw2027-admin-thumb {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--gpnw-line);
  margin-bottom: 4px;
}


/* v3.9.0 · Admin: Beschriftung der Tab-Gruppen */
.gpnw2027-tab-group-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gpnw-gray-mid);
}

.gpnw2027-tab-group-label + .gpnw2027-tabs {
  margin-bottom: 16px;
}

/* v3.10.0 · Juryportal: Badges in der Bewerbungsliste */
.gpnw2027-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.gpnw2027-badge-info {
  background: #e8f4fb;
  color: #1c6ea0;
  border: 1px solid #bcdff2;
}

.gpnw2027-badge-warn {
  background: #fef5e4;
  color: #8a5b00;
  border: 1px solid #f0d9a8;
}

/* v3.10.0 · Juryansicht: schwebende Live-Punktsumme */
.gpnw2027-score-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: var(--gpnw-text);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* v3.12.0 · Oeffentliche Stimmen ([gpnw2027_voices]).
   Die Farbvariablen sind sonst auf .gpnw2027-wrap beschraenkt - dieser
   Block steht bewusst ausserhalb davon (er soll sich in eine bestehende
   Seite einfuegen, nicht wie ein Plugin-Kasten wirken) und bringt sie
   deshalb selbst mit. Bildsprache wie die Karten des Themes: weisse
   Karte, blauer Balken oben, 22px Radius, weicher Schatten. */
.gpnw2027-voices {
  --gpnw-blue: #4AA8D8;
  --gpnw-blue-strong: #2388bd;
  --gpnw-orange: #F0A020;
  --gpnw-text: #3A3A3A;
  --gpnw-line: #dce8ef;
  --gpnw-gray-mid: #888888;
  max-width: 1180px;
  margin: 0 auto;
}
.gpnw2027-voices-titel {
  margin: 0 0 20px;
  color: var(--gpnw-text);
}
.gpnw2027-voices-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.gpnw2027-voice {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 26px 24px 22px;
  background: #fff;
  border: 1px solid var(--gpnw-line);
  border-top: 5px solid var(--gpnw-blue);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(58, 58, 58, .075);
  min-width: 0;
}
/* Anfuehrungszeichen als Schmuck, nicht als Text - Screenreader und
   Textauswahl bleiben davon unberuehrt. */
.gpnw2027-voice-text {
  position: relative;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  font-size: 17px;
  line-height: 1.72;
  color: #4b4b4b;
  quotes: none;
}
.gpnw2027-voice-text::before {
  content: "\201E";
  display: block;
  font-size: 46px;
  line-height: .7;
  color: var(--gpnw-blue);
  margin-bottom: 6px;
}
.gpnw2027-voice-quelle {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--gpnw-line);
}
.gpnw2027-voice-name {
  display: block;
  font-weight: 800;
  font-size: 16px;
  color: var(--gpnw-text);
}
.gpnw2027-voice-firma {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--gpnw-gray-mid);
}
.gpnw2027-voice-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gpnw-blue-strong);
}
@media (max-width: 760px) {
  .gpnw2027-voices-grid { grid-template-columns: 1fr; gap: 14px; }
  .gpnw2027-voice { padding: 20px 17px 18px; border-radius: 20px; }
}
/* Portraet der Stimme: fester Kreis, damit hochkant und quer gleich
   sitzen. Firmenlogos stattdessen unbeschnitten, sonst wuerde ein
   breiter Schriftzug an den Raendern abgeschnitten. */
.gpnw2027-voice-foto {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
  object-fit: cover;
  border-radius: 50%;
  background: #E8F4FB;
}
.gpnw2027-voice-foto.is-logo {
  width: auto;
  max-width: 130px;
  height: 44px;
  object-fit: contain;
  border-radius: 0;
  background: none;
}
