/*
 * أنطولوجي Block Theme — تنسيقات الأقسام والعناصر المخصصة
 */

/* ─── الأساسيات ───────────────────────────────────────── */
html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--wp--preset--color--bg-primary);
	direction: rtl;
}

/* ─── هيرو — القسم الرئيسي ──────────────────────────── */
.antolgy-hero-section {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #1d1e24;
	overflow: hidden;
}

.antolgy-hero-section .wp-block-cover__background {
	opacity: 1;
	background-color: #1d1e24 !important;
}

.antolgy-hero-section h1,
.antolgy-hero-section h2 {
	color: #f2f0eb !important;
	text-shadow: none;
}

.antolgy-hero-manifesto {
	max-width: 38rem;
	margin: 0.9rem auto 0 !important;
	color: rgba(242, 240, 235, 0.76);
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	font-weight: 300;
	line-height: 1.75;
}

.antolgy-hero-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0.75rem 0 0;
	padding: 0;
}

.antolgy-hero-links a {
	padding: 0.2rem 0.9rem;
	border-inline-start: 1px solid rgba(245, 243, 239, 0.26);
	color: rgba(242, 240, 235, 0.72);
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 1.5;
	text-decoration: none;
	transition: color 160ms ease;
}

.antolgy-hero-links a:first-child {
	border-inline-start: 0;
}

.antolgy-hero-links a:hover,
.antolgy-hero-links a:focus-visible {
	color: #fff;
}

/* ─── أقسام الصفحة الرئيسية ────────────────────────── */
.section-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.section-header .section-title {
	font-family: var(--wp--preset--font-family--beiruti);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--large);
	margin: 0;
	white-space: nowrap;
}

.section-header .section-title a {
	color: inherit;
	text-decoration: none;
}

.section-header .section-title a:hover,
.section-header .section-title a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.section-header .section-line {
	flex: 1;
	height: 1px;
	background: currentColor;
	opacity: 0.2;
}

.section-header .section-tag {
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: var(--wp--preset--font-size--small);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	color: #f5f3ef;
	white-space: nowrap;
}

/* كل قسم — خلفية مميزة (مفصلة في أسفل الملف) */

