.idc-author-posts {
	order: 70;
	width: min(100% - 8rem, 1320px);
	margin: 3.8rem auto 5rem;
}

.idc-author-profile-tabs a[href="#idc-author-about"] {
	order: 10;
}

.idc-author-profile-tabs a[href="#idc-author-works"],
.idc-author-profile-tabs a[href="#idc-author-featured-work"] {
	order: 20;
}

.idc-author-profile-tabs a[href="#idc-author-posts"] {
	order: 40;
}

.idc-author-profile-tabs a[href="#idc-author-world"] {
	order: 30;
}

.idc-author-profile-tabs a[href="#idc-author-connect"] {
	order: 50;
}

.idc-author-profile-tabs .dashicons-media-document {
	background-image: var(--idc-icon-book);
}

.idc-author-posts__heading {
	display: flex;
	gap: 2rem;
	align-items: flex-end;
	justify-content: space-between;
	margin: 0 0 2.35rem;
}

.idc-author-posts__heading h2 {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin: 0;
	color: #171717;
	font-family: var(--idc-font-display);
	font-size: 4.25rem;
	font-weight: 500;
	line-height: 1;
}

.idc-author-posts__heading h2::before {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	content: "";
	background: var(--idc-icon-pen) center / contain no-repeat;
}

.idc-author-posts__heading p {
	margin: 0.8rem 0 0;
	color: var(--idc-color-primary);
	font-family: var(--idc-font-body);
	font-size: 1.18rem;
	font-weight: 400;
	line-height: 1.45;
}

.idc-author-posts__heading a {
	display: inline-flex;
	gap: 0.65rem;
	align-items: center;
	margin-bottom: 0.5rem;
	color: var(--idc-color-primary);
	font-family: var(--idc-font-body);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.idc-author-posts__heading a:hover {
	color: var(--idc-color-primary-hover);
}

.idc-author-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.6rem;
}

.idc-author-post-card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(32, 32, 32, 0.08);
	border-radius: 8px;
	box-shadow: 0 18px 46px rgba(32, 32, 32, 0.07);
}

.idc-author-post-card__media {
	position: relative;
	display: flex;
	margin: 1.2rem 1.2rem 0;
	aspect-ratio: 1.5 / 1;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: inherit;
	background: var(--idc-color-bg-paper);
	border-radius: 8px;
	text-decoration: none;
}

.idc-author-post-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.idc-author-post-card__placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	color: var(--idc-color-primary);
	font-family: var(--idc-font-display);
	font-size: 4rem;
	background:
		radial-gradient(circle at 72% 28%, rgba(122, 46, 58, 0.12), transparent 11rem),
		var(--idc-color-bg-paper);
}

.idc-author-post-card__badge {
	position: absolute;
	z-index: 2;
	left: 1rem;
	top: 1rem;
	display: inline-flex;
	gap: 0.55rem;
	align-items: center;
	max-width: calc(100% - 2rem);
	min-height: 2.75rem;
	padding: 0.65rem 0.9rem;
	color: var(--idc-color-primary);
	font-family: var(--idc-font-body);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.15;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(122, 46, 58, 0.12);
	border-radius: 8px;
	box-shadow: 0 12px 24px rgba(32, 32, 32, 0.12);
}

.idc-author-post-card__badge > span {
	width: 1.2rem;
	height: 1.2rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.idc-author-post-card__badge--excerpt > span,
.idc-author-post-card__badge--behind_the_scenes > span,
.idc-author-post-card__badge--note > span {
	background-image: var(--idc-icon-pen);
}

.idc-author-post-card__badge--journal > span {
	background-image: var(--idc-icon-book);
}

.idc-author-post-card__badge--update > span,
.idc-author-post-card__badge--announcement > span {
	background-image: var(--idc-icon-banner);
}

.idc-author-post-card__badge--question > span,
.idc-author-post-card__badge--beta_call > span {
	background-image: var(--idc-icon-avatar);
}

.idc-author-post-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 0.95rem;
	padding: 1.55rem 1.55rem 1.7rem;
}

