/* =====================================================================
   style.css — Utseendet til Badegris
   =====================================================================
   Tips for læring: prøv å endre farger, størrelser eller avstander
   her og se hva som skjer når du laster siden på nytt.
   ===================================================================== */

body {
  font-family: sans-serif;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300' preserveAspectRatio='none'><path d='M0 50 Q360 15 720 50 Q1080 85 1440 40 L1440 300 L0 300 Z' fill='%23e8c866'/></svg>"),
    linear-gradient(180deg, #e8f6ff 0%, #b8e4f8 35%, #7dcdf2 55%, #4aade0 70%, #3590c8 82%, #1a6a9e 100%);
  background-size: 100% 42%, cover;
  background-position: bottom center, center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: #21323d;
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
}

h1 {
  text-align: center;
  color: #0b6e99;
}

#status {
  background: none;
  border: none;
  padding: 4px 0;
  margin-bottom: 16px;
  font-size: 0.9em;
  font-style: italic;
  text-align: center;
}

/* =====================================================================
   SPILLBORDET — ovalt bord sett fra oversiden (Steg 11)
   =====================================================================
   #spillbord er "scenen": den har plass nederst til de 3 botspillerne
   (#motstandere), og selve bordet (#bord-oval, som inneholder
   #stranden) fyller resten. Botspillerne er plassert med
   "position: absolute" rundt den øvre buen av bordet.
   ===================================================================== */
#spillbord {
  position: relative;
  margin: 0 auto 16px;
  padding-top: 154px; /* gir plass til de 3 botboksene over bordet */
}

#bord-oval {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  min-height: 300px;
  background: url("bilder/bord-bakgrunn.png") center / 100% 100% no-repeat;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 120px;
  box-sizing: border-box;
  position: relative;
}

/* ---------- Motstandere: plassert rundt den øvre buen av bordet ---------- */
#motstandere {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 128px;
}

#motstandere .bot {
  position: absolute;
  top: 8px;
  width: 31%;
  max-width: 180px;
  box-sizing: border-box;
}

/* Spiller 1 (Geir) — venstre */
#motstandere .bot:nth-child(1) {
  left: 0;
}

/* Spiller 2 (Inger) — midten, litt høyere oppe (lengst fra "Du") */
#motstandere .bot:nth-child(2) {
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Spiller 3 (Pål) — høyre */
#motstandere .bot:nth-child(3) {
  right: 0;
}

.bot {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 6px 8px;
  text-align: center;
}

.bot h4 {
  margin: 0;
  font-family: 'Bubblegum Sans', cursive;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.bot-tur-ikon {
  height: 56px;
  width: auto;
}

.bot-poeng-rad {
  position: relative;
  height: 32px;
  margin-top: 4px;
  display: flex;
  justify-content: center;
}

.bot-poengkort-stabel {
  position: absolute;
  height: 28px;
  width: auto;
}

.bot-poeng-antall {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 28px;
  color: #2d2a3e;
}

.bot-inaktiv-navn {
  color: #1a6a9e;
}

.bot-aktiv-navn {
  color: #c4357f;
  animation: namn-vekst 0.5s ease-out forwards, tur-puls 1.4s ease-in-out infinite;
}

.bot-ikoner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.bot-ikon-gruppe {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bot-ikon-gruppe img {
  height: 56px;
  width: auto;
}

.bot-ikon-gruppe span {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 28px;
  color: #2d2a3e;
}

#din-hand-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hand-header-kol {
  display: flex;
  align-items: center;
}

.hand-header-kol {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hand-header-kol-høyre {
  justify-content: flex-end;
}

.race-svar-knapp {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 18px;
  background: none;
  border: none;
  color: #c4357f;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.race-svar-knapp:disabled {
  color: #b6c2c9;
  background: none;
  cursor: not-allowed;
}

.race-svar-knapp img {
  height: 56px;
  width: auto;
}

/* Race-ikonknapper (tommel + haien kommer) */
.race-ikon-knapp {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.race-ikon-knapp img {
  height: 56px;
  width: auto;
  display: block;
}

.race-ikon-knapp.race-aktiv img {
  animation: race-ikon-puls 1.6s ease-in-out infinite;
}

@keyframes kort-flip-inn {
  0%   { transform: scale(0.6) translateY(16px); opacity: 0; }
  60%  { transform: scale(1.05) translateY(-4px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.kort-flip-inn {
  animation: kort-flip-inn 0.4s ease-out;
}

@keyframes namn-vekst {
  from { font-size: 24px; }
  to   { font-size: 26.4px; }
}

@keyframes race-ikon-puls {
  0%   { transform: scale(1);   filter: brightness(1); }
  50%  { transform: scale(1.6); filter: brightness(1.3) drop-shadow(0 0 8px #c4357f); }
  100% { transform: scale(1);   filter: brightness(1); }
}

/* Din hånd — tur-ikon */
#din-hand h2.din-hand-aktiv {
  color: #c4357f;
  animation: tur-puls 1.4s ease-in-out infinite;
}

#din-hand h2 .navn-tekst {
  cursor: pointer;
}

.navn-input {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 22px;
  border: none;
  outline: none;
  background: transparent;
  color: inherit;
  width: 140px;
  text-align: center;
}

#din-hand h2 {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 24px;
  font-weight: 400;
  color: #1a6a9e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#din-hand h2 img.tur-ikon {
  height: 56px;
  width: auto;
}

/* ---------- Stranden (ligger MIDT på det ovale bordet, på en rad) ---------- */
#stranden {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

/* Bytteområdet: de tre kildene spilleren kan bytte kort med */
#bytte-omrade {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.30);
  border-radius: 12px;
  padding: 6px 10px 4px;
}

#bytte-omrade .strand-boks + .strand-boks {
  margin-left: 8px;
}

/* Badevakten skilles tydelig fra bytteområdet */
#stranden .strand-boks-badevakt {
  margin-left: 24px;
  padding-left: 20px;
  border-left: 1.5px dashed rgba(255,255,255,0.30);
}

/* Venner-kortene skal ha samme innbyrdes gap */
#venner.kort-rad {
  gap: 8px;
  flex-wrap: nowrap;
}
#venner.kort-rad .kort {
  margin: 0;
}

