.image-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 305px;
  min-height: 375px;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 8px;
}
.image-card__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (width > 768px) {
  .image-card {
    max-width: 384px;
    min-height: 454px;
  }
}

.browse-category-carousel:has(.image-card) {
  padding-bottom: 64px;
}

.brw-fullscreen-text-link {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-image: var(--mobile-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .brw-fullscreen-text-link {
    background-image: var(--desktop-bg);
  }
}
.brw-fullscreen-text-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.brw-fullscreen-text-link__media {
  width: 100%;
}
.brw-fullscreen-text-link__sizer {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.brw-fullscreen-text-link__content-wrapper {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
