/* Shared component layer for Chubo-kun pages. */

.ck-story-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.ck-story-link-grid a {
  display: block;
  min-height: 144px;
  padding: 28px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: var(--ck-radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
  transition: transform .18s ease, border-color .18s ease;
}

.ck-story-link-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 24, 39, .18);
}

.ck-story-link-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #b6922c;
  font-size: 13px;
  font-weight: 900;
}

.ck-story-link-grid strong {
  display: block;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .ck-story-link-grid {
    grid-template-columns: 1fr;
  }
}