.strand-boks {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Alle kort-bunker og kort-rader på stranden har fast høyde = kortets høyde */
.strand-boks .kort-bunke,
.strand-boks .kort-rad {
  height: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Stabel-effekt: box-shadow simulerer kort bak øverste kort */
.bunke-kort {
  box-shadow:
    -4px 5px 0 0 rgba(100,180,220,0.7),
     4px 5px 0 0 rgba(100,180,220,0.5);
}


.strand-boks h3 {
  margin: 0 0 6px 0;
  font-size: 14px;
}

#stranden.skjul-tekst .strand-boks h3,
#stranden.skjul-tekst #bytte-omrade .antall,
#stranden.skjul-tekst .strand-boks-badevakt .antall {
  display: none;
}

/* ---------- Kort (generelt) ---------- */
.kort {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 113px;
  height: 158px;
  border: none;
  border-radius: 8px;
  background: white;
  font-size: 28px;
  margin: 3px;
  cursor: pointer;
  user-select: none;
  transition: transform 0.1s;
  overflow: hidden;
}

.kort:hover {
  transform: translateY(-4px);
}

.kort.valgt {
  box-shadow: 0 0 0 4px #e07a00, 0 0 12px rgba(224, 122, 0, 0.5);
  transform: translateY(-4px);
}

/* ── FLIP-KORT (poengkort) ── */
.flip-kort {
  width: 126px;
  height: 176px;
  margin: 3px;
  perspective: 600px;
  cursor: pointer;
  display: inline-block;
}

.flip-kort-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.flip-kort.snudd .flip-kort-inner {
  transform: rotateY(180deg);
}

.flip-kort-forside,
.flip-kort-bakside {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-kort-bakside {
  transform: rotateY(180deg);
  background: #d6f0ff;
  font-size: 13px;
  flex-direction: column;
  padding: 4px;
  text-align: center;
}

.flip-kort-forside img,
.flip-kort-bakside img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flip-kort:hover {
  opacity: 0.9;
}

/* Et "kortbilde" — hvis du legger et bilde i bilder/-mappen
   (se README-bilder.txt), brukes det i stedet for emoji.
   Bildet fylles ut til hele kortet, men mister ikke fasongen. */
.kort img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kort-rad {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.kort-bunke {
  display: flex;
  justify-content: center;
}

.antall {
  font-size: 12px;
  margin-top: 4px;
}

/* ---------- Din hånd ("din plass" ved bordet) ---------- */
#din-hand {
  padding: 12px;
  margin-bottom: 16px;
  text-align: center;
}

#din-hand.fem-kort {
}

#din-hand h3 {
  margin-top: 20px;
  padding-top: 12px;
}

#dine-poeng-sum {
  font-weight: bold;
  margin-top: 6px;
}

/* ---------- Knapper ---------- */
#handlinger {
  text-align: center;
  margin-bottom: 16px;
}

button {
  font-size: 15px;
  padding: 10px 14px;
  margin: 4px;
  border-radius: 6px;
  border: none;
  background: #0b6e99;
  color: white;
  cursor: pointer;
}

button:disabled {
  background: #b6c2c9;
  cursor: not-allowed;
}

button.btn-rosa {
  background: #c4357f;
}

