/**
 * Author Post — lista con avatar del autor + título.
 */

.author-post {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	box-sizing: border-box;
	background: #f2f2f2;
	border-top: 3px solid #fd780f;
	color: #000;
}

.author-post__inner {
	padding: 20px 24px;
}

.author-post__heading {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 1rem;
	color: #000;
}

.author-post__list {
	margin: 0;
	padding: 0;
}

.author-post__item {
	padding: 0.875rem 0;
	border-bottom: 1px dashed #ccc;
}

.author-post__item:first-child {
	padding-top: 0;
}

.author-post__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.author-post__media-col {
	flex: 0 0 auto;
	padding-right: 14px;
}

.author-post__avatar-link {
	display: block;
	text-decoration: none;
	line-height: 0;
}

.author-post__avatar {
	display: block;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.author-post__avatar--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #fd780f 0%, #dd670d 100%);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
}

.author-post__avatar-initials {
	line-height: 1;
}

.author-post__title {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
}

.author-post__title a {
	color: inherit;
	text-decoration: none;
}

.author-post__title a:hover,
.author-post__title a:focus-visible {
	text-decoration: underline;
	opacity: 0.85;
}

.author-post__empty {
	margin: 0;
	font-size: 0.9rem;
	color: #333;
}

@media (max-width: 575.98px) {
	.author-post__inner {
		padding: 16px;
	}

	.author-post__avatar {
		width: 56px;
		height: 56px;
	}

	.author-post__avatar--placeholder {
		width: 56px;
		height: 56px;
		font-size: 1rem;
	}
}