.idc-author-post-card__body h3 {
	margin: 0;
	color: #171717;
	font-family: var(--idc-font-display);
	font-size: 2.35rem;
	font-weight: 500;
	line-height: 1.08;
}

.idc-author-post-card__body h3 a {
	color: inherit;
	text-decoration: none;
}

.idc-author-post-card__body h3 a:hover {
	color: var(--idc-color-primary);
}

.idc-author-post-card__subtitle {
	margin: -0.45rem 0 0;
	color: #7a2e3a;
	font-family: var(--idc-font-body);
	font-size: 0.98rem;
	font-weight: 750;
	line-height: 1.42;
}

.idc-author-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 0;
	color: var(--idc-color-primary);
	font-family: var(--idc-font-body);
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.35;
}

.idc-author-post-card__text {
	margin: 0;
	color: #343945;
	font-family: var(--idc-font-body);
	font-size: 1.02rem;
	font-weight: 400;
	line-height: 1.6;
}

.idc-author-post-card__link {
	display: inline-flex;
	gap: 0.55rem;
	align-items: center;
	margin-top: auto;
	color: var(--idc-color-primary);
	font-family: var(--idc-font-body);
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.idc-author-post-card__link:hover {
	color: var(--idc-color-primary-hover);
}

@media (max-width: 1100px) {
	.idc-author-posts {
		width: min(100% - 3rem, 1320px);
	}

	.idc-author-posts__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.idc-author-posts__heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 1rem;
	}

	.idc-author-posts__heading h2 {
		font-size: 3rem;
	}

	.idc-author-posts__heading a {
		margin-bottom: 0;
	}
}

@media (max-width: 620px) {
	.idc-author-posts {
		width: min(100% - 1rem, 1320px);
		margin-top: 2.6rem;
	}

	.idc-author-posts__heading h2 {
		font-size: 2.45rem;
	}

	.idc-author-posts__heading h2::before {
		width: 1.65rem;
		height: 1.65rem;
	}

	.idc-author-posts__heading p {
		font-size: 1rem;
	}

	.idc-author-posts__grid {
		grid-template-columns: 1fr;
	}

	.idc-author-post-card__media {
		margin: 1rem 1rem 0;
	}

	.idc-author-post-card__body h3 {
		font-size: 2rem;
	}
}

.idc-author-post-archive-page {
	--idc-author-post-archive-ink: #171b22;
	--idc-author-post-archive-muted: #69717d;
	--idc-author-post-archive-primary: #8a1834;
	position: relative;
	overflow: hidden;
	padding: 0 0 4rem;
	color: var(--idc-author-post-archive-ink);
	background: #fcfaf8;
}

.idc-author-post-archive-hero,
.idc-author-post-archive-filters,
.idc-author-post-archive-results,
.idc-author-post-archive-cta {
	width: min(100% - 8rem, 1320px);
	margin-inline: auto;
}

.idc-author-post-archive-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
	min-height: 34rem;
	padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
}

.idc-author-post-archive-hero__content {
	display: grid;
	gap: 1.1rem;
}

.idc-author-post-archive-hero__content > p {
	display: inline-flex;
	width: fit-content;
	margin: 0;
	padding: 0.45rem 0.75rem;
	color: var(--idc-author-post-archive-primary);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(138, 24, 52, 0.07);
	border: 1px solid rgba(138, 24, 52, 0.13);
	border-radius: 999px;
}

.idc-author-post-archive-hero h1 {
	max-width: 9em;
	margin: 0;
	color: var(--idc-author-post-archive-ink);
	font-family: var(--idc-font-display);
	font-size: clamp(4rem, 8vw, 7.8rem);
	font-weight: 500;
	line-height: 0.96;
}

