/*
 * Startaste — stylesheet for the "startaste" page template.
 * Enqueued only on pages using page-templates/startaste.php.
 */

#chisono,
#eventi,
#attivita-dettaglio,
#collaborazioni,
#contatti {
	scroll-margin-top: 90px;
}

:root {
	--startaste-color-text: #2b2b2b;
	--startaste-color-bg: #ffffff;
	--startaste-color-bg-soft: #faf5f0;
	--startaste-color-accent: #b08968;
	--startaste-color-accent-dark: #8e6b4f;
	--startaste-color-sage: #9caf9a;
	--startaste-color-footer-bg: #33291f;
	--startaste-color-footer-text: #f3ece4;
	--startaste-font-heading: Georgia, serif;
	--startaste-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:where(.startaste, .site-header, .startaste-footer) a:visited {
	color: var(--startaste-color-accent);
}

.startaste {
	color: var(--startaste-color-text);
	background: var(--startaste-color-bg);
	font-family: var(--startaste-font-body);
	padding-top: 90px;
}

/* Navbar
--------------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
	min-height: 90px;
	padding: 0 clamp(1.25rem, 4vw, 4rem);
	background: var(--startaste-color-bg);
	border-bottom: 1px solid #eee;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

@media screen and (min-width: 37.5em) {
	.site-header {
		height: 90px;
	}
}

.site-header .site-branding {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.site-header .custom-logo-link img {
	display: block;
	max-height: 60px;
	width: auto;
}

.site-header .site-title {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.2;
	font-family: var(--startaste-font-heading);
}

.site-header .site-title a {
	color: var(--startaste-color-text);
	text-decoration: none;
}

.site-header .site-description {
	display: none;
}

.site-header .main-navigation {
	width: auto;
}

@media screen and (min-width: 37.5em) {
	.site-header .main-navigation {
		display: flex;
		align-items: stretch;
		height: 100%;
	}
}

.site-header .main-navigation ul#primary-menu {
	align-items: center;
	gap: 2rem;
}

@media screen and (min-width: 37.5em) {
	.site-header .main-navigation ul#primary-menu {
		align-items: stretch;
		height: 100%;
	}

	.site-header .main-navigation li {
		display: flex;
		align-items: stretch;
	}
}

.site-header .main-navigation li {
	position: relative;
}

.site-header .main-navigation a {
	padding: 0.5rem 0;
	font-size: 1.075rem; /* 0.95rem + 2px */
	font-weight: 600;
	color: var(--startaste-color-text);
	transition: color 0.2s ease;
}

@media screen and (min-width: 37.5em) {
	.site-header .main-navigation a {
		display: flex;
		align-items: center;
		position: relative;
	}
}

.site-header .main-navigation a:hover,
.site-header .main-navigation a:focus {
	color: var(--startaste-color-accent);
}

.site-header .main-navigation a.active {
	color: var(--startaste-color-accent);
}

.site-header .main-navigation a.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--startaste-color-accent);
}

/* Last menu item ("Contatti") styled as a button */
@media screen and (min-width: 37.5em) {
	.site-header .main-navigation li:last-child {
		align-items: center;
	}
}

.site-header .main-navigation li:last-child a {
	padding: 0.55rem 1.5rem;
	border: 2px solid var(--startaste-color-accent);
	border-radius: 999px;
	color: var(--startaste-color-accent-dark);
}

.site-header .main-navigation li:last-child a:hover,
.site-header .main-navigation li:last-child a:focus {
	background: var(--startaste-color-accent);
	color: #fff;
}

.site-header .main-navigation li:last-child a.active::after {
	display: none;
}

.site-header .menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0.5rem;
	cursor: pointer;
}

.site-header .menu-toggle img {
	width: 24px;
	height: 24px;
}

