.other-cs-switch {
  width: min(1320px, calc(100% - 6px));
  margin: 12px auto 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.other-cs-switch__item {
  appearance: none;
  border: 1px solid var(--site-border, rgba(24,32,42,0.14));
  border-radius: 999px;
  padding: 0.36rem 0.76rem;
  background: #fff;
  color: var(--site-text, #18202a);
  font: 700 0.76rem/1.2 "Manrope", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.other-cs-switch__item:hover {
  border-color: rgba(156, 90, 46, 0.35);
  color: var(--site-accent, #9c5a2e);
}

.other-cs-switch__item.is-active {
  background: var(--site-accent-soft, rgba(156,90,46,0.12));
  border-color: rgba(156, 90, 46, 0.4);
  color: var(--site-accent-deep, #7a3f16);
}

.other-cs-cards {
  margin-top: 8px;
}

.other-cs-cards .cards-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.other-cs-card {
  border-radius: 14px;
  border: 1px solid var(--site-border);
  box-shadow: none;
}

.other-cs-card:hover {
  box-shadow: 0 8px 20px rgba(15,23,42,0.08);
}

.other-cs-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  background: none;
}

.other-cs-card__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  display: block;
}

.other-cs-card .content-card__body {
  gap: 4px;
  padding: 12px 14px 14px;
}

.other-cs-card .content-card__title {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.25;
}

.other-cs-card .content-card__meta {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--site-muted);
}

@media (max-width: 680px) {
  .other-cs-switch {
    margin-top: 10px;
    gap: 5px;
  }

  .other-cs-switch__item {
    font-size: 0.72rem;
    padding: 0.32rem 0.64rem;
  }

  .other-cs-cards .cards-grid {
    grid-template-columns: 1fr;
  }
}
