/* Flemsøya/Skuløya — village-specific overrides
   Scoped to #outdoors to avoid leaking into other villages. */


/* =============================================
   NORDØY IDRETTSLAG — Sports aside redesign
   ============================================= */

/* -- Match prose content width -- */
#outdoors .flemsoya-sports {
  max-width: calc(1060px - (2 * var(--space-xl)));
  padding: var(--space-2xl) var(--space-xl) var(--space-3xl) var(--space-xl);
  margin-bottom: var(--space-3xl);
}

/* -- Header: badge above title -- */
.flemsoya-sports__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
}

.flemsoya-sports__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(250, 248, 245, 0.15) 0%,
    rgba(250, 248, 245, 0.06) 70%,
    transparent 100%
  );
}

/* Override base title spacing — header handles margin now */
#outdoors .flemsoya-sports .v-aside__title {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  font-size: var(--text-xl);
  letter-spacing: 0.04em;
}

.flemsoya-sports__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  font-family: 'Glacial Indifference', var(--font-display), sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200, 240, 210, 0.85);
  background: rgba(45, 106, 63, 0.25);
  border: 1px solid rgba(45, 106, 63, 0.4);
  border-radius: 100px;
  white-space: nowrap;
}


/* -- Pills: horizontal wrap of activity chips -- */
.flemsoya-sports__pills {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
}

.flemsoya-sports__pills::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(250, 248, 245, 0.1) 0%,
    rgba(250, 248, 245, 0.04) 80%,
    transparent 100%
  );
}

.flemsoya-sports__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  font-family: 'Glacial Indifference', var(--font-display), sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(250, 248, 245, 0.78);
  background: rgba(250, 248, 245, 0.04);
  border: 1px solid rgba(250, 248, 245, 0.08);
  border-radius: 100px;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.flemsoya-sports__pill:hover {
  background: rgba(45, 106, 63, 0.15);
  border-color: rgba(45, 106, 63, 0.3);
  color: rgba(250, 248, 245, 0.95);
}

.flemsoya-sports__pill svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-gold);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.flemsoya-sports__pill:hover svg {
  opacity: 1;
}


/* -- Highlights: info blocks with leading icons -- */
.flemsoya-sports__highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flemsoya-sports__highlight {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.25rem 1.5rem;
  background: rgba(250, 248, 245, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(250, 248, 245, 0.05);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.flemsoya-sports__highlight:hover {
  background: rgba(250, 248, 245, 0.05);
  border-color: rgba(250, 248, 245, 0.08);
}

.flemsoya-sports__highlight-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--color-gold);
  opacity: 0.7;
}

.flemsoya-sports__highlight p {
  margin: 0;
  font-family: 'Glacial Indifference', var(--font-display), sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.62);
}

.flemsoya-sports__highlight p strong {
  color: rgba(250, 248, 245, 0.85);
  font-weight: 700;
}


/* -- Mobile adjustments -- */
@media (max-width: 640px) {
  .flemsoya-sports__pills {
    gap: 0.4rem;
  }

  .flemsoya-sports__pill {
    padding: 0.4rem 0.85rem;
    font-size: var(--text-sm);
  }

  .flemsoya-sports__pill svg {
    width: 20px;
    height: 20px;
  }

  .flemsoya-sports__highlight {
    padding: 1rem 1.15rem;
    gap: 0.85rem;
  }

  .flemsoya-sports__highlight-icon {
    width: 24px;
    height: 24px;
  }

  .flemsoya-sports__highlight p {
    font-size: var(--text-sm);
  }
}
