/* Site Footer Showcase - minimal, accessible styling
   Color system (max 5 colors):
   --sfs-bg: beige; --sfs-text: near-black; --sfs-muted: gray; --sfs-card: white; --sfs-accent: teal
*/
:root {
  --sfs-bg: #f3e7d6;
  --sfs-text: #222222;
  --sfs-muted: #6b7280;
  --sfs-card: #ffffff;
  --sfs-accent: #0f766e;
  --sfs-radius: 10px;
}

.sfs-wrap {
  background: var(--sfs-bg);
  color: var(--sfs-text);
  padding: 48px 16px 24px;
  font-family: ui-sans-serif, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
}

.sfs-container {
  display: flex;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sfs-col {
  flex: 1 1 300px;
  min-width: 280px;
}

.sfs-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
}

.sfs-about .sfs-logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 8px 0 12px;
}

.sfs-text {
  color: var(--sfs-text);
}

.sfs-channels .sfs-channel-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.sfs-channels .sfs-channel-list img {
  width: 200px;
  height: auto;
  border-radius: var(--sfs-radius);
  display: block;
  background: var(--sfs-card);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.sfs-placeholder {
  display: block;
  width: 200px;
  height: 120px;
  border-radius: var(--sfs-radius);
  background: var(--sfs-card);
  border: 1px dashed rgba(0, 0, 0, 0.15);
}

@media (min-width: 640px) {
  .sfs-channels .sfs-channel-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.sfs-links {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.sfs-btn {
  display: block;
  text-align: center;
  padding: 14px 18px;
  border-radius: var(--sfs-radius);
  background: var(--sfs-card);
  color: var(--sfs-text);
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: background .2s, color .2s, border-color .2s, transform .06s ease-in-out;
}
.sfs-btn:hover,
.sfs-btn:focus {
  background: var(--sfs-accent);
  color: #ffffff;
  border-color: var(--sfs-accent);
}

.sfs-meta {
  max-width: 1200px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--sfs-muted);
  font-size: 14px;
}
