/* ============================================
   NEWCOMERS GUIDE — Editorial Overrides
   The Newcomers Guide to Nordøyane
   Shared building blocks from article-shared.css;
   this file holds per-article overrides + unique
   components that use the nwc- prefix.
   ============================================ */


/* ============================================
   HERO WRAPPER — Unified dark zone
   Contains hero + author bar
   ============================================ */
.nwc-hero-wrapper {
  position: relative;
  background: var(--color-midnight, #0a1628);
}


/* ============================================
   HERO — Per-article overrides
   (base layout comes from article-shared.css)
   ============================================ */
.art-hero__media img {
  object-position: center 40%;
  animation: nwcHeroKB 30s ease-out forwards;
}

@keyframes nwcHeroKB {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.art-hero__credit {
  bottom: var(--space-lg, 16px);
  right: var(--space-xl, 24px);
  z-index: 3;
  font-style: italic;
  color: rgba(251, 249, 246, 0.4);
  font-family: inherit;
}


/* ============================================
   INTRO — Per-article overrides
   ============================================ */
.art-intro__inner {
  max-width: 900px;
  padding: var(--space-4xl) var(--space-xl) var(--space-2xl);
}

.art-lead {
  font-size: clamp(1.6rem, 1.5vw + 1.1rem, 2rem);
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-2xl);
  text-align: center;
}

/* Disable the dropcap from shared */
.art-lead::first-letter {
  initial-letter: normal;
  -webkit-initial-letter: normal;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  margin-right: 0;
}

.art-lead a {
  color: var(--color-pine, #2d6a3f);
  text-decoration: underline;
  text-decoration-color: var(--color-aurora, #7dd3c0);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.3s, color 0.3s;
}

.art-lead a:hover {
  color: var(--color-forest, #1a4d2e);
  text-decoration-color: var(--color-pine, #2d6a3f);
}


/* ============================================
   NAVIGATION CARDS — Section overview
   (Unique component — nwc- prefix)
   ============================================ */
.nwc-nav-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.nwc-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: #fff;
  border: 1px solid var(--color-mist, #e8e5e0);
  border-radius: var(--radius-xl, 12px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.4s ease;
}

.nwc-nav-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 106, 63, 0.35);
  box-shadow:
    0 4px 12px rgba(10, 22, 40, 0.04),
    0 12px 32px rgba(10, 22, 40, 0.06),
    0 0 0 1px rgba(45, 106, 63, 0.12);
}

.nwc-nav-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-gold, #d4a574);
}

.nwc-nav-card__icon svg {
  width: 32px;
  height: 32px;
}

.nwc-nav-card__number {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: var(--text-sm, 0.875rem);
  font-weight: 400;
  color: var(--color-gold, #d4a574);
  opacity: 0.6;
  margin-bottom: var(--space-xs);
}

.nwc-nav-card__title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: var(--text-lg, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0 0 var(--space-xs);
}

.nwc-nav-card__desc {
  font-size: var(--text-xs, 0.75rem);
  color: var(--color-text-muted, #666);
  line-height: 1.5;
}


/* ============================================
   SECTIONS — Per-article overrides
   ============================================ */
.art-section__inner {
  max-width: 900px;
}


/* ============================================
   PROSE — Per-article overrides
   ============================================ */
.art-prose {
  margin: 0 auto var(--space-xl);
}


/* ============================================
   SUBHEADINGS — h3 section markers
   (Unique component — nwc- prefix)
   ============================================ */
.nwc-subheading {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 500;
  color: var(--color-text-primary, #1a1a1a);
  margin: var(--space-2xl) 0 var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(125, 211, 192, 0.2);
}

.nwc-subheading--light {
  color: var(--color-warm-white, #FBF9F6);
  border-bottom-color: rgba(125, 211, 192, 0.15);
}


/* ============================================
   MUNICIPALITY DUO — Two councils side-by-side
   (Unique component — nwc- prefix)
   ============================================ */
.nwc-municipality-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.nwc-municipality-duo__img {
  margin: 0;
}

.nwc-municipality-duo__img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-xl, 12px);
}

.nwc-municipality-card {
  background: #fff;
  border: 1px solid var(--color-mist, #e8e5e0);
  border-left: 3px solid var(--color-pine, #2d6a3f);
  border-radius: var(--radius-xl, 12px);
  padding: var(--space-xl) var(--space-2xl);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.4s ease;
}

.nwc-municipality-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 106, 63, 0.35);
  border-left-color: var(--color-pine, #2d6a3f);
  box-shadow:
    0 4px 12px rgba(10, 22, 40, 0.04),
    0 12px 32px rgba(10, 22, 40, 0.06),
    0 0 0 1px rgba(45, 106, 63, 0.12);
}

.nwc-municipality-card__title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: var(--text-xl, 1.25rem);
  font-weight: 500;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0 0 var(--space-md);
}

.nwc-municipality-card p {
  font-size: var(--text-base, 1rem);
  line-height: 1.8;
  color: var(--color-text-secondary, #4a4a4a);
  margin: 0;
}

.nwc-municipality-card a {
  color: var(--color-pine, #2d6a3f);
  text-decoration: underline;
  text-decoration-color: var(--color-aurora, #7dd3c0);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.3s, color 0.3s;
}

.nwc-municipality-card a:hover {
  color: var(--color-forest, #1a4d2e);
  text-decoration-color: var(--color-pine, #2d6a3f);
}


/* ============================================
   CALLOUT — Per-article overrides + unique parts
   ============================================ */
.art-callout {
  margin: var(--space-xl) auto 0;
}

.nwc-callout__title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: var(--text-lg, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0 0 var(--space-md);
}

/* Light variant (for cream/light backgrounds) */
.nwc-callout--light {
  background: linear-gradient(135deg, rgba(45, 106, 63, 0.04), rgba(125, 211, 192, 0.06));
  border-image: linear-gradient(to bottom, var(--color-aurora, #7dd3c0), rgba(125, 211, 192, 0.3)) 1;
}


/* ============================================
   CONTACT GRID — Doctor/service cards
   (Unique component — nwc- prefix)
   ============================================ */
.nwc-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.nwc-contact-grid--single {
  max-width: 500px;
}

.nwc-contact-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--color-pine, #2d6a3f);
  border-radius: var(--radius-xl, 12px);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.4s ease;
}

.nwc-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 106, 63, 0.2);
  border-left-color: var(--color-pine, #2d6a3f);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.1),
    0 12px 32px rgba(0, 0, 0, 0.12),
    0 0 24px rgba(45, 106, 63, 0.10);
}

.nwc-contact-card__location {
  font-size: var(--text-xs, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold, #d4a574);
}

.nwc-contact-card__name {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: var(--text-xl, 1.25rem);
  font-weight: 500;
  color: var(--color-warm-white, #FBF9F6);
  margin: 0;
}

.nwc-contact-card__detail {
  font-size: var(--text-sm, 0.875rem);
  color: rgba(251, 249, 246, 0.6);
  margin: 0;
  line-height: 1.6;
}

.nwc-contact-card__address {
  font-size: var(--text-sm, 0.875rem);
  font-style: normal;
  color: rgba(251, 249, 246, 0.55);
  line-height: 1.6;
}

.nwc-contact-card__phone {
  font-size: var(--text-sm, 0.875rem);
  color: rgba(251, 249, 246, 0.7);
  margin: 0;
}

.nwc-contact-card__phone a {
  color: var(--color-aurora, #7dd3c0);
  text-decoration: none;
}

.nwc-contact-card__phone a:hover {
  text-decoration: underline;
}

.nwc-contact-card__hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--text-xs, 0.75rem);
  color: rgba(251, 249, 246, 0.5);
}

.nwc-contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm, 0.875rem);
  font-weight: 600;
  color: var(--color-aurora, #7dd3c0);
  text-decoration: none;
  margin-top: auto;
  padding-top: var(--space-sm);
  transition: color 0.3s, gap 0.3s;
}

.nwc-contact-card__link:hover {
  color: #a3e4d4;
  gap: 8px;
}

.nwc-contact-card__note {
  font-size: var(--text-sm, 0.875rem);
  color: rgba(251, 249, 246, 0.55);
  margin: var(--space-sm) 0 0;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.6;
}

.nwc-contact-card__note strong {
  color: var(--color-gold, #d4a574);
}

/* Light variant — for cream/light backgrounds */
.nwc-contact-card--light {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: var(--color-mist, #e8e5e0);
  border-left-color: var(--color-pine, #2d6a3f);
}

.nwc-contact-card--light .nwc-contact-card__name {
  color: var(--color-text-primary, #1a1a1a);
}

.nwc-contact-card--light .nwc-contact-card__detail {
  color: var(--color-text-muted, #666);
}

.nwc-contact-card--light .nwc-contact-card__address {
  color: var(--color-text-muted, #666);
}

.nwc-contact-card--light .nwc-contact-card__phone {
  color: var(--color-text-secondary, #4a4a4a);
}

.nwc-contact-card--light .nwc-contact-card__phone a {
  color: var(--color-pine, #2d6a3f);
}

.nwc-contact-card--light .nwc-contact-card__link {
  color: var(--color-pine, #2d6a3f);
}

.nwc-contact-card--light .nwc-contact-card__link:hover {
  color: var(--color-forest, #1a4d2e);
}

.nwc-contact-card--light .nwc-contact-card__note {
  color: var(--color-text-muted, #666);
  border-top-color: var(--color-mist, #e8e5e0);
}

.nwc-contact-card--light .nwc-contact-card__note strong {
  color: var(--color-pine, #2d6a3f);
}

/* Wide variant — single column full-width card */
.nwc-contact-card--wide {
  max-width: 100%;
}


/* ============================================
   EMERGENCY NUMBERS — Prominent box
   (Unique component — nwc- prefix)
   ============================================ */
.nwc-emergency {
  margin-top: var(--space-2xl);
  padding: var(--space-2xl);
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.04));
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--radius-xl, 12px);
  text-align: center;
}

.nwc-emergency__title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: var(--text-xl, 1.25rem);
  font-weight: 500;
  color: var(--color-gold, #d4a574);
  margin: 0 0 var(--space-xl);
  letter-spacing: 0.02em;
}

.nwc-emergency__numbers {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
}

.nwc-emergency__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.nwc-emergency__number {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--color-warm-white, #FBF9F6);
  line-height: 1;
  letter-spacing: 0.05em;
}

.nwc-emergency__label {
  font-size: var(--text-xs, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(251, 249, 246, 0.5);
}


/* ============================================
   ISLAND GROUP — Grouped by island
   (Unique component — nwc- prefix)
   ============================================ */
.nwc-island-group {
  margin: var(--space-xl) 0;
}

.nwc-island-group__title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: var(--text-lg, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0 0 var(--space-md);
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-pine, #2d6a3f);
}

.nwc-island-group__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.nwc-island-group__title a:hover {
  color: var(--color-pine, #2d6a3f);
}


/* ============================================
   SHOP CARDS — Compact store listings
   (Unique component — nwc- prefix)
   ============================================ */
.nwc-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.nwc-shop-card {
  background: #fff;
  border: 1px solid var(--color-mist, #e8e5e0);
  border-radius: var(--radius-lg, 8px);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.4s ease;
}

.nwc-shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 106, 63, 0.35);
  box-shadow:
    0 4px 12px rgba(10, 22, 40, 0.04),
    0 12px 32px rgba(10, 22, 40, 0.06),
    0 0 0 1px rgba(45, 106, 63, 0.12);
}

.nwc-shop-card__type {
  font-size: var(--text-xs, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold, #d4a574);
}

.nwc-shop-card__name {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: var(--text-base, 1rem);
  font-weight: 500;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0;
}

.nwc-shop-card address {
  font-size: var(--text-sm, 0.875rem);
  font-style: normal;
  color: var(--color-text-muted, #666);
  line-height: 1.5;
}

.nwc-shop-card a {
  font-size: var(--text-sm, 0.875rem);
  font-weight: 600;
  color: var(--color-pine, #2d6a3f);
  text-decoration: none;
  transition: color 0.3s;
}

.nwc-shop-card a:hover {
  color: var(--color-forest, #1a4d2e);
}


/* ============================================
   ACTIVITY CARDS — Clubs and organizations
   (Unique component — nwc- prefix)
   ============================================ */
.nwc-activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.nwc-activity-card {
  background: #fff;
  border: 1px solid var(--color-mist, #e8e5e0);
  border-radius: var(--radius-xl, 12px);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.4s ease;
}

.nwc-activity-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 106, 63, 0.35);
  box-shadow:
    0 4px 12px rgba(10, 22, 40, 0.04),
    0 12px 32px rgba(10, 22, 40, 0.06),
    0 0 0 1px rgba(45, 106, 63, 0.12);
}

.nwc-activity-card__name {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: var(--text-lg, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0;
}

.nwc-activity-card__desc {
  font-size: var(--text-sm, 0.875rem);
  line-height: 1.7;
  color: var(--color-text-secondary, #4a4a4a);
  margin: 0;
}

.nwc-activity-card address {
  font-size: var(--text-sm, 0.875rem);
  font-style: normal;
  color: var(--color-text-muted, #666);
}

.nwc-activity-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm, 0.875rem);
  font-weight: 600;
  color: var(--color-pine, #2d6a3f);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.3s, gap 0.3s;
}

.nwc-activity-card__link:hover {
  color: var(--color-forest, #1a4d2e);
  gap: 8px;
}

/* Multiple links row */
.nwc-activity-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-mist, #e8e5e0);
}

.nwc-activity-card__links a {
  font-size: var(--text-xs, 0.75rem);
  font-weight: 600;
  color: var(--color-pine, #2d6a3f);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(45, 106, 63, 0.06);
  border-radius: var(--radius-full, 9999px);
  transition: background 0.3s, color 0.3s;
}

.nwc-activity-card__links a:hover {
  background: rgba(45, 106, 63, 0.12);
  color: var(--color-forest, #1a4d2e);
}

/* Featured variant — gold accent border */
.nwc-activity-card--featured {
  border-left: 3px solid var(--color-pine, #2d6a3f);
  background: linear-gradient(135deg, rgba(45, 106, 63, 0.04), rgba(45, 106, 63, 0.015));
}

/* Highlight variant — aurora accent, standout */
.nwc-activity-card--highlight {
  border-left: 3px solid var(--color-aurora, #7dd3c0);
  background: linear-gradient(135deg, rgba(125, 211, 192, 0.06), rgba(125, 211, 192, 0.02));
}


/* ============================================
   FIGURES — Per-article overrides
   (Cinematic variant not in shared)
   ============================================ */

/* Cinematic variant — full-bleed breakout */
.art-figure--cinematic {
  max-width: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0;
}

.art-figure--cinematic .art-figure__img-wrap {
  border-radius: 0;
  aspect-ratio: 21 / 9;
}

.art-figure--cinematic .art-figure__img-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.art-figure--cinematic figcaption {
  max-width: 800px;
  margin: var(--space-lg) auto 0;
  padding: 0 var(--space-xl);
}


/* ============================================
   CLOSING — Per-article overrides + unique parts
   ============================================ */
.art-closing__text {
  font-style: normal;
  margin-bottom: var(--space-md);
}

.art-closing__text a {
  color: var(--color-pine, #2d6a3f);
  text-decoration: underline;
  text-decoration-color: var(--color-aurora, #7dd3c0);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.3s, color 0.3s;
}

.art-closing__text a:hover {
  color: var(--color-forest, #1a4d2e);
  text-decoration-color: var(--color-pine, #2d6a3f);
}

/* Unique welcome text */
.nwc-closing__welcome {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold, #d4a574);
  margin-bottom: var(--space-2xl);
}


/* ============================================
   RESPONSIVE — Tablet (768px)
   ============================================ */
@media (max-width: 768px) {
  .nwc-nav-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .nwc-municipality-card {
    padding: var(--space-lg);
  }

  .nwc-contact-grid {
    grid-template-columns: 1fr;
  }

  .nwc-emergency__numbers {
    gap: var(--space-2xl);
  }

  .art-figure--cinematic .art-figure__img-wrap {
    aspect-ratio: 16 / 9;
  }

  .art-callout {
    margin-left: 0;
    margin-right: 0;
    padding: var(--space-lg) var(--space-xl);
  }

  .nwc-activity-grid {
    grid-template-columns: 1fr;
  }

  .nwc-shop-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE — Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
  .nwc-nav-cards {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .nwc-nav-card {
    flex-direction: row;
    text-align: left;
    padding: var(--space-lg);
    gap: var(--space-md);
  }

  .nwc-nav-card__icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .nwc-nav-card__number {
    display: none;
  }

  .nwc-emergency__numbers {
    flex-direction: row;
    gap: var(--space-xl);
  }

  .nwc-emergency__number {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .nwc-municipality-duo__img img {
    border-radius: var(--radius-lg, 8px);
  }

  .nwc-contact-card {
    padding: var(--space-lg);
  }

  .nwc-activity-card {
    padding: var(--space-lg);
  }

  .nwc-subheading {
    font-size: clamp(1.1rem, 5vw, 1.3rem);
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .art-hero__media img {
    animation: none;
    transform: none;
  }

  .nwc-nav-card,
  .nwc-municipality-card,
  .nwc-contact-card,
  .nwc-shop-card,
  .nwc-activity-card,
  .nwc-contact-card__link,
  .nwc-activity-card__link,
  .nwc-activity-card__links a,
  .art-closing__cta {
    transition: none;
  }
}