.idc-author-post-archive-hero__content > span {
	display: block;
	max-width: 44rem;
	color: var(--idc-author-post-archive-primary);
	font-size: clamp(1.18rem, 2vw, 1.55rem);
	line-height: 1.45;
}

.idc-author-post-archive-search {
	position: relative;
	width: min(100%, 48rem);
	margin-top: 0.7rem;
}

.idc-author-post-archive-search .dashicons {
	position: absolute;
	left: 1rem;
	top: 50%;
	width: 1.25rem;
	height: 1.25rem;
	color: #7b838e;
	font-size: 1.25rem;
	transform: translateY(-50%);
}

.idc-author-post-archive-search input {
	width: 100%;
	min-height: 4.1rem;
	padding: 0.9rem 1rem 0.9rem 3rem;
	color: var(--idc-author-post-archive-ink);
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(32, 32, 32, 0.1);
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(32, 32, 32, 0.07);
	font: inherit;
	font-size: 1.02rem;
}

.idc-author-post-archive-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 0.35rem;
}

.idc-author-post-archive-chips a {
	display: inline-flex;
	gap: 0.45rem;
	align-items: center;
	min-height: 2.8rem;
	padding: 0.55rem 0.9rem;
	color: #303640;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(32, 32, 32, 0.1);
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(32, 32, 32, 0.04);
	font-size: 0.92rem;
	font-weight: 750;
	text-decoration: none;
}

.idc-author-post-archive-chips a:hover,
.idc-author-post-archive-chips a.is-active {
	color: var(--idc-author-post-archive-primary);
	background: rgba(138, 24, 52, 0.07);
	border-color: rgba(138, 24, 52, 0.18);
}

.idc-author-post-archive-chips .dashicons {
	width: 1rem;
	height: 1rem;
	font-size: 1rem;
}

.idc-author-post-archive-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(32, 32, 32, 0.1);
	border-radius: 8px;
	box-shadow: 0 28px 70px rgba(32, 32, 32, 0.09);
}

.idc-author-post-archive-stats div {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.2rem 1rem;
	align-items: center;
	min-height: 9.5rem;
	padding: 2rem;
	border-right: 1px solid rgba(32, 32, 32, 0.08);
	border-bottom: 1px solid rgba(32, 32, 32, 0.08);
}

.idc-author-post-archive-stats div:nth-child(2n) {
	border-right: 0;
}

.idc-author-post-archive-stats div:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.idc-author-post-archive-stats .dashicons {
	display: grid;
	grid-row: span 2;
	width: 3.25rem;
	height: 3.25rem;
	place-items: center;
	color: var(--idc-author-post-archive-primary);
	background: rgba(138, 24, 52, 0.08);
	border-radius: 50%;
	font-size: 1.65rem;
}

.idc-author-post-archive-stats strong {
	color: var(--idc-author-post-archive-primary);
	font-family: var(--idc-font-display);
	font-size: clamp(2.5rem, 4vw, 3.6rem);
	font-weight: 500;
	line-height: 0.95;
}

.idc-author-post-archive-stats p {
	margin: 0;
	color: #252b34;
	line-height: 1.25;
}

.idc-author-post-archive-filters {
	display: grid;
	grid-template-columns: minmax(220px, 1.25fr) minmax(160px, 0.8fr) minmax(160px, 0.8fr) auto;
	gap: 1rem;
	align-items: end;
	margin-top: 1rem;
	padding: 1.2rem;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(32, 32, 32, 0.09);
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(32, 32, 32, 0.06);
}

.idc-author-post-archive-filter {
	display: grid;
	gap: 0.55rem;
}

.idc-author-post-archive-filter label {
	display: inline-flex;
	gap: 0.45rem;
	align-items: center;
	color: #252b34;
	font-size: 0.9rem;
	font-weight: 820;
}

.idc-author-post-archive-filter label .dashicons {
	color: var(--idc-author-post-archive-primary);
}