@media screen and (max-width: 37.5em) {
	.site-header {
		justify-content: space-between;
	}

	.site-header .main-navigation {
		display: flex;
		align-items: center;
	}

	.site-header .menu-toggle {
		display: flex;
	}

	.site-header .menu-toggle img {
		width: 32px;
		height: 32px;
	}

	.site-header .main-navigation ul#primary-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: center;
		gap: 0.25rem;
		padding: 1rem clamp(1.25rem, 4vw, 4rem) 1.5rem;
		background: var(--startaste-color-bg);
		border-bottom: 1px solid #eee;
		box-shadow: 0 16px 24px rgba(0, 0, 0, 0.08);
	}

	.site-header .main-navigation.toggled ul#primary-menu {
		display: flex;
		animation: startaste-mobile-menu-in 0.25s ease;
	}

	@keyframes startaste-mobile-menu-in {
		from {
			opacity: 0;
			transform: translateY(-8px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.site-header .main-navigation li {
		width: 100%;
		text-align: center;
	}

	.site-header .main-navigation li:last-child {
		margin-top: 0.5rem;
	}

	.site-header .main-navigation li:last-child a {
		display: inline-flex;
	}
}

/* Hero
--------------------------------------------- */
.hero-banner {
	width: 100%;
	line-height: 0;
}

.hero-banner img {
	display: block;
	width: 100%;
	height: clamp(320px, 45vw, 560px);
	object-fit: cover;
}

.hero-intro {
	background: var(--startaste-color-bg-soft);
	text-align: center;
	padding: 3.5rem 1.5rem;
}

.hero-intro-content {
	max-width: 760px;
	margin: 0 auto;
}

.hero-title {
	margin: 0 0 1.5rem;
	font-family: var(--startaste-font-heading);
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: var(--startaste-color-text);
}

.hero-quote {
	margin: 0 auto 2.5rem;
	max-width: 620px;
	font-family: var(--startaste-font-heading);
	font-style: italic;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.6;
	color: #555;
}

.hero-quote-author {
	display: block;
	margin-top: 0.75rem;
	font-style: normal;
	font-size: 0.95rem;
	color: var(--startaste-color-accent-dark);
}


/* Sections — shared layout
--------------------------------------------- */
.section {
	padding: 5rem 1.5rem;
}

.section--soft {
	background: var(--startaste-color-bg-soft);
}

.section-inner {
	max-width: 1040px;
	margin: 0 auto;
}

.section-inner--narrow {
	max-width: 720px;
}

.section-inner--wide {
	max-width: 1320px;
}

.section-eyebrow {
	margin: 0 0 0.5rem;
	color: var(--startaste-color-accent-dark);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-eyebrow--center {
	text-align: center;
}

.section-title {
	margin: 0 0 1.75rem;
	font-family: var(--startaste-font-heading);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	line-height: 1.3;
}

.section-title--center {
	text-align: center;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Buttons
--------------------------------------------- */
.btn {
	display: inline-block;
	padding: 0.8rem 1.9rem;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn--outline {
	background: transparent;
	border: 2px solid var(--startaste-color-accent);
	color: var(--startaste-color-accent-dark);
}

.btn--outline:hover,
.btn--outline:focus {
	background: var(--startaste-color-accent);
	color: #fff;
	transform: translateY(-2px);
}

/* Lists
--------------------------------------------- */
.check-list {
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 1.4rem;
	margin-bottom: 0.65rem;
	line-height: 1.5;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--startaste-color-accent);
}

.check-list--nested {
	margin-top: 0.65rem;
}

/* Cards
--------------------------------------------- */
.card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-title {
	margin: 0 0 1.25rem;
	font-family: var(--startaste-font-heading);
	font-size: 1.2rem;
}

/* Chi Sono
--------------------------------------------- */
.chi-sono-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 3rem;
	align-items: center;
}

.chi-sono-media img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.chi-sono-copy p {
	line-height: 1.7;
	color: #444;
}

@media screen and (max-width: 56em) {
	.chi-sono-grid {
		grid-template-columns: 1fr;
	}
}

/* Di cosa mi occupo
--------------------------------------------- */
.attivita-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

@media screen and (max-width: 56em) {
	.attivita-cards {
		grid-template-columns: 1fr;
	}
}

/* Dove trovarmi
--------------------------------------------- */
.map-frame {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	aspect-ratio: 16 / 7;
}

.map-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.map-caption {
	margin-top: 1rem;
	text-align: center;
	color: #444;
	font-size: 1.15rem;
}

.map-cta {
	margin-top: 1.5rem;
	text-align: center;
}

/* Attività nel dettaglio
--------------------------------------------- */
.detail-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.detail-card {
	background: #fff;
	border-radius: 16px;
	padding: 0.5rem 1.75rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.detail-card summary {
	padding: 1.25rem 0;
	font-family: var(--startaste-font-heading);
	font-size: 1.1rem;
	cursor: pointer;
	list-style: none;
}

.detail-card summary::-webkit-details-marker {
	display: none;
}

.detail-card summary::before {
	content: "+";
	display: inline-block;
	width: 1.5rem;
	color: var(--startaste-color-accent-dark);
	font-weight: 700;
}

.detail-card[open] summary::before {
	content: "–";
}

.detail-card summary span {
	display: block;
	margin-top: 0.25rem;
	margin-left: 1.5rem;
	font-family: var(--startaste-font-body);
	font-size: 0.85rem;
	font-weight: 400;
	color: #888;
}

.detail-body {
	display: grid;
	grid-template-rows: 0fr;
	color: #444;
	line-height: 1.7;
	transition: grid-template-rows 0.35s ease;
}

.detail-card[open] .detail-body {
	grid-template-rows: 1fr;
}

.detail-body-inner {
	overflow: hidden;
	padding: 0 0 1.75rem;
}

.detail-subtitle {
	margin: 1.5rem 0 0.75rem;
	font-family: var(--startaste-font-heading);
	font-size: 1rem;
}

.detail-body blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.5rem;
	border-left: 3px solid var(--startaste-color-accent);
	background: var(--startaste-color-bg-soft);
	font-style: italic;
	color: #555;
}

.detail-body blockquote cite {
	display: block;
	margin-top: 0.5rem;
	font-style: normal;
	font-size: 0.85rem;
	color: var(--startaste-color-accent-dark);
}

/* Collaborazioni
--------------------------------------------- */
.collab-layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2rem;
	align-items: stretch;
}

.collab-panel {
	border-radius: 20px;
	padding: 2.5rem;
}

.collab-panel--places {
	background: var(--startaste-color-bg-soft);
}

.collab-panel--press {
	background: #223129;
	color: #f3ece4;
}

.collab-panel-title {
	margin: 0 0 1.75rem;
	font-family: var(--startaste-font-heading);
	font-size: 1.2rem;
}

.collab-panel--press .collab-panel-title {
	color: var(--startaste-color-sage);
}

.collab-place-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.collab-place {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.1rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.collab-place:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.collab-place:first-child {
	padding-top: 0;
}

.collab-place .collab-pin {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-top: 0.1rem;
	border-radius: 50%;
	background: #fff;
	color: var(--startaste-color-accent-dark);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.collab-place p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.55;
	color: #333;
}

.collab-place p a,
.collab-press-list li a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.collab-place p a:hover,
.collab-press-list li a:hover {
	color: var(--startaste-color-accent-dark);
	text-decoration-color: currentColor;
}

.collab-press-list li a {
	color: inherit;
}

.collab-press-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.collab-press-list li {
	position: relative;
	padding: 0.9rem 0 0.9rem 1.5rem;
	font-family: var(--startaste-font-heading);
	font-size: 1.15rem;
	font-style: italic;
	border-bottom: 1px solid rgba(243, 236, 228, 0.15);
}

.collab-press-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.collab-press-list li:first-child {
	padding-top: 0;
}

.collab-press-list li::before {
	content: "»";
	position: absolute;
	left: 0;
	color: var(--startaste-color-sage);
	font-style: normal;
}

@media screen and (max-width: 56em) {
	.collab-layout {
		grid-template-columns: 1fr;
	}
}

/* Contatti
--------------------------------------------- */
.contact-form-card {
	background: #fff;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-alt {
	margin-top: 1.5rem;
	text-align: center;
	color: #666;
}

.contact-alt a {
	color: var(--startaste-color-accent-dark);
	font-weight: 600;
}

.wpcf7-form p {
	margin-bottom: 1.25rem;
}

.wpcf7-form label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: #333;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-family: var(--startaste-font-body);
	font-size: 0.95rem;
	background: #fff;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--startaste-color-accent);
}

.wpcf7-form textarea {
	min-height: 130px;
	resize: vertical;
}

.wpcf7-form p.privacy {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin-bottom: 1.5rem;
	font-size: 0.85rem;
	line-height: 1.55;
	color: #666;
}

.wpcf7-form .wpcf7-acceptance {
	display: inline-flex;
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
	width: 17px;
	height: 17px;
	margin: 0;
	accent-color: var(--startaste-color-accent);
	cursor: pointer;
}

.wpcf7-form input[type="submit"] {
	display: inline-block;
	padding: 0.85rem 2.25rem;
	border: none;
	border-radius: 999px;
	background: var(--startaste-color-accent);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.wpcf7-form input[type="submit"]:hover {
	background: var(--startaste-color-accent-dark);
	transform: translateY(-2px);
}

/* Footer
--------------------------------------------- */
.startaste-footer {
	background: var(--startaste-color-footer-bg);
	color: var(--startaste-color-footer-text);
	padding: 4rem 1.5rem 0;
}

.footer-inner {
	max-width: 1040px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
}

.footer-logo {
	margin: 0 0 0.75rem;
	font-family: var(--startaste-font-heading);
	font-size: 1.3rem;
	color: #fff;
}

.footer-tagline {
	margin: 0;
	max-width: 32ch;
	color: rgba(243, 236, 228, 0.7);
	line-height: 1.6;
	font-size: 0.9rem;
}

.footer-heading {
	margin: 0 0 1.1rem;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--startaste-color-accent);
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	color: rgba(243, 236, 228, 0.85);
	line-height: 1.5;
}

.footer-links a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus {
	color: var(--startaste-color-accent);
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 1.5rem;
	border-top: 1px solid rgba(243, 236, 228, 0.15);
	padding: 1.5rem 0;
	text-align: center;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.8rem;
	color: rgba(243, 236, 228, 0.6);
}

.footer-legal-links a {
	color: rgba(243, 236, 228, 0.8);
	text-decoration: none;
}

.footer-legal-links a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer-legal-links span {
	color: rgba(243, 236, 228, 0.4);
	margin: 0 0.15rem;
}

@media screen and (max-width: 56em) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Articoli e interviste
--------------------------------------------- */
.article-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.75rem;
}

.article-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: #fff;
	border-radius: 16px;
	padding: 1.75rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.article-card-title {
	margin: 0 0 0.75rem;
	font-family: var(--startaste-font-heading);
	font-size: 1.1rem;
	line-height: 1.35;
}

.article-card-excerpt {
	margin-bottom: 1.25rem;
	color: #555;
	font-size: 0.92rem;
	line-height: 1.6;
}

.article-card-excerpt p {
	margin: 0 0 0.85rem;
}

.article-card-excerpt p:last-child {
	margin-bottom: 0;
}

.article-card .btn {
	margin-top: auto;
}

/* Grazie per avermi contattato
--------------------------------------------- */
.thank-you-section {
	padding-top: 7rem;
	padding-bottom: 7rem;
	text-align: center;
}

.thank-you-text {
	margin: 0 0 2rem;
	font-size: 1.15rem;
	color: #555;
}

/* Blog archive
--------------------------------------------- */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem 2rem;
}

