.hks-stories-block {
  font-family: inherit;
  max-width: 1200px;
  margin: 0 auto;
}

.hks-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hks-tab {
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid #e2ddd4;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: #333;
  transition: all 0.2s ease;
}

.hks-tab.active {
  background: #1c1c1c;
  color: #fff;
  border-color: #1c1c1c;
}

.hks-tab:hover:not(.active) {
  border-color: #1c1c1c;
}

.hks-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.hks-section-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: #1c1c1c;
}

.hks-dash {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #e07a3f;
  margin-right: 10px;
}

.hks-nav {
  display: flex;
  gap: 8px;
}

.hks-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e2ddd4;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.hks-nav-btn:hover {
  background: #1c1c1c;
  color: #fff;
  border-color: #1c1c1c;
}

/* Placeholder + viewport sit side by side. Placeholder never moves. */
.hks-carousel {
  display: flex;
  gap: 20px;
}

.hks-placeholder {
  flex: 0 0 260px;
  height: 220px;
  background: #e8d9c3;
  border-radius: 8px;
}

.hks-viewport {
  flex: 1;
  overflow: hidden;
}

.hks-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.hks-card {
  flex: 0 0 200px;
  border: 1px solid #ece7de;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 16px;
  box-sizing: border-box;
}

.hks-card.hks-hidden {
  display: none;
}

.hks-card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #1c1c1c;
}

.hks-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0ece5;
  padding-top: 12px;
  font-size: 12px;
  color: #888;
}

.hks-card-arrow {
  color: #1c1c1c;
  text-decoration: none;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hks-carousel { flex-direction: column; }
  .hks-placeholder { flex: 0 0 auto; width: 100%; }
}