button.race-btn {
  background: #d9534f;
  font-weight: bold;
}

button.race-btn:disabled {
  background: #b6c2c9;
}

/* ---------- Rundeoppgjør ---------- */
#oppgjor {
  background: #fff7e0;
  border: 2px solid #e07a00;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 16px;
  text-align: center;
}

#oppgjor h2 {
  margin-top: 0;
}

/* ---------- Poengoversikt ---------- */
#poeng {
  background: white;
  border-radius: 10px;
  padding: 12px;
}

#poeng-liste div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}

/* ---------- Sluttscoring ---------- */
#sluttscore {
  background: white;
  border: 2px solid #0b6e99;
  border-radius: 10px;
  padding: 12px;
  margin-top: 16px;
}

#sluttscore h2 {
  margin-top: 0;
  text-align: center;
}

.sluttscore-rad {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 10px;
}

.sluttscore-rad.vinner {
  border-color: #e07a00;
  background: #fff7e0;
}

.sluttscore-topp {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.sluttscore-detaljer {
  font-size: 13px;
  color: #21323d;
  margin-top: 4px;
}

/* ---------- Bot-starter-overlay ---------- */
#bot-starter-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url("bilder/bord-bakgrunn.png") center / 100% 100% no-repeat;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

#btn-bot-starter {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 20px;
  background: #c4357f;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(196,53,127,0.4), 0 0 0 4px white;
  transition: transform 0.15s, box-shadow 0.15s;
}

#btn-bot-starter:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(196,53,127,0.5);
}

#btn-bot-starter img {
  height: 64px;
  width: auto;
}

/* ---------- Runde-overlay ---------- */
#runde-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url("bilder/bord-bakgrunn.png") center / 100% 100% no-repeat;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

#btn-start-runde {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 22px;
  background: #c4357f;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(196,53,127,0.4), 0 0 0 4px white;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}

#btn-start-runde:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(196,53,127,0.5);
}

/* ---------- Bytte-glød på strand-kort ---------- */
@keyframes bytte-glow {
  0%   { box-shadow: 0 0 0px rgba(255,255,255,0); }
  40%  { box-shadow: 0 0 14px 6px rgba(255,255,255,0.9); }
  100% { box-shadow: 0 0 0px rgba(255,255,255,0); }
}
.bytte-glow {
  animation: bytte-glow 0.5s ease-out forwards;
}

/* ---------- Tur-indikator: hvit glow på aktivt spillernavn ---------- */
@keyframes tur-puls {
  0%, 100% { text-shadow: 0 0 0px rgba(255,255,255,0); }
  50%       { text-shadow: 0 0 6px rgba(255,255,255,1), 0 0 14px rgba(255,255,255,0.6); }
}

/* ---------- Race-initiator: pulserende navn ---------- */
@keyframes race-puls {
  0%   { text-shadow: 0 0 0px #c4357f; }
  50%  { text-shadow: 0 0 4px #c4357f, 0 0 8px #c4357f; }
  100% { text-shadow: 0 0 0px #c4357f; }
}

.race-initiator {
  animation: race-puls 1s ease-in-out infinite;
  color: #c4357f;
}

/* ---------- Hall of Fame ---------- */
.hof-rad {
  display: grid;
  grid-template-columns: 32px 1fr auto auto auto;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  border-bottom: 1px solid #eee;
  font-family: 'Bubblegum Sans', cursive;
  font-size: 15px;
}
.hof-plass { color: #888; }
.hof-navn { color: #1a6a9e; }
.hof-detalj { font-size: 13px; color: #666; }
.hof-poeng { color: #c4357f; }
.hof-dato { font-size: 12px; color: #aaa; }

/* ---------- Kappløp: visuell varsel-effekt ---------- */
/* Når et kappløp er i gang ("Fire like badegriser" / "Haien kommer!"),
   legger game.js til klassen "kapploep-aktiv" på <body>. Da blinker
   statuslinjen og kappløp-knappene rødt, slik at det er umulig
   å ikke merke at det skjer noe! */
@keyframes kapploep-blink {
  from { box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.7); }
  to   { box-shadow: 0 0 0 12px rgba(217, 83, 79, 0); }
}

@keyframes bord-alarm-puls {
  0%   { outline: 4px solid rgba(217, 83, 79, 0.9); outline-offset: 0px;  box-shadow: 0 0 24px 8px rgba(217, 83, 79, 0.5); }
  50%  { outline: 4px solid rgba(217, 83, 79, 0.3); outline-offset: 6px;  box-shadow: 0 0 40px 16px rgba(217, 83, 79, 0.2); }
  100% { outline: 4px solid rgba(217, 83, 79, 0.9); outline-offset: 0px;  box-shadow: 0 0 24px 8px rgba(217, 83, 79, 0.5); }
}

body.kapploep-aktiv #bord-oval {
  animation: bord-alarm-puls 0.8s ease-in-out infinite;
}

body.kapploep-aktiv #status {
  border-color: #d9534f;
  background: #fff0f0;
  font-weight: bold;
  font-style: normal;
  animation: kapploep-blink 0.7s infinite alternate;
}

body.kapploep-badegris-aktiv #status {
  background: none;
  border: none;
}

body.kapploep-aktiv button.race-btn:not(:disabled) {
  animation: kapploep-blink 0.5s infinite alternate;
}

/* ---------- Mindre skjermer: gi opp det ovale bordet ----------
   På smale skjermer er det ikke plass til et ovalt bord med
   botbokser plassert rundt buen — da går vi tilbake til en enkel,
   stablet layout (som i Steg 1–10), men beholder fargene. */
/* =====================================================================
   VELKOMSTSKJERM — vises ved første innlasting
   ===================================================================== */
/* Skjul spillelementer mens velkomstskjermen vises */
body.velkomst-aktiv #spillbord,
body.velkomst-aktiv #din-hand,
body.velkomst-aktiv #handlinger,
body.velkomst-aktiv #status,
body.velkomst-aktiv #oppgjor,
body.velkomst-aktiv #poeng,
body.velkomst-aktiv #sluttscore {
  visibility: hidden;
}

#velkomst-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 15vh;
  pointer-events: auto;
}

#velkomst-innhold {
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#velkomst-logo {
  width: min(360px, 80vw);
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}

#velkomst-undertekst {
  font-size: 1.1rem;
  color: #1a3a50;
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
  margin: 0;
}

