.fkew-section,
.fkew-section * {
  box-sizing: border-box;
}

.fkew-section {
  width: 100%;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
}

.fkew-section a {
  text-decoration: none;
  color: inherit;
}

.fkew-section img {
  display: block;
  max-width: 100%;
  height: auto;
}

.fkew-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.fkew-section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 400;
  color: #1a1a1a;
}

.fkew-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  font-weight: 700;
}

.fkew-view-all svg {
  width: 14px;
  height: 14px;
}

.fkew-view-all svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.fkew-empty {
  margin: 0;
  color: #777;
  font-size: 14px;
}

/* Top Brands */
.fkew-top-brands {
  padding: 18px 0 8px;
}

.fkew-top-brands .fkew-brands-groups {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fkew-top-brands .fkew-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: transparent;
}

.fkew-top-brands .fkew-brand-cell {
  min-height: 115px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  transition: background 0.2s ease;
}

.fkew-top-brands .fkew-brand-cell:hover {
  background: rgba(0, 0, 0, 0.02);
}

.fkew-top-brands .fkew-brand-cell:nth-child(4n) {
  border-right: none;
}

.fkew-top-brands .fkew-brand-cell:nth-child(n + 5) {
  border-bottom: none;
}

.fkew-top-brands .fkew-brand-cell img {
  max-width: 150px;
  max-height: 45px;
  object-fit: contain;
  margin: 0 auto;
}

.fkew-brand-logo-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.25;
  color: #444;
}

/* Top Artists */
.fkew-top-artists {
  padding: 16px 0 4px;
}

.fkew-top-artists .fkew-artist-carousel {
  width: 100%;
  padding-bottom: 16px;
}

.fkew-top-artists .fkew-artist-stage {
  position: relative;
  width: 100%;
  height: 470px;
}

.fkew-top-artists .fkew-artist-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition:
    left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
  will-change: left, top, width, height, opacity, filter;
}

.fkew-top-artists .fkew-artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fkew-top-artists .fkew-artist-card.is-active {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.fkew-top-artists .fkew-artist-label {
  min-height: 34px;
  margin-top: 18px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.2;
  color: #1a1a1a;
}

.fkew-top-artists .fkew-artist-dots {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.fkew-top-artists .fkew-artist-dot {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
  min-height: 0;
  line-height: 0;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4c4c4;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.fkew-top-artists .fkew-artist-dot.is-active {
  background: #1a1a1a;
  transform: scale(1.2);
}

.fkew-top-artists .fkew-artist-dot:focus,
.fkew-top-artists .fkew-artist-dot:focus-visible,
.fkew-top-artists .fkew-artist-dot:hover,
.fkew-top-artists .fkew-artist-dot:active {
  border: 0;
  outline: none;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .fkew-section-title {
    font-size: 42px;
  }

  .fkew-top-artists .fkew-artist-stage {
    height: 410px;
  }

  .fkew-top-artists .fkew-artist-label {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .fkew-section-header {
    margin-bottom: 24px;
  }

  .fkew-section-title {
    font-size: 30px;
  }

  .fkew-top-brands .fkew-brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fkew-top-brands .fkew-brand-cell {
    min-height: 96px;
    padding: 20px 12px;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
  }

  .fkew-top-brands .fkew-brand-cell:nth-child(2n) {
    border-right: none;
  }

  .fkew-top-brands .fkew-brand-cell:nth-child(n + 5) {
    border-bottom: 1px solid #d8d8d8;
  }

  .fkew-top-brands .fkew-brand-cell:nth-child(n + 7) {
    border-bottom: none;
  }

  .fkew-top-artists .fkew-artist-stage {
    height: 320px;
  }

  .fkew-top-artists .fkew-artist-label {
    font-size: 24px;
    margin-top: 14px;
  }
}