.idc-author-post-archive-filter input,
.idc-author-post-archive-filter select {
	width: 100%;
	min-height: 3.35rem;
	padding: 0.76rem 0.9rem;
	color: var(--idc-author-post-archive-ink);
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(32, 32, 32, 0.12);
	border-radius: 8px;
	font: inherit;
}

.idc-author-post-archive-filter__actions,
.idc-author-post-archive-cta__actions {
	display: grid;
	gap: 0.6rem;
	min-width: min(100%, 18rem);
}

.idc-author-post-archive-filter__actions button,
.idc-author-post-archive-filter__actions a,
.idc-author-post-archive-cta__primary,
.idc-author-post-archive-cta__secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.35rem;
	padding: 0.8rem 1rem;
	border-radius: 8px;
	font: inherit;
	font-weight: 850;
	line-height: 1.1;
	text-decoration: none;
	cursor: pointer;
}

.idc-author-post-archive-filter__actions button,
.idc-author-post-archive-cta__primary {
	color: #fff;
	background: var(--idc-author-post-archive-primary);
	border: 1px solid var(--idc-author-post-archive-primary);
}

.idc-author-post-archive-filter__actions a,
.idc-author-post-archive-cta__secondary {
	color: var(--idc-author-post-archive-primary);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(138, 24, 52, 0.2);
}

.idc-author-post-archive-results {
	margin-top: 3.2rem;
}

.idc-author-post-archive-results__header {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1.2rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.idc-author-post-archive-results__header p {
	margin: 0;
	color: var(--idc-author-post-archive-muted);
	font-size: 1.05rem;
	line-height: 1.3;
}

.idc-author-post-archive-results__header strong {
	color: var(--idc-author-post-archive-primary);
}

.idc-author-post-archive-results__header span {
	color: var(--idc-author-post-archive-muted);
	font-size: 0.98rem;
}

.idc-author-post-archive-results__header > a {
	color: var(--idc-author-post-archive-primary);
	font-weight: 850;
	text-decoration: none;
}

.idc-author-post-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.6rem;
}

.idc-author-post-archive-card .idc-author-post-card__body h2 {
	margin: 0;
	color: #171717;
	font-family: var(--idc-font-display);
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 1.08;
}

.idc-author-post-archive-card .idc-author-post-card__body h2 a,
.idc-author-post-card__meta a {
	color: inherit;
	text-decoration: none;
}

.idc-author-post-archive-card .idc-author-post-card__body h2 a:hover,
.idc-author-post-card__meta a:hover {
	color: var(--idc-author-post-archive-primary);
}

.idc-author-post-archive-card .idc-author-post-card__subtitle {
	color: var(--idc-author-post-archive-primary);
	font-size: 0.95rem;
}

.idc-author-post-archive-card__work {
	width: fit-content;
	max-width: 100%;
	margin: -0.25rem 0 0;
	padding: 0.42rem 0.65rem;
	color: var(--idc-author-post-archive-primary);
	background: rgba(138, 24, 52, 0.07);
	border: 1px solid rgba(138, 24, 52, 0.12);
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 750;
	line-height: 1.25;
}

.idc-author-post-archive-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	align-items: center;
	justify-content: center;
	margin: 2.4rem 0 0;
}

.idc-author-post-archive-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.65rem;
	min-height: 2.65rem;
	padding: 0.55rem 0.8rem;
	color: #2d343d;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(32, 32, 32, 0.12);
	border-radius: 8px;
	font-weight: 800;
	text-decoration: none;
}

.idc-author-post-archive-pagination .page-numbers.current,
.idc-author-post-archive-pagination a.page-numbers:hover {
	color: #fff;
	background: var(--idc-author-post-archive-primary);
	border-color: var(--idc-author-post-archive-primary);
}

.idc-author-post-archive-empty {
	display: grid;
	justify-items: center;
	padding: clamp(3rem, 6vw, 5rem);
	text-align: center;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(32, 32, 32, 0.1);
	border-radius: 8px;
}

