.seurick-all-collections {
  background: #ffffff;
  color: #172033;
  padding: 48px 0 72px;
  overflow-x: clip;
}

.seurick-all-collections__header {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.seurick-all-collections__header p {
  margin: 0 0 10px;
  color: #1d3e92;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.seurick-all-collections__header h1 {
  margin: 0;
  color: #172033;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.seurick-all-collections__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.seurick-all-collections__card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #eef2f7;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(23, 32, 51, .12);
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.seurick-all-collections__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 15, 28, 0) 34%, rgba(8, 15, 28, .55) 100%),
    linear-gradient(135deg, rgba(29, 62, 146, .22), rgba(255, 255, 255, 0) 46%);
  pointer-events: none;
}

.seurick-all-collections__card--accent::after {
  background:
    linear-gradient(180deg, rgba(8, 15, 28, 0) 30%, rgba(8, 15, 28, .58) 100%),
    linear-gradient(135deg, rgba(221, 91, 48, .24), rgba(255, 255, 255, 0) 48%);
}

.seurick-all-collections__card picture,
.seurick-all-collections__card img {
  display: block;
  width: 100%;
  height: 100%;
}

.seurick-all-collections__card img {
  object-fit: cover;
  object-position: center;
  transition: transform 240ms ease;
}

.seurick-all-collections__label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: block;
  padding-right: 48px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .36);
}

.seurick-all-collections__label strong,
.seurick-all-collections__label small {
  display: block;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.seurick-all-collections__label small {
  margin-top: 5px;
  max-width: 100%;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
  color: rgba(255, 255, 255, .88);
}

.seurick-all-collections__label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
  transform: translateY(-50%);
}

.seurick-all-collections__label::before {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #1d3e92;
  border-right: 2px solid #1d3e92;
  transform: translateY(-50%) rotate(45deg);
}

.seurick-all-collections__card:hover,
.seurick-all-collections__card:focus-visible {
  box-shadow: 0 18px 42px rgba(23, 32, 51, .18);
  transform: translateY(-2px);
}

.seurick-all-collections__card:hover img,
.seurick-all-collections__card:focus-visible img {
  transform: scale(1.035);
}

@media (max-width: 1199px) {
  .seurick-all-collections__card {
    min-height: 0;
  }
}

@media (max-width: 1023px) {
  .seurick-all-collections {
    padding: 42px 0 58px;
  }

  .seurick-all-collections__header h1 {
    font-size: 44px;
  }

  .seurick-all-collections__grid {
    gap: 14px;
  }

  .seurick-all-collections__card {
    min-height: 0;
  }

  .seurick-all-collections__label {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .seurick-all-collections {
    padding: 32px 0 44px;
  }

  .seurick-all-collections__header {
    margin-bottom: 18px;
    text-align: left;
  }

  .seurick-all-collections__header p {
    font-size: 11px;
  }

  .seurick-all-collections__header h1 {
    font-size: 34px;
  }

  .seurick-all-collections__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .seurick-all-collections__card {
    aspect-ratio: 4 / 5;
    min-height: 0;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .11);
  }

  .seurick-all-collections__label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding-right: 36px;
    font-size: 18px;
    line-height: 1.05;
  }

  .seurick-all-collections__label strong {
    max-width: calc(100% - 4px);
    font-size: 18px;
    line-height: 1.05;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .seurick-all-collections__label small {
    display: none;
  }

  .seurick-all-collections__label::after {
    width: 28px;
    height: 28px;
  }

  .seurick-all-collections__label::before {
    right: 10px;
    width: 8px;
    height: 8px;
  }
}