#velkomst-start-knapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bubblegum Sans', cursive;
  font-size: 26px;
  background: #c4357f;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(196,53,127,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}

#velkomst-start-knapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(196,53,127,0.5);
}

#velkomst-start-knapp img {
  height: 52px;
  width: auto;
}

/* ---------- Tutorial-hjelpeknapp ved spillernavnet ---------- */
.tutorial-hjelp-knapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  font-family: sans-serif;
  color: #1a6a9e;
  vertical-align: middle;
  margin-left: 8px;
  line-height: 1;
  transition: background 0.15s;
}
.tutorial-hjelp-knapp:hover {
  background: rgba(255,255,255,0.8);
}

/* =====================================================================
   TUTORIAL — første gangs innføring
   ===================================================================== */
#tutorial-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 290;
}

#tutorial-kort {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 16px 20px 24px;
  box-shadow: 0 -6px 32px rgba(0,0,0,0.22);
  z-index: 300;
  pointer-events: auto;
  max-width: 640px;
  margin: 0 auto;
}

#tutorial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

#tutorial-steg-teller {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}

#tutorial-progressbar {
  flex: 1;
  height: 4px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}

#tutorial-progress-fill {
  height: 100%;
  background: #c4357f;
  border-radius: 2px;
  transition: width 0.3s ease;
}

#tutorial-tittel {
  font-family: 'Bubblegum Sans', cursive;
  color: #1a6a9e;
  margin: 0 0 6px;
  font-size: 19px;
}

#tutorial-tekst {
  margin: 0 0 14px;
  line-height: 1.55;
  font-size: 14px;
  color: #333;
}

#tutorial-knapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

#tutorial-btn-hopp {
  background: none;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  color: #888;
  font-size: 13px;
}

#tutorial-btn-neste {
  background: #c4357f;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 22px;
  cursor: pointer;
  font-family: 'Bubblegum Sans', cursive;
  font-size: 16px;
}

#tutorial-btn-neste:hover { background: #a82c6a; }
#tutorial-btn-hopp:hover  { border-color: #999; color: #555; }

@keyframes tutorial-puls {
  0%, 100% { outline: 3px solid #ffd700; outline-offset: 4px; }
  50%       { outline: 4px solid #ff9900; outline-offset: 6px; }
}

.tutorial-highlight {
  animation: tutorial-puls 1.2s ease-in-out infinite;
  border-radius: 6px;
}

/* Ekstra plass under innholdet så bottom-sheeten ikke dekker siste rad */
body.tutorial-aktiv {
  padding-bottom: 200px;
}

@media (max-width: 680px) {
  #spillbord {
    padding-top: 0;
  }

  #bord-oval {
    border-radius: 0;
    border: none;
  }

  #motstandere {
    position: static;
    height: auto;
    display: flex;
    gap: 8px;
    justify-content: space-around;
    margin-bottom: 12px;
  }

  #motstandere .bot {
    position: static;
    width: auto;
    max-width: none;
    flex: 1;
  }

  #stranden {
    grid-template-columns: repeat(2, 1fr);
  }
}