.idc-author-post-archive-empty h2,
.idc-author-post-archive-cta h2 {
	margin: 0;
	font-family: var(--idc-font-display);
	font-size: clamp(2.2rem, 4vw, 3.6rem);
	font-weight: 500;
	line-height: 1.05;
}

.idc-author-post-archive-empty p,
.idc-author-post-archive-cta p {
	max-width: 40rem;
	margin: 0.75rem 0 0;
	color: var(--idc-author-post-archive-muted);
	line-height: 1.6;
}

.idc-author-post-archive-empty div {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-top: 1.4rem;
}

.idc-author-post-archive-empty a {
	display: inline-flex;
	padding: 0.75rem 1rem;
	color: var(--idc-author-post-archive-primary);
	border: 1px solid rgba(138, 24, 52, 0.18);
	border-radius: 8px;
	font-weight: 850;
	text-decoration: none;
}

.idc-author-post-archive-cta {
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
	margin-top: 3.4rem;
	padding: clamp(1.5rem, 4vw, 2.6rem);
	background: rgba(138, 24, 52, 0.045);
	border: 1px solid rgba(138, 24, 52, 0.16);
	border-radius: 8px;
}

@media (max-width: 1100px) {
	.idc-author-post-archive-hero,
	.idc-author-post-archive-filters,
	.idc-author-post-archive-results,
	.idc-author-post-archive-cta {
		width: min(100% - 3rem, 1320px);
	}

	.idc-author-post-archive-hero,
	.idc-author-post-archive-filters {
		grid-template-columns: 1fr;
	}

	.idc-author-post-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.idc-author-post-archive-hero {
		min-height: 0;
		padding-top: 3rem;
	}

	.idc-author-post-archive-stats,
	.idc-author-post-archive-grid {
		grid-template-columns: 1fr;
	}

	.idc-author-post-archive-stats div,
	.idc-author-post-archive-stats div:nth-child(2n),
	.idc-author-post-archive-stats div:nth-last-child(-n + 2) {
		border-right: 0;
		border-bottom: 1px solid rgba(32, 32, 32, 0.08);
	}

	.idc-author-post-archive-stats div:last-child {
		border-bottom: 0;
	}

	.idc-author-post-archive-cta {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (max-width: 620px) {
	.idc-author-post-archive-hero,
	.idc-author-post-archive-filters,
	.idc-author-post-archive-results,
	.idc-author-post-archive-cta {
		width: min(100% - 1rem, 1320px);
	}

	.idc-author-post-archive-hero h1 {
		font-size: 3.25rem;
	}

	.idc-author-post-archive-search input {
		min-height: 3.7rem;
		font-size: 0.95rem;
	}

	.idc-author-post-archive-stats div,
	.idc-author-post-archive-filters {
		padding: 1rem;
	}

	.idc-author-post-archive-results__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.idc-author-post-archive-card .idc-author-post-card__body h2 {
		font-size: 2rem;
	}
}
/* Align the author post archive with the authors discovery page rhythm. */
.idc-author-post-archive-page {
	isolation: isolate;
	width: min(100% - 4rem, 1560px);
	margin: 0 auto 5rem;
	padding: 0;
	overflow: visible;
	background: transparent;
	font-family: var(--idc-font-body, Inter, system-ui, sans-serif);
}

.idc-author-post-archive-page::before {
	position: fixed;
	z-index: -1;
	inset: 0;
	content: "";
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0.76) 100%),
		url("/noveny-motivum.webp") top right / min(58rem, 70vw) auto no-repeat,
		#fbfaf8;
}

.idc-author-post-archive-hero,
.idc-author-post-archive-filters,
.idc-author-post-archive-results,
.idc-author-post-archive-cta {
	width: 100%;
}

