/* ============================================================
   sweden.css — the destination: an oversized Nordic-cross field
   in flag blue/yellow, a short note, and a map centred on Sweden.
   The cross is built from two bars rather than a small flag icon
   so it reads as the section's structure, not a decoration.
   ============================================================ */

.sweden {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--sea) 0%, var(--sea-deep) 100%);
  color: var(--sea-ink);
  padding: var(--space-6) 0;
}

/* the two bars of the Nordic cross, oversized and off-centred
   toward the hoist side like the real flag, bleeding past the
   section edges so it reads as field rather than icon */
.sweden__cross {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sweden__cross::before,
.sweden__cross::after {
  content: "";
  position: absolute;
  background: var(--sun);
  opacity: 0.92;
}
/* vertical bar */
.sweden__cross::before {
  top: -10%;
  bottom: -10%;
  left: 14%;
  width: clamp(2.5rem, 7vw, 6rem);
}
/* horizontal bar */
.sweden__cross::after {
  left: -10%;
  right: -10%;
  top: 34%;
  height: clamp(2.5rem, 7vw, 6rem);
}

.sweden__content {
  position: relative;
  z-index: 1; /* always above .sweden__cross, whatever the viewport does to its layout */
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: var(--content-width);
  background: rgba(4, 32, 59, 0.72);
  backdrop-filter: blur(6px);
  padding: var(--space-4) var(--space-3);
  margin: 0 auto;
}

.eyebrow--inverse {
  color: var(--sea-ink);
  opacity: 0.75;
}

.sweden__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #ffffff;
}

.sweden__text {
  margin: 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  color: var(--sea-ink);
}

.sweden__text strong {
  color: var(--sun);
  font-weight: 700;
}

.sweden__map-frame {
  position: relative;
  margin-top: var(--space-2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--sea-deep);
  aspect-ratio: 1 / 1;
  max-width: 26rem;
  overflow: hidden;
}

.sweden__map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* the source map is a bright multicolour county map — desaturate
     it so it sits inside the panel instead of fighting the flag
     blue/yellow palette */
  filter: saturate(0.45) brightness(0.92) contrast(1.05);
}
