:root{
    --ngr-accent-text-color: #808080;
    --ngr-avatar-size: 36px;
    --ngr-content-font-size: 13px;
}
.ngr-list {
	display: grid;
	gap: 16px;
}

.ngr-item {
	/* border: 1px solid rgba(0, 0, 0, 0.08); */
	border-radius: 10px;
	padding: 16px;
	background: #fff;
}

.ngr-header {
	display: grid;
	grid-template-columns: var(--ngr-avatar-size) 1fr;
	gap: 0 12px;
	align-items: center;
	margin-bottom: 4px !important;
}

/* for center aligned */
.ngr-align-center .ngr-header{
    grid-template-columns: 1fr;
    text-align: center;
}
.ngr-align-center .ngr-avatar{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
}
.ngr-align-center .ngr-item *{
    text-align: center;
    align-items: center;
    justify-content: center;
}
/* for center aligned */

.ngr-avatar {
	width: var(--ngr-avatar-size);
	height: var(--ngr-avatar-size);
    grid-row: span 2;
	border-radius: 999px;
	object-fit: cover;
}

.ngr-author {
    font-size: 14px;
    line-height: 1em;
}

.ngr-author a {
	text-decoration: none;
}

.ngr-details{
    display: flex;
    gap: 6px;
}
.ngr-rating{
    font-size: 12px;
    color: var(--ngr-accent-text-color);
    font-weight: bold;
}

.ngr-rating-number-separator:before{
    content: '/';
}

.ngr-time{
	font-size: 12px;
    color: var(--ngr-accent-text-color);
}

.ngr-content{
    font-size: var(--ngr-content-font-size);
    line-height: 1.5em;
}

.ngr-content p:last-child {
	margin-bottom: 0;
}

.ngr-content a{
    display: block;
    margin-top: 2px;
}

.ngr-rating-stars {
	display: flex;
	gap: 6px !important;
}

.ngr-rating-stars .star-filled,
.ngr-rating-stars .star-empty {
	width: 16px;
	height: 16px;
}
/* Create a star shape using CSS for use in .star-filled and .star-empty elements */
.ngr-rating-stars .star-filled::before,
.ngr-rating-stars .star-empty::before
{
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: transparent;
	clip-path: polygon(
		50% 0%,
		61% 35%,
		98% 35%,
		68% 57%,
		79% 91%,
		50% 70%,
		21% 91%,
		32% 57%,
		2% 35%,
		39% 35%
	);
}

.ngr-rating-stars .star-filled::before {
	background: #ffd700;
}

.ngr-rating-stars .star-empty::before {
	background: #e0e0e0;
}

.ngr-rating-stars .star-filled {
	color: #ffd700;
	font-size: 16px;
}

.ngr-rating-stars .star-empty {
	color: var(--ngr-accent-text-color);
}

.ngr-rating-number-label {
	font-size: 12px;
	color: var(--ngr-accent-text-color);
}

.ngr-rating-number-value {
	font-size: 12px;
	color: var(--ngr-accent-text-color);
}

.ngr-swiper-button-prev,
.ngr-swiper-button-next 
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px !important;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.ngr-swiper-button-prev {left: 0;}
.ngr-swiper-button-next {right: 0;}