/*
Theme Name: Llight Child
Template: llight
Author: dimontrail
Version: 1.0
Description: Child theme for llight.
Text Domain: llight-child
*/

    .category-menu {
        margin: 1rem 0 2rem;
    }
.category-menu span {
	cursor: pointer;
	color: #0077cc;
	text-decoration: dotted;
	margin-right: 1rem;
}

.category-menu span.active {
	font-weight: bold;
	text-decoration: none;
	color: black;
	cursor: default;
}

    .channel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
    .channel-card { background: white; padding: 1rem; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); display: flex; gap: 1rem; align-items: flex-start; }
    .channel-card img { width: 64px; height: 64px; border-radius: 6px; object-fit: cover; }
    .channel-info h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
    .channel-info p { margin: 0 0 0.5rem; font-size: 0.9rem; color: #333; }
    .channel-info a { font-size: 0.9rem; color: #0077cc; text-decoration: none; }
    .hidden { display: none; }

.latest-news {
    padding: 1rem 1.5rem;
    background: #f7f9fc;
    border-radius: 8px;
    border: 1px solid #e0e6ef;
}

.latest-news h2 {
    font-size: 1.4rem !important;
    margin: 0 !important;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.news-list li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.news-list a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.news-list a:hover {
    text-decoration: underline;
}

.news-date {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.more-news-link {
    display: inline-block;
    font-size: 0.9rem;
    color: #0073aa;
    text-decoration: none;
}

.more-news-link:hover {
    text-decoration: underline;
}


.related-channels {
    margin-top: 40px;
}

.related-channels h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #333;
}

.related-channels .channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

