/* Channel: a compact creator profile and widescreen discovery grid. */
.theme-channel {
    --accent: #c9312a;
    --accent-soft: #fff0ee;
    --ink: #202021;
    --muted: #666668;
    --line: #dedee0;
    --canvas: #fff;
    --shell: 1480px;
}
.theme-channel .main-shell {
    padding-top: 24px;
}
.channel-masthead {
    margin-bottom: 36px;
}
.channel-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 152px;
    padding: 32px 40px;
    background: #f2f2f2;
    color: #303034;
    border: 1px solid var(--line);
}
.channel-banner > span {
    max-width: 680px;
    font-size: clamp(24px, 3.4vw, 42px);
    line-height: 1.2;
    letter-spacing: -0.04em;
}
.channel-banner svg {
    color: var(--accent);
    flex-shrink: 0;
}
.channel-profile {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px 0 8px;
}
.channel-avatar {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: white;
    font-size: 38px;
    font-weight: 700;
    border-radius: 4px;
}
.channel-profile h1 {
    font-size: 32px;
    margin: 4px 0 10px;
}
.channel-profile p:last-child {
    max-width: 680px;
    color: var(--muted);
}
.theme-channel .section-heading {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
    margin-bottom: 24px;
}
.theme-channel .section-heading h2 {
    font-size: 23px;
}
.theme-channel .section-heading .eyebrow {
    display: none;
}
.theme-channel .catalog-layout {
    grid-template-columns: 176px minmax(0, 1fr);
    gap: 28px;
}
.theme-channel .catalog-sidebar {
    display: block;
}
.theme-channel .catalog-sidebar h3 {
    font-size: 14px;
    padding: 14px 10px;
}
.theme-channel .catalog-sidebar a {
    display: block;
    padding: 11px 12px;
    border-radius: 4px;
    font-size: 14px;
}
.theme-channel .catalog-sidebar a:hover,
.theme-channel .catalog-sidebar a.active {
    background: #f1f1f2;
    text-decoration: none;
}
.theme-channel .catalog-filters {
    grid-template-columns: minmax(120px, 1fr) minmax(145px, 180px) auto;
    gap: 12px;
    margin-bottom: 24px;
}
.theme-channel .catalog-filters > label:nth-of-type(2) {
    display: none;
}
.theme-channel .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 20px;
}
.theme-channel .product-image {
    aspect-ratio: 16/9;
    margin-bottom: 0;
}
.theme-channel .product-card h3 {
    font-size: 18px;
    line-height: 1.4;
}
.theme-channel .product-meta {
    font-size: 12px;
    margin-top: 12px;
}
.theme-channel .product-summary {
    font-size: 14px;
}
.theme-channel .product-bottom {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 14px;
}
.theme-channel .product-action {
    font-size: 14px;
}
.theme-channel .site-footer {
    background: #f7f7f7;
}
@media (min-width: 1600px) {
    .theme-channel .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 1100px) {
    .theme-channel .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .theme-channel .catalog-layout {
        grid-template-columns: 150px minmax(0, 1fr);
    }
}
@media (max-width: 760px) {
    .channel-banner {
        padding: 24px;
        min-height: 120px;
    }
    .channel-banner svg {
        width: 56px;
    }
    .channel-profile {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 16px;
    }
    .channel-avatar {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    .channel-profile > .button {
        grid-column: 2;
        justify-self: start;
    }
    .theme-channel .catalog-layout {
        grid-template-columns: 1fr;
    }
    .theme-channel .catalog-sidebar {
        display: none;
    }
    .theme-channel .catalog-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .theme-channel .catalog-filters > label:nth-of-type(2) {
        display: flex;
    }
    .theme-channel .catalog-filters .search-field,
    .theme-channel .catalog-filters > .button {
        grid-column: 1/-1;
    }
}
@media (max-width: 500px) {
    .theme-channel .product-grid {
        grid-template-columns: 1fr;
    }
    .channel-profile h1 {
        font-size: 28px;
    }
    .channel-banner > span {
        font-size: 25px;
    }
}
