.block-reader-favorites {
}

.block-reader-favorites .block-reader-favorites__inner {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
}

/* Featured */
.editor-styles-wrapper .block-reader-favorites .block-reader-favorites__featured {
	pointer-events: none;
}

.block-reader-favorites .block-reader-favorites__featured {
	background: var(--wp--preset--color--background);
	box-shadow: var(--wp--custom--box-shadow--1);
	/* overflow: hidden; */
	text-align: center;
	position: relative;
}

.block-reader-favorites .block-reader-favorites__featured::before {
	content: '';
	display: block;
	width: 120px;
	height: 120px;
	background: url(../../assets/icons/badge/olivias-pick.svg) no-repeat center;
	background-size: contain;
	position: absolute;
}

.block-reader-favorites .block-reader-favorites__featured img {
	object-fit: cover;
	width: 100%;
}

.block-reader-favorites .block-reader-favorites__featured-content {
	padding: 12px 12px 16px;
}

.block-reader-favorites .block-reader-favorites__featured-content  > * {
	margin: 0;
}

.block-reader-favorites .block-reader-favorites__featured-content  > * + * {
	margin-top: 10px;
}

.block-reader-favorites .block-reader-favorites__featured-content a {
	display: block;
	font-family: var(--wp--custom--typography--heading--font-family);
	font-weight: var(--wp--custom--typography--heading--font-weight);
	letter-spacing: var(--wp--custom--typography--heading--letter-spacing);
	line-height: var(--wp--custom--typography--heading--line-height);
	text-transform: var(--wp--custom--typography--heading--text-transform);
	font-size: var(--wp--preset--font-size--large);
	color: var(--wp--preset--color--foreground);
	text-decoration: none;
}

.block-reader-favorites .block-reader-favorites__featured-content a:hover {
	/* color: var(--wp--preset--color--primary); */
}

.block-reader-favorites .block-reader-favorites__featured-content .entry-total-time {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	color: var(--wp--custom--color--neutral-700);
	font-weight: 300;
	font-size: var(--wp--preset--font-size--min);
}

/* Others */
.editor-styles-wrapper .block-reader-favorites .block-reader-favorites__others--items {
	pointer-events: none;
}
.block-reader-favorites .block-reader-favorites__others--items {
	counter-reset: reader-favorites-counter;
}

.block-reader-favorites .block-reader-favorites__others--item {
	padding: 16px 0;
	display: flex;
	gap: 24px;
	align-items: center;
}
.block-reader-favorites .block-reader-favorites__others--item:not(:last-child) {
	border-bottom: 1px solid var(--wp--custom--color--neutral-300);
}

.block-reader-favorites .block-reader-favorites__others--item::before {
	display: block;
	content: counter(reader-favorites-counter);
    counter-increment: reader-favorites-counter;
	/* font-family: var(--wp--custom--typography--heading--font-family); */
	font-family: -apple-system-ui-serif, ui-serif, Noto Serif, Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	letter-spacing: var(--wp--custom--typography--heading--letter-spacing);
	line-height: var(--wp--custom--typography--heading--line-height);
	text-transform: var(--wp--custom--typography--heading--text-transform);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--gargantuan);
	color: var(--wp--preset--color--secondary);
}

.block-reader-favorites .block-reader-favorites__others--item a {
	display: block;
	text-decoration: none;
	font-family: var(--wp--custom--typography--heading--font-family);
	font-weight: var(--wp--custom--typography--heading--font-weight);
	letter-spacing: var(--wp--custom--typography--heading--letter-spacing);
	line-height: var(--wp--custom--typography--heading--line-height);
	text-transform: var(--wp--custom--typography--heading--text-transform);
	font-size: var(--wp--preset--font-size--large);
}

.block-reader-favorites .block-reader-favorites__others--item .entry-total-time {
	margin: 2px 0 0;
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--wp--custom--color--neutral-700);
	font-weight: 300;
	font-size: var(--wp--preset--font-size--min);
}

/* Footer */
.editor-styles-wrapper .block-reader-favorites footer {
	pointer-events: none;
}

.block-reader-favorites footer {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 32px;
}

.block-reader-favorites footer::before,
.block-reader-favorites footer::after {
    background: var(--wp--custom--color--neutral-300);
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    flex-basis: 0%;
    flex-grow: 1;
}

.block-reader-favorites footer .block-reader-favorites__more.wp-block-button__link {
	width: auto;
}

@media only screen and (max-width: 767px) {

	/* Featured */
	.block-reader-favorites .block-reader-favorites__featured::before {
		top: -27px;
		left: 50%;
		transform: translateX(-50%);
	}

	.block-reader-favorites .block-reader-favorites__featured img {
		aspect-ratio: 1;
	}

	/* Others */
	.block-reader-favorites .block-reader-favorites__others {
		margin-top: 24px;
	}

	.block-reader-favorites .block-reader-favorites__others--items {
		margin-top: 16px;
	}
}

@media only screen and (min-width: 768px) {
	.block-reader-favorites .block-reader-favorites__inner {
		grid-template-columns: minmax(0, 356px) 1fr;
		column-gap: 24px;
	}

	/* body.full-width-content .block-reader-favorites__inner {
		grid-template-columns: minmax(0, 572px) 1fr;
		column-gap: 56px;
	} */

	/* Featured */
	.block-reader-favorites .block-reader-favorites__featured::before {
		top: -19px;
		left: -30px;
	}

	.block-reader-favorites .block-reader-favorites__featured img {
		aspect-ratio: .65;
	}

	/* Others */
	.block-reader-favorites .block-reader-favorites__others--items {
		margin-top: 24px;
	}
}


@media only screen and (min-width: 992px) {
	body.full-width-content .block-reader-favorites .block-reader-favorites__inner {
		grid-template-columns: minmax(0, 572px) 1fr;
		column-gap: 56px;
	}

	/* Featured */
	body.full-width-content .block-reader-favorites .block-reader-favorites__featured::before {
		top: -10px;
		left: -38px;
	}
	body.full-width-content .block-reader-favorites .block-reader-favorites__featured img {
		aspect-ratio: 1;
	}

	/* Others */
}
