
.bento-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
}

.bento-head-text {
  max-width: 620px;
}

.bento-subline {
  margin: var(--space-3) 0 0;
  color: var(--ink-secondary);
}

.bento-pager {
  display: none;
  flex: none;
  gap: var(--space-2);
}

.bento-pager-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  background: var(--surface-page);
  color: var(--ink-primary);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color var(--ds-duration-fast) var(--ds-ease);
}

.bento-pager-btn:active {
  background: var(--ds-gray-100);
}

@media (hover: hover) {
  .bento-pager-btn:hover {
    background: var(--ds-gray-100);
  }
}

@media (min-width: 768px) {
  .bento-pager {
    display: inline-flex;
  }
}

.bento-track {
  display: flex;
  gap: var(--space-4);
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0 0 var(--space-2);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.bento-card {
  flex: 0 0 min(74%, 400px);
  scroll-snap-align: start;
}

.bento-card-media {
  border-radius: var(--ds-radius-12);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--surface-panel);
  aspect-ratio: 1 / 1;
}

.bento-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-card-title {
  margin: var(--space-3) 0 0;
  color: var(--ink-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.bento-card-line {
  margin: var(--space-1) 0 0;
  color: var(--ink-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: pretty;
}

.bento-actions {
  margin-top: var(--space-6);
}

.bento-subline-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--ds-gray-500);
}

@media (hover: hover) {
  .bento-subline-link:hover {
    text-decoration-color: var(--ink-brand);
  }
}