.blog-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.blog-card-media {
	display: block;
	height: 240px;
	flex-shrink: 0;
	background: var(--startaste-color-bg-soft);
}

.blog-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.blog-card-media-fallback {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--startaste-color-bg-soft), #efe2d4);
}

.blog-card-body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 1.5rem;
}

.blog-card-category {
	margin: 0 0 0.5rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--startaste-color-accent-dark);
}

.blog-card-title {
	margin: 0 0 0.6rem;
	font-family: var(--startaste-font-heading);
	font-size: 1.15rem;
	line-height: 1.35;
}

.blog-card-title a {
	color: var(--startaste-color-text);
	text-decoration: none;
}

.blog-card-title a:hover {
	color: var(--startaste-color-accent);
}

.blog-card-excerpt {
	margin: 0 0 1rem;
	font-size: 0.92rem;
	line-height: 1.6;
	color: #555;
}

.blog-card-meta {
	margin: auto 0 0;
	font-size: 0.82rem;
	color: #888;
}

@media screen and (max-width: 75em) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 48em) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

.blog-pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 3.5rem;
}

.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	border-radius: 999px;
	border: 1.5px solid #e5ddd3;
	color: var(--startaste-color-text);
	font-size: 0.9rem;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-pagination .page-numbers:hover {
	border-color: var(--startaste-color-accent);
	color: var(--startaste-color-accent-dark);
}

