/** Shopify CDN: Minification failed

Line 19:16 Expected identifier but found whitespace
Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 19:70 Expected ":"
Line 25:6 Expected identifier but found whitespace
Line 25:8 Unexpected "{"
Line 25:17 Expected ":"
Line 25:56 Expected ":"

**/


/* CSS from section stylesheet tags */
.media-row-section {
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: {{ section.settings.padding_bottom | default: 32 }}px;
  background-color: white;
}

.media-row {
  display: grid;
  gap: {{ section.settings.mobile_gap | default: 12 }}px;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (min-width: 1024px) {
  .media-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .media-row-section {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.media-item {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3; /* Højformat */
  overflow: hidden;
  border-radius: 12px;
  background-color: #ffffff;
}

.media-item-content {
  position: absolute;
  inset: 0;
  background-color: transparent;
}

.media-item-content img,
.media-item-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
  background-color: transparent !important;
}

video::-webkit-media-controls,
video::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none;
}

.shop-the-look-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border-radius: 12px;
  z-index: 2;
}

.media-item:hover .shop-the-look-overlay,
.media-item:focus-within .shop-the-look-overlay {
  opacity: 1;
  transform: translateY(0);
}

.shop-the-look-content {
  font-size: 14px;
  line-height: 1.4;
}

.shop-the-look-content ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.shop-the-look-content li::before {
  content: "• ";
  margin-right: 4px;
}