.gl-embed-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
}

.gl-embed-content *, .gl-embed-content *::before, .gl-embed-content *::after {
    box-sizing: inherit;
}

.gl-embed-content__title {
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 17px;
    color: inherit;
}
.gl-embed-content__title a {
    text-decoration: none;
    color: inherit;
}
.gl-embed-content__title a:hover {
    text-decoration: underline;
}
.gl-embed-content .gl-widget {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gl-embed-content .gl-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .1);
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: box-shadow .15s, transform .15s;
}

.gl-embed-content .gl-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    transform: translateY(-2px);
}

.gl-embed-content .gl-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: #f0ede8;
    overflow: hidden;
}

.gl-embed-content .gl-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gl-embed-content .gl-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #b8860b;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gl-embed-content .gl-card__body {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.gl-embed-content .gl-card__title {
    font-weight: 600;
    font-size: 13px;
    color: #1a1430;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gl-embed-content .gl-card__noms {
    font-size: 11px;
    color: #b8860b;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gl-embed-content .gl-card__author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b6080;
    margin-top: auto;
}

.gl-embed-content .gl-card__ava {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.gl-embed-content .gl-widget__footer {
    grid-column: 1 / -1;
    display: block;
    text-align: right;
    font-size: 11px;
    color: #b8860b;
    text-decoration: none;
    padding-top: 4px;
    opacity: .8;
}

.gl-embed-content .gl-widget__footer:hover {
    opacity: 1;
}