.blog-pagination .page-numbers.current {
	background: var(--startaste-color-accent);
	border-color: var(--startaste-color-accent);
	color: #fff;
}

.blog-pagination .page-numbers.dots {
	border: none;
}

/* Single blog post
--------------------------------------------- */
.single-post {
	padding-top: 4rem;
	padding-bottom: 5rem;
}

.single-post-meta {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 1.25rem;
	font-size: 0.85rem;
	color: #888;
}

.single-post-category {
	color: var(--startaste-color-accent-dark);
	font-weight: 600;
	text-decoration: none;
}

.single-post-title {
	margin: 0 0 2.5rem;
	text-align: center;
	font-family: var(--startaste-font-heading);
	font-size: clamp(1.9rem, 4vw, 2.6rem);
	line-height: 1.25;
}

.single-post-thumbnail {
	margin-bottom: 2.5rem;
	border-radius: 20px;
	overflow: hidden;
}

.single-post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.single-post-content {
	font-size: 1.08rem;
	line-height: 1.8;
	color: #333;
}

.single-post-content p {
	margin: 0 0 1.5rem;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
	font-family: var(--startaste-font-heading);
	margin: 2.5rem 0 1rem;
}

.single-post-content blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.75rem;
	border-left: 3px solid var(--startaste-color-accent);
	background: var(--startaste-color-bg-soft);
	font-style: italic;
	color: #555;
}

.single-post-content hr {
	margin: 2.5rem 0;
	border: none;
	border-top: 1px solid #e5ddd3;
}

.single-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

.single-post-content ul,
.single-post-content ol {
	margin: 0 0 1.5rem;
	padding-left: 1.5rem;
}

.single-post .post-navigation {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e5ddd3;
}

.single-post .post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.single-post .post-navigation a {
	color: var(--startaste-color-accent-dark);
	text-decoration: none;
	font-size: 0.95rem;
}

.single-post .post-navigation a:hover {
	color: var(--startaste-color-accent);
}
