/** Shopify CDN: Minification failed

Line 43:10 Expected identifier but found whitespace
Line 43:11 Unexpected "1"

**/
/* Base Layout */
.et-collection-banner {
  width: 100%;
  margin-bottom: 24px;
}

/* Top Row: Blocks Area */
.et-collection-banner__top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px; /* Space between top row and banner */
  gap: 16px;
}

/* Bottom Row: Banner Area */
.et-collection-banner__bottom-row {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px; /* Mobile Radius */
  min-height: 200px;
  display: flex;
  align-items: center;
  padding: 24px; /* Mobile Padding */
}

/* Background Image & Overlay */
.et-collection-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
  z-index: 1;
}

.et-collection-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.et-collection-banner__img-desktop,
.et-collection-banner__img-mobile {
  width: 100%;
  height: 100%;
}

.et-collection-banner__img-desktop img,
.et-collection-banner__img-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Mobile Default */
.et-collection-banner__img-desktop {
  display: none;
}
.et-collection-banner__img-mobile {
  display: block;
}

@media screen and (min-width: 768px) {
  .et-collection-banner__img-desktop {
    display: block;
  }
  .et-collection-banner__img-mobile {
    display: none;
  }
}

.et-collection-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  /* Mobile Gradient */
  background: linear-gradient(38.89deg, #241f21 23.18%, rgba(36, 31, 33, 0) 68.78%), linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  border-radius: 8px;
}

/* Content */
.et-collection-banner__content {
  position: relative; /* Above overlay */
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.et-collection-banner__title {
  font-family: 'Inter', sans-serif; /* Fallback */
  font-weight: 700;
  font-size: 32px; /* Mobile Font */
  line-height: 1;
  color: #E3E3E3;
  margin: 0;
  letter-spacing: -1px;
}

.et-collection-banner__text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px; /* Mobile Font */
  line-height: 1.4;
  color: rgba(227, 227, 227, 0.8);
  margin: 0;
  letter-spacing: -0.32px;
}

/* Desktop Styling */
@media screen and (min-width: 768px) {
  .et-collection-banner__top-row {
    flex-direction: row; /* Ensure horizontal on desktop */
  }

  /* Specific mobile stacking for blocks if needed, usually css grid or flex-col on mobile */
  /* But user asked for "horizontal space between" which usually implies row on desktop, 
     and "Stacked on mobile" implies col on mobile. */
}

@media screen and (max-width: 767px) {
  .et-collection-banner__top-row {
    flex-direction: column;
    align-items: stretch; /* Full width blocks */
  }
}

@media screen and (min-width: 768px) {
  .et-collection-banner__bottom-row {
    border-radius: 16px;
    padding: 48px;
    min-height: 300px; /* Taller on desktop */
  }

  .et-collection-banner__overlay {
    border-radius: 16px;
    /* Desktop Gradient */
    background: linear-gradient(90deg, #241f21 47.85%, rgba(36, 31, 33, 0) 74.8%);
  }

  .et-collection-banner__title {
    font-size: 48px;
  }

  .et-collection-banner__text {
    font-size: 18px;
    letter-spacing: -0.36px;
    max-width: 60%; /* Limit width on desktop so it doesn't span full if not needed */
  }
  
  .et-collection-banner__content {
     width: auto; /* Let it shrink to content */
  }
}