.idc-author-post-archive-hero {
	grid-template-columns: minmax(0, 1fr) minmax(26rem, 40rem);
	gap: clamp(3rem, 8vw, 8rem);
	min-height: 34rem;
	padding: 5rem 0 3.4rem;
}

.idc-author-post-archive-hero h1 {
	max-width: 9em;
	font-size: clamp(4.8rem, 9vw, 8.2rem);
	line-height: 0.94;
}

.idc-author-post-archive-hero__content > span {
	max-width: 42rem;
	margin-top: 1.45rem;
	font-family: var(--idc-font-display, Georgia, serif);
	font-size: clamp(1.35rem, 2vw, 1.95rem);
	line-height: 1.25;
}

.idc-author-post-archive-search {
	width: 100%;
	max-width: 36rem;
	margin-top: 2.2rem;
}

.idc-author-post-archive-search .dashicons {
	left: 1.15rem;
	color: #8b909a;
}

.idc-author-post-archive-search input {
	min-height: 4.2rem;
	padding: 0.9rem 1rem 0.9rem 3.25rem;
	color: #303744;
	box-shadow: 0 16px 38px rgba(32, 32, 32, 0.06);
	font: 500 1.05rem/1.25 var(--idc-font-body, Inter, system-ui, sans-serif);
}

.idc-author-post-archive-search input:focus,
.idc-author-post-archive-filters input:focus,
.idc-author-post-archive-filters select:focus {
	border-color: rgba(122, 46, 58, 0.45);
	box-shadow: 0 0 0 3px rgba(122, 46, 58, 0.1);
	outline: 0;
}

.idc-author-post-archive-chips {
	gap: 0.75rem;
	margin-top: 1.6rem;
}