/* ─── بطاقات المحتوى ──────────────────────────────────── */
.antolgy-card {
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 12px;
	border-top: 3px solid var(--antolgy-card-accent, #65706c);
	background: var(--antolgy-card-wash, #f5f5f1);
	box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.antolgy-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.antolgy-card .wp-block-post-featured-image {
	margin: 0 !important;
	overflow: hidden;
}

.antolgy-card .wp-block-post-featured-image img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.antolgy-card:hover .wp-block-post-featured-image img {
	transform: scale(1.05);
}

.antolgy-card .card-body {
	padding: 1.25rem;
	background: var(--antolgy-card-wash, #f5f5f1);
}

.antolgy-card .card-category {
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-bottom: 0.5rem;
	display: inline-block;
}

.antolgy-card .card-category a,
.antolgy-archive-header .wp-block-post-terms a,
.antolgy-single-header .card-category a {
	text-decoration: none;
}

.antolgy-card .card-category a:hover,
.antolgy-archive-header .wp-block-post-terms a:hover,
.antolgy-single-header .card-category a:hover {
	text-decoration: none;
	opacity: 0.7;
}

.antolgy-card .wp-block-post-title {
	font-family: var(--wp--preset--font-family--beiruti);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--large);
	line-height: 1.3;
	margin: 0 0 0.5rem;
}

.antolgy-card .wp-block-post-excerpt {
	font-family: var(--wp--preset--font-family--amiri);
	font-size: var(--wp--preset--font-size--small);
	color: #6b6b6b;
	line-height: 1.7;
}

/* ─── بطاقة شخص ───────────────────────────────────────── */
.antolgy-person-card {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.antolgy-person-card .person-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	border: 3px solid #5b7fa5;
	overflow: hidden;
	color: #5b7fa5;
	background: #edf3f8;
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: 2.25rem;
	font-weight: 700;
	text-decoration: none;
}

.antolgy-person-card .person-avatar__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.antolgy-person-card .person-info {
	flex: 1;
}

.antolgy-person-card .person-name {
	font-family: var(--wp--preset--font-family--beiruti);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--large);
	margin: 0 0 0.25rem;
}

.antolgy-person-card .person-bio {
	font-family: var(--wp--preset--font-family--amiri);
	font-size: var(--wp--preset--font-size--small);
	color: #6b6b6b;
	margin: 0;
}

/* ─── فهارس الأشخاص والبلدان ─────────────────────────── */
.antolgy-directory {
	padding-bottom: 4rem;
}

.antolgy-directory-search {
	display: flex;
	gap: 0.65rem;
	max-width: 560px;
	margin: 0 0 2rem;
}

.antolgy-directory-search input {
	min-width: 0;
	flex: 1;
	padding: 0.8rem 1rem;
	border: 1px solid rgba(26, 26, 26, 0.18);
	border-radius: 8px;
	background: #fff;
	font: inherit;
}

.antolgy-directory-search button {
	padding: 0.8rem 1.25rem;
	border: 0;
	border-radius: 8px;
	background: #5b7fa5;
	color: #fff;
	font: inherit;
	cursor: pointer;
}

.antolgy-directory-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.antolgy-directory-person {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	min-height: 132px;
	padding: 1.25rem;
	border: 1px solid rgba(91, 127, 165, 0.16);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 3px 16px rgba(0, 0, 0, 0.04);
}

.antolgy-directory-person .person-avatar {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	flex: 0 0 64px;
	overflow: hidden;
	border: 2px solid #5b7fa5;
	border-radius: 50%;
	background: #edf3f8;
	color: #5b7fa5;
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: 1.4rem;
	font-weight: 700;
	text-decoration: none;
}

.antolgy-directory-person .person-avatar__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.antolgy-directory-person__content {
	min-width: 0;
}

.antolgy-directory-person h2 {
	margin: 0 0 0.45rem;
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: 1.25rem;
	line-height: 1.3;
}

.antolgy-directory-person h2 a,
.antolgy-country-card {
	color: inherit;
	text-decoration: none;
}

.antolgy-directory-person h2 a:hover {
	color: #5b7fa5;
}

.antolgy-directory-person p {
	margin: 0;
	color: #6b6b6b;
	font-family: var(--wp--preset--font-family--amiri);
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.7;
}

.antolgy-directory-pagination {
	margin-top: 2.5rem;
}

.antolgy-directory-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.antolgy-directory-pagination a,
.antolgy-directory-pagination span {
	display: block;
	padding: 0.45rem 0.7rem;
	border-radius: 6px;
	text-decoration: none;
}

.antolgy-directory-pagination a {
	background: #edf3f8;
	color: #284a6b;
}

.antolgy-directory-pagination .current {
	background: #5b7fa5;
	color: #fff;
}

.antolgy-countries-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.85rem;
}

.antolgy-country-card {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1rem;
	border: 1px solid rgba(71, 126, 120, 0.18);
	border-radius: 10px;
	background: #f6faf9;
	transition: transform 0.16s ease, background 0.16s ease;
}

.antolgy-country-card:hover {
	background: #e9f3f0;
	transform: translateY(-2px);
}

.antolgy-country-card__name {
	font-family: var(--wp--preset--font-family--beiruti);
	font-weight: 600;
}

.antolgy-country-card__count {
	white-space: nowrap;
	color: #6b6b6b;
	font-size: var(--wp--preset--font-size--small);
}

.antolgy-directory-empty {
	color: #6b6b6b;
}

/* ─── بطاقة اقتباس ────────────────────────────────────── */
.antolgy-quote-card {
	padding: 3rem 2rem;
	text-align: center;
	background: linear-gradient(135deg, #9b8eb5 0%, #b8aed0 100%);
	border-radius: 16px;
	color: #f5f3ef;
}

.antolgy-quote-card .quote-text {
	font-family: var(--wp--preset--font-family--amiri);
	font-size: var(--wp--preset--font-size--x-large);
	font-style: italic;
	line-height: 1.8;
	margin: 0 0 1rem;
}

.antolgy-quote-card .quote-author {
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: var(--wp--preset--font-size--medium);
	opacity: 0.8;
}

/* ─── مسار التنقل (Breadcrumbs) ─────────────────────── */
.antolgy-breadcrumbs {
	direction: rtl;
	max-width: 720px;
	margin: 0 auto;
	padding: 3rem 1rem 0;
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: 0.75rem;
	color: #999;
	line-height: 1.8;
}

.antolgy-breadcrumbs a {
	color: #999;
	text-decoration: none;
	transition: color 0.15s ease;
}

.antolgy-breadcrumbs a:hover {
	color: var(--antolgy-page-tone, #555);
}

.antolgy-breadcrumbs__sep {
	margin: 0 0.4rem;
	opacity: 0.5;
}

.antolgy-breadcrumbs__current {
	color: #555;
	font-weight: 500;
}

/* ─── المقال الواحد (single) ─────────────────────────── */
.antolgy-single-header {
	text-align: center;
	padding: 4rem 0 2rem;
}

/* ─── بطاقة النص — تنظيف wpautop ─────────────────────── */
.ant-contributor-card {
	font-size: 14px !important;
	line-height: 1.6 !important;
}
.ant-contributor-card br { display: none !important; }
.ant-contributor-card p { margin: 0; }
.ant-contributor-card > p:empty,
.ant-contributor-card .ant-contributor-ornament > p,
.ant-contributor-card .ant-contributor-role > p,
.ant-contributor-card .ant-contributor-name-row > p,
.ant-contributor-card .ant-contributor-info > p,
.ant-contributor-card .ant-contributor-row > p:has(.ant-contributor-avatar),
.ant-contributor-card .ant-contributor-avatar ~ p,
.ant-contributor-card .ant-contributor-footer > p,
.ant-contributor-card .antolgy-shortlink__body > p,
.ant-contributor-card .antolgy-shortlink__body br { display: none !important; }
/* When wpautop wraps avatar in <p>, make that <p> act as the avatar container */
.ant-contributor-card .ant-contributor-row > p:has(.ant-contributor-avatar) { display: inline-flex !important; }
.ant-contributor-card .ant-contributor-row > p:has(.ant-contributor-avatar) .ant-contributor-avatar { display: inline-flex !important; }

.antolgy-single-header .wp-block-post-title {
	font-size: var(--wp--preset--font-size--xx-large) !important;
	line-height: 1.2;
}

.antolgy-single-meta {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	font-family: var(--wp--preset--font-family--amiri);
	font-size: var(--wp--preset--font-size--small);
	color: #6b6b6b;
	margin: 1rem 0 2rem;
}

.antolgy-single-content {
	font-family: var(--wp--preset--font-family--amiri);
	font-size: clamp(1.125rem, 1.65vw, 1.375rem);
	line-height: 1.9;
	max-width: 720px;
	margin: 0 auto;
}

/* ─── أرشيف ──────────────────────────────────────────── */
.antolgy-archive-header {
	padding: 4rem 0 2rem;
	text-align: center;
	background: linear-gradient(180deg, #e8e3da 0%, transparent 100%);
}

.antolgy-archive-header .archive-title {
	font-family: var(--wp--preset--font-family--beiruti);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--xx-large);
	margin-bottom: 1rem;
}

.antolgy-archive-header .archive-count {
	font-family: var(--wp--preset--font-family--amiri);
	color: #6b6b6b;
	font-size: var(--wp--preset--font-size--medium);
}

/* ─── نبرات أنطولوجي ─────────────────────────────────── */
/* درجات خلفية فنية — ليست اللون نفسه بل تدرج روحي منه */
.antolgy-tone-ember  { --antolgy-card-accent: #bd4f4b; --antolgy-card-wash: #f8ebe7; --antolgy-page-tone: #bd4f4b; --antolgy-bg-glow: #f0ddd9; }
.antolgy-tone-moss   { --antolgy-card-accent: #587765; --antolgy-card-wash: #edf3ed; --antolgy-page-tone: #587765; --antolgy-bg-glow: #e0ebe2; }
.antolgy-tone-ink    { --antolgy-card-accent: #7a4044; --antolgy-card-wash: #f5ebea; --antolgy-page-tone: #7a4044; --antolgy-bg-glow: #f0e2df; }
.antolgy-tone-tide   { --antolgy-card-accent: #4b7180; --antolgy-card-wash: #e9f0f1; --antolgy-page-tone: #4b7180; --antolgy-bg-glow: #dfe7e9; }
.antolgy-tone-dusk   { --antolgy-card-accent: #73647f; --antolgy-card-wash: #f0edf3; --antolgy-page-tone: #73647f; --antolgy-bg-glow: #e8e3ec; }
.antolgy-tone-amber  { --antolgy-card-accent: #a8783e; --antolgy-card-wash: #f8f0df; --antolgy-page-tone: #a8783e; --antolgy-bg-glow: #f0e6cf; }
.antolgy-tone-rose   { --antolgy-card-accent: #a45e6c; --antolgy-card-wash: #f7eaed; --antolgy-page-tone: #a45e6c; --antolgy-bg-glow: #f0dde0; }
.antolgy-tone-horizon { --antolgy-card-accent: #477e78; --antolgy-card-wash: #e9f3f0; --antolgy-page-tone: #477e78; --antolgy-bg-glow: #dde9e5; }
.antolgy-tone-dawn   { --antolgy-card-accent: #b86d4c; --antolgy-card-wash: #f8ede7; --antolgy-page-tone: #b86d4c; --antolgy-bg-glow: #f0e0d5; }
.antolgy-tone-infinite { --antolgy-card-accent: #5f587f; --antolgy-card-wash: #eeeef5; --antolgy-page-tone: #5f587f; --antolgy-bg-glow: #e4e1ec; }
.antolgy-tone-liminal { --antolgy-card-accent: #82746a; --antolgy-card-wash: #f2eeea; --antolgy-page-tone: #82746a; --antolgy-bg-glow: #e8e2db; }
.antolgy-tone-night  { --antolgy-card-accent: #39445d; --antolgy-card-wash: #ebedf2; --antolgy-page-tone: #39445d; --antolgy-bg-glow: #dfe2ea; }
.antolgy-tone-secret { --antolgy-card-accent: #5c5364; --antolgy-card-wash: #f1edf1; --antolgy-page-tone: #5c5364; --antolgy-bg-glow: #e6e0e6; }

/* خلفية الموقع — تدرج روحي ينطلق من أعلى الصفحة بدرجة لون القسم */
body[class*="antolgy-tone-"] {
	background-color: var(--antolgy-bg-glow, var(--wp--preset--color--bg-primary));
	background-image:
		radial-gradient(ellipse 80% 50% at 50% 0%, var(--antolgy-bg-glow, transparent) 0%, transparent 70%),
		linear-gradient(180deg, var(--antolgy-bg-glow, transparent) 0%, var(--wp--preset--color--bg-primary, #f5f3ef) 600px);
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.antolgy-tone-ember .antolgy-card,
.antolgy-tone-moss .antolgy-card,
.antolgy-tone-ink .antolgy-card,
.antolgy-tone-tide .antolgy-card,
.antolgy-tone-dusk .antolgy-card,
.antolgy-tone-amber .antolgy-card,
.antolgy-tone-rose .antolgy-card,
.antolgy-tone-horizon .antolgy-card,
.antolgy-tone-dawn .antolgy-card,
.antolgy-tone-infinite .antolgy-card,
.antolgy-tone-liminal .antolgy-card,
.antolgy-tone-night .antolgy-card,
.antolgy-tone-secret .antolgy-card {
	border-top-color: var(--antolgy-card-accent);
	background: var(--antolgy-card-wash);
}

.antolgy-tone-ember .card-body,
.antolgy-tone-moss .card-body,
.antolgy-tone-ink .card-body,
.antolgy-tone-tide .card-body,
.antolgy-tone-dusk .card-body,
.antolgy-tone-amber .card-body,
.antolgy-tone-rose .card-body,
.antolgy-tone-horizon .card-body,
.antolgy-tone-dawn .card-body,
.antolgy-tone-infinite .card-body,
.antolgy-tone-liminal .card-body,
.antolgy-tone-night .card-body,
.antolgy-tone-secret .card-body {
	background: var(--antolgy-card-wash);
}

body.antolgy-tone-ember .antolgy-single-header,
body.antolgy-tone-moss .antolgy-single-header,
body.antolgy-tone-ink .antolgy-single-header,
body.antolgy-tone-tide .antolgy-single-header,
body.antolgy-tone-dusk .antolgy-single-header,
body.antolgy-tone-amber .antolgy-single-header,
body.antolgy-tone-rose .antolgy-single-header,
body.antolgy-tone-horizon .antolgy-single-header,
body.antolgy-tone-dawn .antolgy-single-header,
body.antolgy-tone-infinite .antolgy-single-header,
body.antolgy-tone-liminal .antolgy-single-header,
body.antolgy-tone-night .antolgy-single-header,
body.antolgy-tone-secret .antolgy-single-header,
body.antolgy-tone-ember .antolgy-archive-header,
body.antolgy-tone-moss .antolgy-archive-header,
body.antolgy-tone-ink .antolgy-archive-header,
body.antolgy-tone-tide .antolgy-archive-header,
body.antolgy-tone-dusk .antolgy-archive-header,
body.antolgy-tone-amber .antolgy-archive-header,
body.antolgy-tone-rose .antolgy-archive-header,
body.antolgy-tone-horizon .antolgy-archive-header,
body.antolgy-tone-dawn .antolgy-archive-header,
body.antolgy-tone-infinite .antolgy-archive-header,
body.antolgy-tone-liminal .antolgy-archive-header,
body.antolgy-tone-night .antolgy-archive-header,
body.antolgy-tone-secret .antolgy-archive-header {
	border-bottom: 2px solid var(--antolgy-page-tone);
}

body[class*="antolgy-tone-"] .antolgy-single-header .card-category a,
body[class*="antolgy-tone-"] .antolgy-archive-header .archive-title {
	color: var(--antolgy-page-tone);
}

/* ─── بطاقة وصف التصنيف ────────────────────────────── */
.antolgy-category-description {
	font-family: var(--wp--preset--font-family--amiri);
	font-size: var(--wp--preset--font-size--medium);
	line-height: 2;
	color: #595650;
	background: rgba(255, 255, 255, 0.32);
	backdrop-filter: blur(5px);
	padding: 1.4rem 2rem;
	border-radius: 8px;
	max-width: 780px;
	margin: 0 auto;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.52);
	box-shadow: 0 10px 28px rgba(56, 51, 44, 0.025), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ─── وقت القراءة ─────────────────────────────────────── */
.antolgy-reading-time {
	font-family: var(--wp--preset--font-family--amiri);
	font-size: 0.875rem;
	color: #6b6b6b;
}

.antolgy-single-meta {
	font-family: var(--wp--preset--font-family--amiri);
	font-size: 0.875rem;
	color: #6b6b6b;
	gap: 1rem;
}

/* ─── تخصيص ألوان الأقسام — تدرجات أعمق ──────────── */
.section-contemporary-poetry {
	background: linear-gradient(180deg, rgba(194, 101, 74, 0.06) 0%, rgba(194, 101, 74, 0.02) 50%, transparent 100%);
	border-bottom: 1px solid rgba(194, 101, 74, 0.08);
}
.section-contemporary-poetry .section-tag {
	background: #c2654a;
	box-shadow: 0 2px 10px rgba(194, 101, 74, 0.2);
}
.section-contemporary-poetry .section-title { color: #c2654a; }
.section-contemporary-poetry .antolgy-card:hover {
	box-shadow: 0 8px 30px rgba(194, 101, 74, 0.12);
}

.section-translated-poetry {
	background: linear-gradient(180deg, rgba(107, 143, 113, 0.06) 0%, rgba(107, 143, 113, 0.02) 50%, transparent 100%);
	border-bottom: 1px solid rgba(107, 143, 113, 0.08);
}
.section-translated-poetry .section-tag {
	background: #6b8f71;
	box-shadow: 0 2px 10px rgba(107, 143, 113, 0.2);
}
.section-translated-poetry .section-title { color: #6b8f71; }
.section-translated-poetry .antolgy-card:hover {
	box-shadow: 0 8px 30px rgba(107, 143, 113, 0.12);
}

.section-literature-letters {
	background: linear-gradient(180deg, rgba(139, 58, 58, 0.04) 0%, rgba(139, 58, 58, 0.02) 50%, transparent 100%);
	border-bottom: 1px solid rgba(139, 58, 58, 0.08);
}
.section-literature-letters .section-tag {
	background: #8b3a3a;
	box-shadow: 0 2px 10px rgba(139, 58, 58, 0.2);
}
.section-literature-letters .section-title { color: #8b3a3a; }
.section-literature-letters .antolgy-card:hover {
	box-shadow: 0 8px 30px rgba(139, 58, 58, 0.12);
}

.section-short-stories {
	background: linear-gradient(180deg, rgba(91, 123, 138, 0.06) 0%, rgba(91, 123, 138, 0.02) 50%, transparent 100%);
	border-bottom: 1px solid rgba(91, 123, 138, 0.08);
}
.section-short-stories .section-tag {
	background: #5b7b8a;
	box-shadow: 0 2px 10px rgba(91, 123, 138, 0.2);
}
.section-short-stories .section-title { color: #5b7b8a; }
.section-short-stories .antolgy-card:hover {
	box-shadow: 0 8px 30px rgba(91, 123, 138, 0.12);
}

.section-reading-anthology {
	background: linear-gradient(180deg, rgba(125, 107, 125, 0.06) 0%, rgba(125, 107, 125, 0.02) 50%, transparent 100%);
	border-bottom: 1px solid rgba(125, 107, 125, 0.08);
}
.section-reading-anthology .section-tag {
	background: #7d6b7d;
	box-shadow: 0 2px 10px rgba(125, 107, 125, 0.2);
}
.section-reading-anthology .section-title { color: #7d6b7d; }
.section-reading-anthology .antolgy-card:hover {
	box-shadow: 0 8px 30px rgba(125, 107, 125, 0.12);
}

.section-creative-posts {
	background: linear-gradient(180deg, rgba(196, 163, 90, 0.06) 0%, rgba(196, 163, 90, 0.02) 50%, transparent 100%);
	border-bottom: 1px solid rgba(196, 163, 90, 0.08);
}
.section-creative-posts .section-tag {
	background: #c4a35a;
	box-shadow: 0 2px 10px rgba(196, 163, 90, 0.2);
}
.section-creative-posts .section-title { color: #c4a35a; }
.section-creative-posts .antolgy-card:hover {
	box-shadow: 0 8px 30px rgba(196, 163, 90, 0.12);
}

.section-erotic {
	background: linear-gradient(180deg, rgba(184, 115, 122, 0.06) 0%, rgba(184, 115, 122, 0.02) 50%, transparent 100%);
	border-bottom: 1px solid rgba(184, 115, 122, 0.08);
}
.section-erotic .section-tag {
	background: #b8737a;
	box-shadow: 0 2px 10px rgba(184, 115, 122, 0.2);
}
.section-erotic .section-title { color: #b8737a; }
.section-erotic .antolgy-card:hover {
	box-shadow: 0 8px 30px rgba(184, 115, 122, 0.12);
}

.section-haiku {
	background: linear-gradient(180deg, rgba(138, 179, 161, 0.06) 0%, rgba(138, 179, 161, 0.02) 50%, transparent 100%);
	border-bottom: 1px solid rgba(138, 179, 161, 0.08);
}
.section-haiku .section-tag {
	background: #8ab3a1;
	box-shadow: 0 2px 10px rgba(138, 179, 161, 0.2);
}
.section-haiku .section-title { color: #8ab3a1; }
.section-haiku .antolgy-card:hover {
	box-shadow: 0 8px 30px rgba(138, 179, 161, 0.12);
}

.section-bediaat {
	background: linear-gradient(180deg, rgba(201, 124, 92, 0.06) 0%, rgba(201, 124, 92, 0.02) 50%, transparent 100%);
	border-bottom: 1px solid rgba(201, 124, 92, 0.08);
}
.section-bediaat .section-tag {
	background: #c97c5c;
	box-shadow: 0 2px 10px rgba(201, 124, 92, 0.2);
}
.section-bediaat .section-title { color: #c97c5c; }
.section-bediaat .antolgy-card:hover {
	box-shadow: 0 8px 30px rgba(201, 124, 92, 0.12);
}

.section-dialectic {
	background: linear-gradient(180deg, rgba(107, 91, 123, 0.06) 0%, rgba(107, 91, 123, 0.02) 50%, transparent 100%);
	border-bottom: 1px solid rgba(107, 91, 123, 0.08);
}
.section-dialectic .section-tag {
	background: #6b5b7b;
	box-shadow: 0 2px 10px rgba(107, 91, 123, 0.2);
}
.section-dialectic .section-title { color: #6b5b7b; }
.section-dialectic .antolgy-card:hover {
	box-shadow: 0 8px 30px rgba(107, 91, 123, 0.12);
}

/* ─── قسم الشخصية المميزة ───────────────────────────── */
.section-featured-person {
	background: linear-gradient(180deg, rgba(91, 127, 165, 0.06) 0%, rgba(91, 127, 165, 0.02) 50%, transparent 100%);
	border-bottom: 1px solid rgba(91, 127, 165, 0.08);
}
.section-featured-person .section-tag {
	background: #5b7fa5;
	box-shadow: 0 2px 10px rgba(91, 127, 165, 0.2);
}
.section-featured-person .section-title { color: #5b7fa5; }

/* ─── رأس الصفحة والتنقل ─────────────────────────────── */
.antolgy-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(245, 243, 239, 0.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

/* إخفاء روابط التنقل الأفقية — نظهر فقط زر الهامبرغر */
.wp-block-navigation:not(.is-responsive) .wp-block-navigation__responsive-container-open,
.wp-block-navigation .wp-block-navigation__responsive-container-open {
	display: flex !important;
}

.wp-block-navigation .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-page-list,
.wp-block-navigation .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__container,
.wp-block-navigation .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation-link {
	display: none !important;
}

/* ─── درج التنقل ────────────────────────────────────── */
.wp-block-navigation__responsive-container.is-menu-open {
	position: fixed !important;
	box-sizing: border-box !important;
	max-width: 100% !important;
	top: 0 !important;
	right: 0 !important;
	left: auto !important;
	bottom: 0 !important;
	width: min(25rem, 88vw) !important;
	height: 100dvh !important;
	background: #f5f3ef !important;
	display: flex !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;
	z-index: 9999 !important;
	padding: 5.5rem 2rem 2rem !important;
	direction: rtl !important;
	border-left: 1px solid rgba(26, 26, 26, 0.1) !important;
	box-shadow: -18px 0 42px rgba(26, 26, 26, 0.12) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog {
	width: 100% !important;
	height: 100% !important;
}

/* زر إغلاق القائمة */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
	position: fixed !important;
	top: 1.25rem !important;
	right: 1.25rem !important;
	left: auto !important;
	width: 36px !important;
	height: 36px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: transparent !important;
	border: 1px solid rgba(26, 26, 26, 0.16) !important;
	border-radius: 6px !important;
	color: #1a1a1a !important;
	font-size: 1rem !important;
	cursor: pointer !important;
	transition: background 0.16s ease, border-color 0.16s ease !important;
	z-index: 10000 !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close:hover {
	background: rgba(26, 26, 26, 0.05) !important;
	border-color: rgba(26, 26, 26, 0.3) !important;
}

/* روابط القائمة */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	align-items: start !important;
	gap: 0 !important;
	border-top: 1px solid rgba(26, 26, 26, 0.1) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link {
	display: block !important;
	margin: 0 !important;
	opacity: 1 !important;
	animation: none !important;
	border-bottom: 1px solid rgba(26, 26, 26, 0.1) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link:nth-child(odd) {
	border-left: 1px solid rgba(26, 26, 26, 0.1) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	font-family: 'Beiruti', sans-serif !important;
	font-size: 1rem !important;
	font-weight: 500 !important;
	color: #1a1a1a !important;
	text-decoration: none !important;
	padding: 0.9rem 0.65rem !important;
	transition: color 0.16s ease, background 0.16s ease !important;
	display: block !important;
	text-align: right !important;
	border-radius: 0 !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover {
	color: #1a1a1a !important;
	background: rgba(26, 26, 26, 0.05) !important;
}

/* زر الهامبرغر */
.wp-block-navigation__responsive-container-open svg {
	width: 22px;
	height: 22px;
}

/* ─── بحث الرأس ─────────────────────────────────────── */
.antolgy-search-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: #1a1a1a;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.16s ease;
}

.antolgy-search-link:hover {
	background: rgba(26, 26, 26, 0.06);
}

.antolgy-search-icon {
	position: relative;
	display: block;
	width: 14px;
	height: 14px;
	border: 1.5px solid currentColor;
	border-radius: 50%;
}

.antolgy-search-icon::after {
	content: '';
	position: absolute;
	right: -4px;
	bottom: -2px;
	width: 6px;
	height: 1.5px;
	background: currentColor;
	transform: rotate(45deg);
}

@media (max-width: 640px) {
	.wp-block-navigation__responsive-container.is-menu-open {
		width: 100% !important;
		padding: 5rem 1.25rem 1.5rem !important;
	}

	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
		grid-template-columns: 1fr !important;
	}

	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link:nth-child(odd) {
		border-left: 0 !important;
	}

}

/* ─── تجربة التصفح والبحث ───────────────────────────── */
.antolgy-primary-navigation {
	display: none !important;
}

.antolgy-menu-trigger,
.antolgy-search-link,
.antolgy-dock-button {
	appearance: none;
	-webkit-appearance: none;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 8px;
	background: transparent;
	color: #1a1a1a;
	cursor: pointer;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease;
}

.antolgy-menu-trigger:hover,
.antolgy-search-link:hover,
.antolgy-dock-button:hover {
	background: rgba(26, 26, 26, 0.05);
}

.antolgy-menu-trigger {
	flex-direction: column;
	gap: 6px;
}

.antolgy-menu-trigger span,
.antolgy-menu-icon,
.antolgy-menu-icon::after {
	display: block;
	width: 18px;
	height: 1px;
	background: currentColor;
}

.antolgy-menu-icon {
	position: relative;
}

.antolgy-menu-icon::after {
	content: '';
	position: absolute;
	top: 6px;
	right: 0;
}

.antolgy-search-link {
	border: 1px solid transparent;
}

html.antolgy-overlay-open,
html.antolgy-overlay-open body {
	overflow: hidden;
	overscroll-behavior: none;
}

html {
	scrollbar-gutter: stable;
}

.antolgy-overlay {
	position: fixed;
	inset: 0;
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: 100dvh;
	padding: clamp(12px, 4vw, 36px);
	overflow: hidden;
	background: rgba(224, 235, 232, 0.9);
	z-index: 10050;
	direction: rtl;
}

.antolgy-overlay[hidden] {
	display: none !important;
}

.antolgy-overlay__card {
	box-sizing: border-box;
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	width: 100%;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 16px 42px rgba(26, 26, 26, 0.09);
}

.antolgy-overlay__content {
	min-height: 0;
	overflow-y: auto;
	padding: clamp(2rem, 9vw, 5rem) clamp(2rem, 10vw, 6rem) 2rem;
}

.antolgy-overlay__eyebrow {
	margin: 0 0 1.25rem;
	color: rgba(26, 26, 26, 0.55);
	font-family: 'Beiruti', sans-serif;
	font-size: 0.85rem;
	font-weight: 400;
}

.antolgy-navigation-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.antolgy-navigation-list li {
	margin: 0;
	border-bottom: 1px solid rgba(26, 26, 26, 0.09);
}

.antolgy-navigation-list a {
	display: block;
	padding: 0.52rem 0;
	color: #696661;
	font-family: 'Beiruti', sans-serif;
	font-size: clamp(1.225rem, 3.5vw, 2.1rem);
	font-weight: 300;
	line-height: 1.2;
	text-decoration: none;
	transition: padding 160ms ease, color 160ms ease;
}

.antolgy-navigation-list a:hover {
	padding-right: 0.35rem;
	color: #3f3d39;
}

.antolgy-overlay__dock {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) 56px;
	align-items: center;
	min-height: 72px;
	padding: 8px;
	border-top: 1px solid rgba(26, 26, 26, 0.08);
	background: rgba(255, 255, 255, 0.98);
	direction: ltr;
}

.antolgy-overlay__dock .antolgy-dock-button {
	width: 48px;
	height: 48px;
	border-radius: 6px;
}

.antolgy-dock-brand {
	color: #1a1a1a;
	font-family: 'Amiri', serif;
	font-size: 1.55rem;
	line-height: 1;
	text-align: center;
	direction: rtl;
}

.antolgy-close-icon {
	position: relative;
	display: block;
	width: 22px;
	height: 22px;
}

.antolgy-close-icon::before,
.antolgy-close-icon::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 22px;
	height: 2px;
	background: currentColor;
}

.antolgy-close-icon::before { transform: rotate(45deg); }
.antolgy-close-icon::after { transform: rotate(-45deg); }

.antolgy-search-panel {
	grid-template-rows: minmax(0, 1fr) auto;
}

.antolgy-search-form {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	padding: clamp(2rem, 10vw, 6rem);
}

.antolgy-search-form input {
	width: min(100%, 34rem);
	margin: 0;
	padding: 0 0 0.45rem;
	border: 0;
	border-bottom: 1px solid rgba(26, 26, 26, 0.16);
	border-radius: 0;
	outline: 0;
	background: transparent;
	color: #1a1a1a;
	font-family: 'Amiri', serif;
	font-size: clamp(2.6rem, 10vw, 5.5rem);
	font-weight: 400;
	line-height: 1;
	text-align: center;
	transition: border-color 160ms ease;
}

.antolgy-search-form input::placeholder {
	color: rgba(26, 26, 26, 0.13);
}

.antolgy-search-form input:focus {
	border-color: rgba(26, 26, 26, 0.58);
}

.antolgy-search-form button[type="submit"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ─── فهرس الأشخاص ───────────────────────────────── */
.antolgy-persons-archive {
	max-width: 960px;
	margin: 0 auto;
	padding: 2rem 1rem 4rem;
}

.antolgy-persons-count {
	text-align: center;
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: 0.85rem;
	color: #999;
	margin-bottom: 2rem;
}

.antolgy-persons-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.25rem;
}

.antolgy-person-index-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.5rem 1rem;
	border-radius: 12px;
	background: var(--antolgy-card-wash, #f9f9f9);
	border-top: 2px solid var(--antolgy-card-accent, #ddd);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.antolgy-person-index-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.antolgy-person-index-card__photo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 0.75rem;
	flex-shrink: 0;
}

.antolgy-person-index-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.antolgy-person-index-card__info {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.antolgy-person-index-card__name {
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: 0.9rem;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.3;
}

.antolgy-person-index-card__name-en {
	font-size: 0.7rem;
	color: #999;
	font-style: italic;
}

.antolgy-person-index-card__count {
	font-size: 0.7rem;
	color: var(--antolgy-card-accent, #888);
	margin-top: 0.25rem;
}

.antolgy-person-index-card__photo--placeholder {
	background: linear-gradient(135deg, var(--antolgy-card-accent, #c9a85c) 0%, #a88a4a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.antolgy-person-index-card__initials {
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
}

.entry-content .antolgy-persons-pagination,
.entry-content .antolgy-persons-pagination ul.page-numbers,
.entry-content .antolgy-persons-pagination ul.page-numbers li {
	list-style: none !important;
	list-style-type: none !important;
	margin: 0;
	padding: 0;
}

.entry-content .antolgy-persons-pagination ul.page-numbers {
	display: flex !important;
	gap: 0.4rem;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 2.5rem;
}

.entry-content .antolgy-persons-pagination ul.page-numbers li {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.entry-content .antolgy-persons-pagination ul.page-numbers li .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.6rem;
	border-radius: 50%;
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: 0.9rem;
	font-weight: 500;
	color: #1a1a1a;
	background: transparent;
	border: 1px solid rgba(26,26,46,0.12);
	text-decoration: none;
	transition: all 0.2s ease;
}

.entry-content .antolgy-persons-pagination ul.page-numbers li .page-numbers:hover:not(.current):not(.dots) {
	background: rgba(201,168,92,0.12);
	color: #c9a85c;
	border-color: #c9a85c;
}

.entry-content .antolgy-persons-pagination ul.page-numbers li .page-numbers.current {
	background: #c9a85c;
	color: #fff;
	border-color: #c9a85c;
	font-weight: 600;
}

.entry-content .antolgy-persons-pagination ul.page-numbers li .page-numbers.dots {
	border: none;
	min-width: auto;
	padding: 0 0.2rem;
}

@media (max-width: 640px) {
	.antolgy-persons-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}

	.antolgy-person-index-card {
		padding: 1rem 0.5rem;
	}

	.antolgy-person-index-card__photo {
		width: 64px;
		height: 64px;
	}

	.antolgy-persons-pagination .page-numbers {
		min-width: 2rem;
		height: 2rem;
		font-size: 0.8rem;
	}
}

@media (max-width: 640px) {
	.antolgy-overlay {
		padding: 20px;
	}

	.antolgy-overlay__content {
		padding: 2rem 2.25rem;
	}

	.antolgy-navigation-list a {
		font-size: 1.4rem;
	}
}

/* ─── صفحة الشخص ───────────────────────────────────── */
.person-avatar-col .wp-block-post-featured-image img {
	width: 200px !important;
	height: 200px !important;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid var(--wp--preset--color--section-navy);
	box-shadow: 0 4px 20px rgba(91, 127, 165, 0.15);
}

.person-shortlink {
	margin-top: 1rem;
	font-family: var(--wp--preset--font-family--amiri);
	font-size: 0.85rem;
}

.person-shortlink a {
	color: var(--wp--preset--color--section-navy) !important;
	text-decoration: none;
	opacity: 0.7;
	transition: opacity 0.2s ease;
	word-break: break-all;
}

.person-shortlink a:hover {
	opacity: 1;
	text-decoration: underline;
}

/* ─── تعويض المساحة التي يستهلكها الهيدر الثابت */
/* sticky لا يحتاج padding-top */

/* ─── تذييل الصفحة ────────────────────────────────────── */
.antolgy-footer {
	padding: 3rem 0;
	text-align: center;
	border-top: 1px solid rgba(0,0,0,0.06);
	margin-top: 4rem;
}

.antolgy-footer .footer-text {
	font-family: var(--wp--preset--font-family--amiri);
	font-size: var(--wp--preset--font-size--small);
	color: #6b6b6b;
}

.antolgy-beta-badge {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: 0.68rem;
	font-weight: 400;
	color: rgba(107, 107, 107, 0.6);
	letter-spacing: 0.03em;
	direction: ltr;
}

/* Hero variant — dark background */
.antolgy-beta-hero {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-bottom: 0.5rem;
	font-family: var(--wp--preset--font-family--beiruti);
	font-size: 0.72rem;
	font-weight: 300;
	color: rgba(242, 240, 235, 0.55);
	letter-spacing: 0.04em;
	direction: ltr;
}

.antolgy-beta-pulse {
	display: inline-flex;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #6b8f71;
	animation: antolgy-pulse 1.8s ease-in-out infinite;
}

@keyframes antolgy-pulse {
	0%, 100% { opacity: 0.45; transform: scale(0.85); }
	50% { opacity: 1; transform: scale(1.15); }
	75% { opacity: 0.6; transform: scale(0.92); }
}

/* ─── أخدود بين الأقسام (section divider) ─────────────── */
.section-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
	margin: 3rem auto;
	max-width: 80%;
}

/* ─── مواضع AdSense اليدوية ─────────────────────────── */
.antolgy-ad-slot {
	max-width: 970px;
	min-height: 140px;
	margin: 3.5rem auto;
	padding: 0.75rem 0;
	border-top: 1px solid rgba(41, 70, 63, 0.1);
	border-bottom: 1px solid rgba(41, 70, 63, 0.1);
}

.antolgy-ad-slot[hidden] {
	display: none !important;
}

.antolgy-ad-slot .adsbygoogle {
	display: block;
	min-height: 120px;
}

/* ─── تجاوب مع الجوال ─────────────────────────────────── */
@media (max-width: 768px) {
	.antolgy-hero-section {
		min-height: 50vh;
	}
	
	.section-header {
		flex-wrap: wrap;
	}
	
	.antolgy-card .wp-block-post-featured-image img {
		height: 180px;
	}

	.antolgy-ad-slot {
		min-height: 110px;
		margin: 2.75rem 1.25rem;
	}

	.antolgy-ad-slot .adsbygoogle {
		min-height: 90px;
	}
	
	.antolgy-person-card {
		flex-direction: column;
		text-align: center;
	}

	.antolgy-directory-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.antolgy-countries-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.antolgy-quote-card .quote-text {
		font-size: var(--wp--preset--font-size--large);
	}
}

@media (max-width: 480px) {
	.antolgy-directory-search {
		flex-direction: column;
	}

	.antolgy-directory-grid,
	.antolgy-countries-grid {
		grid-template-columns: 1fr;
	}

	.antolgy-hero-section {
		min-height: 40vh;
	}
	
	.antolgy-single-header .wp-block-post-title {
		font-size: var(--wp--preset--font-size--x-large) !important;
	}
}
