/* Fweffv.com Channel Page Styles - Visual Refresh v2 */
.fvx-channel-page {
  padding: 0 0 16px;
}
.fvx-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 14px;
}
.fvx-channel-grid .fvx-tile {
  border-radius: var(--fvx-r);
  border: 1px solid var(--fvx-line-soft);
  box-shadow: var(--fvx-shadow-xs);
}
.fvx-channel-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--fvx-r) var(--fvx-r) 0 0;
}
.fvx-channel-extra {
  margin: 20px 12px 0;
}
.fvx-channel-extra-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.fvx-channel-extra-head .bar {
  width: 4px;
  height: 20px;
  background: var(--fvx-grad-warm);
  border-radius: 4px;
}
.fvx-channel-extra-head h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--fvx-ink);
}

/* Channel article content - enhanced styling */
.fvx-channel-article {
  background: var(--fvx-surface);
  border-radius: var(--fvx-r-lg);
  padding: 20px;
  margin-bottom: 18px;
  border: 1px solid var(--fvx-line-soft);
  box-shadow: var(--fvx-shadow-xs);
}
.fvx-channel-article h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--fvx-ink);
  margin: 18px 0 8px;
  padding-left: 12px;
  border-left: 3px solid var(--fvx-brand);
}
.fvx-channel-article h3:first-child {
  margin-top: 0;
}
.fvx-channel-article p {
  font-size: .84rem;
  color: var(--fvx-ink-soft);
  line-height: 1.7;
  margin-bottom: 10px;
}
.fvx-channel-article ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.fvx-channel-article li {
  list-style: disc;
  font-size: .84rem;
  color: var(--fvx-ink-soft);
  margin-bottom: 6px;
  line-height: 1.55;
}
.fvx-channel-article a {
  color: var(--fvx-brand);
  font-weight: 500;
}
.fvx-channel-article a:hover {
  text-decoration: underline;
}

@media (max-width: 420px) {
  .fvx-channel-grid { grid-template-columns: repeat(2, 1fr); }
}
