/** Shopify CDN: Minification failed

Line 63:18 Unexpected "{"
Line 63:27 Expected ":"
Line 63:34 Unexpected "{"
Line 71:20 Unexpected "{"
Line 71:29 Expected ":"
Line 71:36 Unexpected "{"

**/
/* === Dual Image Section (RS Sports) === */
.dual-images-section {
  margin: 0;
  padding: 0;
}

.dual-images-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rs-dual-gap, 1rem);
  margin: 0;
  padding: 0;
}

@media (min-width: 990px) {
  .dual-images-section__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tile */
.dual-images-tile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* avstånd mellan bild och ev. knapp */
  margin: 0;
  padding: 0;
}

/* Bildlänk */
.dual-images-link {
  display: block;
  line-height: 0;       /* tar bort baseline-remsa */
  text-decoration: none;
}

.dual-images-media {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

/* Knapp-wrap */
.dual-images-actions {
  display: flex;
  justify-content: center;
  padding: 0;           /* håll tight; ändra i behov */
  margin: 0;
}

/* Yttre Shopify wrapper – nolla vertikal luft */
#shopify-section-{{ section.id }} {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: calc(var(--section-spacing-unit-mobile) * {{ section.settings.spacing_top_mobile }});
  padding-bottom: calc(var(--section-spacing-unit-mobile) * {{ section.settings.spacing_bottom_mobile }});
}

@media (min-width: 990px) {
  #shopify-section-{{ section.id }} {
    padding-top: calc(var(--section-spacing-unit-desktop) * {{ section.settings.spacing_top_desktop }});
    padding-bottom: calc(var(--section-spacing-unit-desktop) * {{ section.settings.spacing_bottom_desktop }});
  }
}

/* Containerbredd */
.dual-images-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.dual-images-container.max-w-page { max-width: var(--page-width, 1200px); }
.dual-images-container.max-w-full { max-width: 100%; }
.dual-images-container.max-w-seminarrow { max-width: 960px; }
.dual-images-container.max-w-narrow { max-width: 720px; }
