 
.ghl-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

.ghl-filter {
    padding: 7px 12px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    background: #fff;
    color: #24292f;
    cursor: pointer;
    font: inherit;
}

.ghl-filter.is-active {
    border-color: #111827;
    background: #111827;
    color: #fff;
}

.ghl-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ghl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.ghl-post {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    content-visibility: auto;
    contain-intrinsic-size: 340px;
}

.ghl-post[hidden] {
    display: none;
}

.ghl-media {
    position: relative;
    display: block;
    width: 100%;
    height: 220px;
    background: #f1f3f5;
    color: #333;
    text-decoration: none;
}

.ghl-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.lazy-video {
    aspect-ratio: 16 / 9;
    height: auto;
    background: #111;
    cursor: pointer;
    overflow: hidden;
}

.lazy-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.lazy-video::after {
    content: "▶";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 40px;
    color: rgba(255,255,255,0.8);
}

.lazy-video.is-loaded {
    aspect-ratio: auto;
    cursor: default;
}

.lazy-video.is-loaded::before,
.lazy-video.is-loaded::after {
    display: none;
}

.lazy-video video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.ghl-content {
    padding: 12px;
}

.ghl-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.7;
}

.ghl-post-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
}