.idc-author-post-archive-chips a {
	min-height: 2.65rem;
	padding: 0.55rem 0.95rem;
	color: #303744;
	background: rgba(255, 255, 255, 0.84);
	box-shadow: none;
	line-height: 1;
	transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.idc-author-post-archive-chips a:hover,
.idc-author-post-archive-chips a.is-active {
	color: var(--idc-color-primary, #7a2e3a);
	background: #fff;
	border-color: rgba(122, 46, 58, 0.32);
	transform: translateY(-1px);
}

.idc-author-post-archive-chips .dashicons {
	width: 1.05rem;
	height: 1.05rem;
	color: var(--idc-color-primary, #7a2e3a);
	font-size: 1.05rem;
}

.idc-author-post-archive-stats {
	background: rgba(255, 255, 255, 0.91);
	border: 1px solid rgba(32, 32, 32, 0.09);
	border-radius: 18px;
	box-shadow: 0 28px 75px rgba(32, 32, 32, 0.11);
}

.idc-author-post-archive-stats div {
	grid-template-columns: 4.2rem minmax(0, 1fr);
	gap: 1.15rem;
	min-height: 10.4rem;
	padding: 2rem 2.2rem;
	border-top: 1px solid rgba(32, 32, 32, 0.07);
	border-right: 0;
	border-bottom: 0;
	border-left: 1px solid rgba(32, 32, 32, 0.07);
}

.idc-author-post-archive-stats div:nth-child(1),
.idc-author-post-archive-stats div:nth-child(2) {
	border-top: 0;
}

.idc-author-post-archive-stats div:nth-child(odd) {
	border-left: 0;
}

.idc-author-post-archive-stats .dashicons {
	width: 4.2rem;
	height: 4.2rem;
	font-size: 2rem;
}

.idc-author-post-archive-stats strong {
	display: block;
	font-size: 3.2rem;
}

.idc-author-post-archive-stats p {
	grid-column: 2;
	margin: 0.35rem 0 0;
	color: #303744;
	font-size: 1rem;
}

.idc-author-post-archive-filters {
	grid-template-columns: minmax(15rem, 1fr) repeat(2, minmax(12rem, 0.9fr)) auto;
	gap: 0;
	align-items: stretch;
	margin: 0 auto 2rem;
	padding: 1.45rem 1.4rem;
	border-radius: 12px;
	box-shadow: 0 18px 46px rgba(32, 32, 32, 0.08);
}

.idc-author-post-archive-filter {
	gap: 0.65rem;
	min-width: 0;
	padding: 0 1.35rem;
	border-left: 1px solid rgba(32, 32, 32, 0.08);
}

.idc-author-post-archive-filter:first-child {
	border-left: 0;
}

.idc-author-post-archive-filter label {
	gap: 0.55rem;
	color: #20242c;
	font-size: 0.95rem;
}

.idc-author-post-archive-filter label .dashicons {
	color: #20242c;
}

.idc-author-post-archive-filter input,
.idc-author-post-archive-filter select {
	min-height: 3.35rem;
	padding: 0.7rem 0.9rem;
	color: #4d535e;
	background: #fff;
	border: 1px solid rgba(32, 32, 32, 0.1);
	box-shadow: 0 10px 22px rgba(32, 32, 32, 0.04);
	font: 500 0.96rem/1.2 var(--idc-font-body, Inter, system-ui, sans-serif);
}

.idc-author-post-archive-filter__actions {
	grid-template-columns: 1fr;
	gap: 0.55rem;
	align-self: end;
	min-width: 0;
	padding-left: 1.35rem;
}

.idc-author-post-archive-filter__actions button,
.idc-author-post-archive-filter__actions a,
.idc-author-post-archive-cta__primary,
.idc-author-post-archive-cta__secondary {
	min-height: 3.1rem;
	padding: 0.75rem 1.1rem;
	font-size: 0.92rem;
	font-weight: 800;
}

.idc-author-post-archive-filter__actions button,
.idc-author-post-archive-cta__primary {
	background: var(--idc-color-primary, #7a2e3a);
	border-color: var(--idc-color-primary, #7a2e3a);
	box-shadow: 0 14px 30px rgba(122, 46, 58, 0.16);
}

.idc-author-post-archive-filter__actions button:hover,
.idc-author-post-archive-cta__primary:hover {
	color: #fff;
	background: var(--idc-color-primary-hover, #5f2330);
	border-color: var(--idc-color-primary-hover, #5f2330);
}

.idc-author-post-archive-filter__actions a,
.idc-author-post-archive-cta__secondary {
	color: #303744;
	background: #fff;
	border: 1px solid rgba(32, 32, 32, 0.1);
}

.idc-author-post-archive-filter__actions a:hover,
.idc-author-post-archive-cta__secondary:hover {
	color: var(--idc-color-primary, #7a2e3a);
	border-color: rgba(122, 46, 58, 0.28);
}

.idc-author-post-archive-results {
	margin-top: 1.4rem;
}

.idc-author-post-archive-grid {
	gap: 1.25rem;
}

.idc-author-post-archive-card {
	border-radius: 14px;
}

.idc-author-post-archive-card .idc-author-post-card__body h2 {
	font-size: clamp(1.55rem, 2vw, 2rem);
	line-height: 1.05;
}

.idc-author-post-archive-card .idc-author-post-card__body {
	gap: 0.75rem;
}

.idc-author-post-archive-card .idc-author-post-card__text {
	font-size: 0.95rem;
	line-height: 1.45;
}

.idc-author-post-archive-cta {
	display: grid;
	grid-template-columns: minmax(14rem, 0.35fr) minmax(0, 1fr) auto;
	gap: 2rem;
	margin-top: 3rem;
	padding: 1.7rem 2rem;
	background:
		linear-gradient(90deg, rgba(122, 46, 58, 0.08), rgba(255, 255, 255, 0.82)),
		#fff;
	border: 1px solid rgba(122, 46, 58, 0.14);
	border-radius: 12px;
	box-shadow: 0 18px 46px rgba(32, 32, 32, 0.06);
}

.idc-author-post-archive-cta h2 {
	font-size: clamp(2.5rem, 4.5vw, 4.2rem);
	line-height: 1;
}

.idc-author-post-archive-cta p {
	max-width: 42rem;
	color: #303744;
	font-size: 1rem;
	line-height: 1.5;
}

.idc-author-post-archive-cta__actions {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: flex-end;
	min-width: 0;
}

.idc-author-post-archive-cta__primary,
.idc-author-post-archive-cta__secondary {
	min-width: 13rem;
}

@media (max-width: 1280px) {
	.idc-author-post-archive-page {
		width: min(100% - 2rem, 1560px);
	}

	.idc-author-post-archive-hero {
		grid-template-columns: minmax(0, 1fr) minmax(22rem, 32rem);
		gap: 3rem;
	}

	.idc-author-post-archive-filters {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1rem;
	}

	.idc-author-post-archive-filter,
	.idc-author-post-archive-filter:first-child,
	.idc-author-post-archive-filter__actions {
		padding: 0;
		border-left: 0;
	}

	.idc-author-post-archive-cta {
		grid-template-columns: minmax(0, 1fr);
	}

	.idc-author-post-archive-cta__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 900px) {
	.idc-author-post-archive-hero {
		grid-template-columns: 1fr;
		min-height: 0;
		padding-top: 3rem;
	}

	.idc-author-post-archive-stats {
		max-width: 42rem;
	}

	.idc-author-post-archive-filters {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 720px) {
	.idc-author-post-archive-page {
		width: min(100% - 1rem, 1560px);
	}

	.idc-author-post-archive-page::before {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%),
			#fbfaf8;
	}

	.idc-author-post-archive-hero {
		padding-top: 2.2rem;
	}

	.idc-author-post-archive-hero h1 {
		font-size: 3.8rem;
	}

	.idc-author-post-archive-hero__content > span {
		font-size: 1.25rem;
	}

	.idc-author-post-archive-search input {
		min-height: 3.7rem;
	}

	.idc-author-post-archive-chips {
		flex-wrap: nowrap;
		margin-inline: -0.5rem;
		padding: 0 0.5rem 0.4rem;
		overflow-x: auto;
		scrollbar-width: thin;
	}

	.idc-author-post-archive-chips a {
		flex: 0 0 auto;
	}

	.idc-author-post-archive-stats {
		grid-template-columns: 1fr 1fr;
	}

	.idc-author-post-archive-stats div,
	.idc-author-post-archive-stats div:nth-child(2n),
	.idc-author-post-archive-stats div:nth-last-child(-n + 2) {
		grid-template-columns: 3rem minmax(0, 1fr);
		gap: 0.8rem;
		min-height: 7.8rem;
		padding: 1rem;
		border-right: 0;
		border-bottom: 0;
	}

	.idc-author-post-archive-stats .dashicons {
		width: 3rem;
		height: 3rem;
		font-size: 1.45rem;
	}

	.idc-author-post-archive-stats strong {
		font-size: 2.25rem;
	}

	.idc-author-post-archive-stats p {
		font-size: 0.86rem;
	}

	.idc-author-post-archive-filters {
		grid-template-columns: 1fr;
		padding: 1rem;
	}

	.idc-author-post-archive-cta {
		gap: 1.2rem;
		padding: 1.2rem;
	}

	.idc-author-post-archive-cta__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.idc-author-post-archive-cta__primary,
	.idc-author-post-archive-cta__secondary {
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 460px) {
	.idc-author-post-archive-hero h1 {
		font-size: 3.2rem;
	}

	.idc-author-post-archive-stats {
		grid-template-columns: 1fr;
	}

	.idc-author-post-archive-stats div,
	.idc-author-post-archive-stats div:nth-child(2) {
		border-top: 1px solid rgba(32, 32, 32, 0.07);
		border-left: 0;
	}

	.idc-author-post-archive-stats div:first-child {
		border-top: 0;
	}
}
