/*
 Theme Name:   Astra Child
 Theme URI:    https://azlaundry.my.id/
 Description:  Astra Child Theme for AZ Laundry Bekasi
 Author:       OpenAI Codex
 Author URI:   https://openai.com/
 Template:     astra
 Version:      1.2.0
 Text Domain:  astra-child
*/

:root {
	--az-navy: #17138a;
	--az-blue: #2467ea;
	--az-blue-soft: #edf4ff;
	--az-green: #15a152;
	--az-green-dark: #0f7d40;
	--az-ink: #15264b;
	--az-text: #4d5d7a;
	--az-line: rgba(36, 103, 234, 0.12);
	--az-surface: #f7f9fe;
	--az-white: #ffffff;
	--az-shadow-lg: 0 32px 80px rgba(23, 19, 138, 0.12);
	--az-shadow-md: 0 18px 40px rgba(21, 38, 75, 0.08);
	--az-radius-xl: 34px;
	--az-radius-lg: 24px;
	--az-radius-md: 18px;
	--font-heading: "Outfit", sans-serif;
	--font-body: "Inter", sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	background: linear-gradient(180deg, #f7f9fe 0%, #ffffff 22%, #f8fbff 100%);
	color: var(--az-text);
	font-family: var(--font-body);
	line-height: 1.7;
}

body.home .site-header,
body.home .site-footer {
	display: none;
}

body.blog .site-header,
body.single-post .site-header,
body.page:not(.home) .site-header {
	display: none;
}

body.az-wide-public-layout .site-content,
body.az-wide-public-layout .site-content .ast-container,
body.az-wide-public-layout #primary {
	max-width: 100%;
	width: 100%;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	color: var(--az-ink);
	font-family: var(--font-heading);
	line-height: 1.08;
}

p {
	margin: 0;
}

a {
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.site-content .ast-container {
	max-width: 100%;
	padding: 0;
}

.entry-content[ast-blocks-layout]>* {
	max-width: none;
}

.az-homepage {
	overflow: clip;
}

.az-container {
	width: min(1360px, calc(100% - 28px));
	margin: 0 auto;
}

.az-section {
	padding: 72px 0;
}

.az-surface {
	background: linear-gradient(180deg, #fbfdff 0%, #f1f6ff 100%);
}

.az-nav {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 0;
	background: rgba(23, 19, 138, 0.92);
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 40px rgba(10, 8, 76, 0.18);
}

.az-nav-shell {
	display: block;
}

.az-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.az-nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.az-brand {
	display: inline-flex;
	flex-direction: column;
	color: var(--az-white);
}

.az-brand-title {
	font-family: var(--font-heading);
	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1;
}

.az-brand-tagline {
	margin-top: 4px;
	font-size: 0.9rem;
	color: #9fe2ff;
}

.az-nav-menu {
	display: none;
	align-items: center;
	gap: 18px;
}

.az-nav-item {
	position: relative;
}

.az-nav-item-head {
	display: flex;
	align-items: center;
}

.az-nav-link {
	display: inline-flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

.az-nav-desktop-item > .az-nav-item-head {
	gap: 8px;
}

.az-nav-submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: rgba(255, 255, 255, 0.72);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.az-nav-submenu-caret {
	display: block;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-1px) rotate(45deg);
	transition: transform 0.2s ease;
}

.az-nav-submenu-toggle:hover,
.az-nav-submenu-toggle:focus-visible,
.az-nav-item.is-submenu-open > .az-nav-item-head .az-nav-submenu-toggle {
	background: rgba(255, 255, 255, 0.12);
	color: var(--az-white);
}

.az-nav-item.is-submenu-open > .az-nav-item-head .az-nav-submenu-caret {
	transform: translateY(2px) rotate(-135deg);
}

.az-nav-menu .az-nav-link {
	min-height: 42px;
}

.az-nav-menu .az-nav-item.is-current > .az-nav-item-head > .az-nav-link {
	color: var(--az-white);
}

.az-nav-menu .az-nav-item.is-current-path > .az-nav-item-head > .az-nav-link {
	color: rgba(255, 255, 255, 0.98);
}

.az-nav-submenu {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	display: grid;
	gap: 6px;
	min-width: 220px;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	background: rgba(12, 16, 92, 0.96);
	box-shadow: 0 24px 44px rgba(10, 8, 76, 0.22);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.az-nav-submenu .az-nav-item-head {
	justify-content: space-between;
	gap: 10px;
}

.az-nav-submenu .az-nav-link {
	width: 100%;
	padding: 10px 12px;
	border-radius: 16px;
	font-weight: 600;
}

.az-nav-submenu .az-nav-link:hover,
.az-nav-submenu .az-nav-link:focus-visible,
.az-nav-submenu .az-nav-item.is-current-path > .az-nav-item-head > .az-nav-link,
.az-nav-submenu .az-nav-item.is-current > .az-nav-item-head > .az-nav-link {
	background: rgba(255, 255, 255, 0.1);
	color: var(--az-white);
}

.az-nav-desktop-item:hover > .az-nav-submenu,
.az-nav-desktop-item:focus-within > .az-nav-submenu,
.az-nav-desktop-item.is-submenu-open > .az-nav-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.az-nav-submenu .az-nav-submenu {
	top: 0;
	left: calc(100% + 10px);
}

.az-nav-menu a {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

.az-nav-menu a:hover,
.az-nav-menu a:focus-visible,
.az-nav-link:hover,
.az-nav-link:focus-visible {
	color: var(--az-white);
}

.az-nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 20px;
	border-radius: 999px;
	background: var(--az-green);
	color: var(--az-white);
	font-weight: 700;
	box-shadow: 0 14px 28px rgba(21, 161, 82, 0.28);
}

.az-nav-cta:hover,
.az-nav-cta:focus-visible {
	background: var(--az-green-dark);
	color: var(--az-white);
}

.az-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--az-white);
	cursor: pointer;
}

.az-nav-toggle-line {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.az-nav.is-open .az-nav-toggle-line:nth-child(2) {
	transform: translateY(7px) rotate(45deg);
}

.az-nav.is-open .az-nav-toggle-line:nth-child(3) {
	opacity: 0;
}

.az-nav.is-open .az-nav-toggle-line:nth-child(4) {
	transform: translateY(-7px) rotate(-45deg);
}

.az-nav-mobile {
	display: grid;
	gap: 14px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.az-nav-mobile[hidden] {
	display: none !important;
}

.az-nav-mobile-links {
	display: grid;
	gap: 10px;
}

.az-nav-mobile-item > .az-nav-item-head {
	gap: 10px;
	padding: 6px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
}

.az-nav-mobile-links .az-nav-link {
	flex: 1 1 auto;
	padding: 12px 10px;
	color: var(--az-white);
	font-weight: 700;
}

.az-nav-mobile-links .az-nav-submenu-toggle {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.08);
}

.az-nav-mobile-submenu {
	display: grid;
	gap: 8px;
	margin-top: 8px;
	padding-left: 16px;
}

.az-nav-mobile-submenu[hidden] {
	display: none !important;
}

.az-nav-mobile-submenu .az-nav-item-head {
	padding: 4px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
}

.az-nav-mobile-submenu .az-nav-link {
	font-size: 0.96rem;
	font-weight: 600;
}

.az-nav-mobile-item.is-current > .az-nav-item-head,
.az-nav-mobile-item.is-current-path > .az-nav-item-head,
.az-nav-mobile-submenu .az-nav-item.is-current-path > .az-nav-item-head,
.az-nav-mobile-submenu .az-nav-item.is-current > .az-nav-item-head {
	background: rgba(255, 255, 255, 0.14);
}

.az-nav-mobile-cta {
	width: 100%;
}


.az-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--az-blue);
}

.az-eyebrow::before {
	content: "";
	width: 32px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.az-eyebrow-light {
	color: rgba(255, 255, 255, 0.9);
}

.az-section-heading {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.az-section-heading h2 {
	font-size: clamp(2rem, 4.2vw, 3.35rem);
}

.az-hero {
	position: relative;
	padding: 48px 0 82px;
	background:
		radial-gradient(circle at left center, rgba(36, 103, 234, 0.14), transparent 34%),
		radial-gradient(circle at right top, rgba(21, 161, 82, 0.12), transparent 24%),
		linear-gradient(135deg, #f2f7ff 0%, #ffffff 54%, #f7fbff 100%);
}

.az-hero::before {
	content: "";
	position: absolute;
	left: -8%;
	bottom: -160px;
	width: 480px;
	height: 240px;
	background: rgba(36, 103, 234, 0.08);
	border-radius: 50%;
	filter: blur(6px);
}

.az-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 40px;
	align-items: center;
}

.az-hero-copy {
	max-width: 700px;
}

.az-hero-copy h1 {
	font-size: clamp(2.5rem, 8vw, 5rem);
	letter-spacing: -0.04em;
}

.az-hero-lead {
	margin-top: 18px;
	font-size: clamp(1.05rem, 2.2vw, 1.55rem);
	color: var(--az-ink);
}

.az-hero-lead p + p,
.az-rich-copy p + p,
.az-rich-copy ul + p,
.az-rich-copy ol + p,
.az-rich-copy p + ul,
.az-rich-copy p + ol,
.az-rich-copy li + li {
	margin-top: 0.8em;
}

.az-rich-copy ul,
.az-rich-copy ol {
	margin: 0.8em 0 0;
	padding-left: 1.2em;
}

.az-rich-copy strong {
	color: var(--az-ink);
}

.az-hero-actions {
	margin-top: 28px;
}

.az-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}

.az-btn:hover,
.az-btn:focus-visible {
	transform: translateY(-2px);
}

.az-btn-primary {
	background: var(--az-green);
	color: var(--az-white);
	box-shadow: 0 18px 30px rgba(21, 161, 82, 0.24);
}

.az-btn-primary:hover,
.az-btn-primary:focus-visible {
	background: var(--az-green-dark);
	color: var(--az-white);
}

.az-btn-light {
	background: var(--az-white);
	color: var(--az-navy);
	box-shadow: 0 16px 26px rgba(7, 16, 72, 0.16);
}

.az-trust-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
}

.az-stars {
	color: #ffb400;
	font-size: 1.35rem;
	letter-spacing: 0.08em;
}

.az-trust-copy {
	color: var(--az-ink);
	font-size: 1.05rem;
	font-weight: 600;
}

.az-urgency {
	margin-top: 14px;
	color: #da5e25;
	font-weight: 700;
}

.az-hero-media-wrap {
	position: relative;
}

.az-hero-media {
	padding: 14px;
	border-radius: 32px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 255, 0.96));
	box-shadow: var(--az-shadow-lg);
}

.az-hero-media img {
	border-radius: 28px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.az-hero-badge {
	position: absolute;
	right: -8px;
	bottom: 18px;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	max-width: min(92%, 370px);
	padding: 14px 16px 14px 20px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 22px 42px rgba(21, 38, 75, 0.12);
	color: var(--az-ink);
	font-weight: 600;
}

.az-hero-badge strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--az-green);
	color: var(--az-white);
	font-size: 1.05rem;
}

.az-services-grid,
.az-pricing-grid,
.az-benefit-grid,
.az-testimonial-grid {
	display: grid;
	gap: 20px;
}

.az-service-card,
.az-price-card,
.az-benefit-card,
.az-testimonial-card,
.az-contact-card {
	position: relative;
	padding: 24px;
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius-lg);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: var(--az-shadow-md);
}

.az-service-card:hover,
.az-benefit-card:hover,
.az-testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 54px rgba(21, 38, 75, 0.12);
}

.az-service-card,
.az-benefit-card,
.az-testimonial-card {
	transition: transform 0.24s ease, box-shadow 0.24s ease;
	height: 100%;
}

.az-service-card-featured,
.az-price-card-featured {
	background: linear-gradient(180deg, #1f66ea 0%, #1954c5 100%);
	color: rgba(255, 255, 255, 0.92);
	border-color: transparent;
}

.az-service-card-featured h3,
.az-price-card-featured h3,
.az-service-card-featured p,
.az-price-card-featured p {
	color: var(--az-white);
}

.az-service-icon,
.az-benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 20px;
	background: linear-gradient(135deg, #5aa8ff 0%, #2b6ef5 100%);
	color: var(--az-white);
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 800;
	box-shadow: 0 12px 24px rgba(36, 103, 234, 0.18);
}

.az-service-card-featured .az-service-icon {
	background: rgba(255, 255, 255, 0.16);
	box-shadow: none;
}

.az-service-card h3,
.az-price-card h3,
.az-benefit-card h3,
.az-testimonial-card strong {
	margin-top: 18px;
}

.az-service-card h3,
.az-price-card h3,
.az-benefit-card h3 {
	font-size: 1.45rem;
}

.az-service-pill,
.az-price-badge {
	display: inline-flex;
	margin-top: 16px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	color: var(--az-white);
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.az-price-card {
	overflow: hidden;
}

.az-price-value {
	margin: 14px 0 10px;
	color: var(--az-blue);
	font-size: 1.5rem;
	font-weight: 800;
}

.az-price-card-featured .az-price-value {
	color: #d8ecff;
}

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

.az-benefit-card {
	text-align: left;
}

.az-benefit-icon {
	background: linear-gradient(135deg, #eef6ff 0%, #dbeafe 100%);
	color: var(--az-blue);
	box-shadow: none;
	font-size: 1.35rem;
}

.az-testimonial-card p {
	margin-top: 12px;
	color: var(--az-ink);
}

.az-testimonial-card strong {
	display: block;
	color: var(--az-blue);
	font-size: 1rem;
}

.az-cta-band {
	background: linear-gradient(135deg, #1b168d 0%, #2459d8 52%, #1e73f3 100%);
	color: rgba(255, 255, 255, 0.92);
}

.az-cta-band h2 {
	color: var(--az-white);
	font-size: clamp(2rem, 4vw, 3.4rem);
}

.az-cta-band p {
	margin-top: 12px;
}

.az-cta-layout,
.az-contact-shell {
	display: grid;
	gap: 24px;
	align-items: center;
}

.az-contact-card {
	display: grid;
	gap: 12px;
	align-content: start;
}

.az-contact-card strong {
	color: var(--az-ink);
	font-size: 1.35rem;
}

.az-contact-card span {
	color: var(--az-text);
}

.az-sticky-wa {
	position: fixed;
	right: 18px;
	bottom: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: var(--az-green);
	color: var(--az-white);
	font-size: 1rem;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 18px 34px rgba(21, 161, 82, 0.34);
	z-index: 1100;
}

.az-sticky-wa:hover,
.az-sticky-wa:focus-visible {
	background: var(--az-green-dark);
	color: var(--az-white);
	transform: scale(1.04);
}

@media (min-width: 768px) {
	.az-container {
		width: min(1240px, calc(100% - 48px));
	}

	.az-nav-menu {
		display: inline-flex;
	}

	.az-nav-mobile {
		display: none !important;
	}

	.az-hero {
		padding-top: 74px;
		padding-bottom: 106px;
	}

	.az-hero-grid,
	.az-cta-layout,
	.az-contact-shell {
		grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
	}

	.az-services-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.az-pricing-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.az-benefit-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.az-testimonial-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.az-service-card-featured,
	.az-price-card-featured {
		transform: translateY(-10px);
	}
}

@media (min-width: 1200px) {
	.az-section {
		padding: 92px 0;
	}

	.az-nav-inner {
		gap: 28px;
	}

	.az-nav-menu {
		gap: 28px;
	}

	.az-hero {
		padding-top: 86px;
		padding-bottom: 116px;
	}

	.az-hero-grid {
		grid-template-columns: minmax(0, 1.12fr) minmax(520px, 0.88fr);
		gap: 54px;
	}

	.az-hero-copy h1 {
		max-width: 12ch;
		font-size: clamp(3.4rem, 4.8vw, 5.2rem);
	}

	.az-hero-media {
		padding: 18px;
	}

	.az-services-grid,
	.az-pricing-grid,
	.az-benefit-grid,
	.az-testimonial-grid {
		gap: 24px;
	}

	.az-service-card,
	.az-price-card,
	.az-benefit-card,
	.az-testimonial-card,
	.az-contact-card {
		padding: 28px;
	}

	.az-cta-layout,
	.az-contact-shell {
		grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
	}
}

@media (max-width: 767px) {
	.az-nav-inner {
		gap: 12px;
	}

	.az-btn {
		width: 100%;
	}

	.az-nav-actions {
		margin-left: auto;
	}

	.az-nav-actions .az-nav-cta {
		display: none;
	}

	.az-nav-toggle {
		display: inline-flex;
	}

	.az-hero-badge {
		position: relative;
		right: auto;
		bottom: auto;
		margin-top: 18px;
		max-width: 100%;
	}

	.az-benefit-grid {
		grid-template-columns: 1fr;
	}
}

.az-blog-hero,
.az-single-hero {
	padding: 36px 0 40px;
	background:
		radial-gradient(circle at left top, rgba(36, 103, 234, 0.12), transparent 28%),
		linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.az-blog-hero h1,
.az-single-hero h1 {
	font-size: clamp(2.1rem, 5vw, 4.25rem);
	line-height: 1.06;
	letter-spacing: -0.03em;
}

.az-blog-hero-copy,
.az-single-intro {
	max-width: 760px;
	margin-top: 16px;
	font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.az-blog-layout {
	display: grid;
	gap: 28px;
	align-items: start;
}

.az-blog-page .az-container,
.az-single-post-page .az-container {
	width: min(1360px, calc(100% - 28px));
}

.az-blog-page,
.az-single-post-page {
	overflow: clip;
}

.az-single-post-page .az-container,
.az-blog-page .az-container,
body.az-wide-public-layout .az-container {
	max-width: 1360px;
}

.single-post .site-content>.ast-container,
.blog .site-content>.ast-container {
	display: block;
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.az-blog-page>.az-nav,
.az-single-post-page>.az-nav {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.az-blog-main {
	min-width: 0;
}

.az-post-grid {
	display: grid;
	gap: 22px;
}

.az-post-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius-lg);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--az-shadow-md);
}

.az-post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 54px rgba(21, 38, 75, 0.1);
}

.az-post-thumb img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.az-post-body {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 22px;
}

.az-post-meta,
.az-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	color: var(--az-blue);
	font-size: 0.9rem;
	font-weight: 700;
}

.az-post-meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.az-post-meta span:last-child a,
.az-single-meta span:last-child a {
	color: inherit;
}

.az-post-title {
	margin-top: 12px;
	font-size: clamp(1.28rem, 1.6vw, 1.55rem);
	line-height: 1.2;
}

.az-post-title a {
	color: var(--az-ink);
}

.az-post-excerpt {
	margin-top: 12px;
	flex: 1 1 auto;
}

.az-post-link {
	display: inline-flex;
	margin-top: 16px;
	color: var(--az-green);
	font-weight: 800;
}

.az-sidebar-card,
.az-empty-state,
.az-post-cta-box,
.az-inline-post-cta {
	padding: 24px;
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius-lg);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--az-shadow-md);
}

.az-ad-shell {
	margin-top: 24px;
	padding: 22px;
	border: 1px solid rgba(36, 103, 234, 0.14);
	border-radius: var(--az-radius-xl);
	background:
		radial-gradient(circle at top right, rgba(36, 103, 234, 0.06), transparent 28%),
		linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
	box-shadow: 0 20px 42px rgba(21, 38, 75, 0.08);
	overflow: hidden;
}

.az-ad-shell-meta {
	margin-bottom: 16px;
}

.az-ad-shell-kicker {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(36, 103, 234, 0.08);
	color: var(--az-blue);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.az-ad-shell h2 {
	margin-top: 12px;
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.az-ad-shell p {
	margin-top: 8px;
	color: var(--az-text);
}

.az-ad-unit-wrap {
	padding: 14px;
	border-radius: 22px;
	background: rgba(246, 249, 255, 0.84);
}

.az-ad-shell .adsbygoogle {
	min-height: 120px;
}

.az-feed-ad-card {
	grid-column: 1 / -1;
}

.az-feed-ad-card .az-ad-shell,
.az-blog-bottom-ad,
.az-content-ad-shell,
.az-home-inline-ad,
.az-home-multiplex-ad,
.az-sidebar-ad-shell {
	margin-top: 0;
}

.az-blog-sidebar {
	display: grid;
	gap: 20px;
}

.az-sidebar-card+.az-sidebar-card {
	margin-top: 0;
}

.az-sidebar-card h2,
.az-empty-state h2,
.az-post-cta-box h2,
.az-inline-post-cta h2 {
	font-size: 1.35rem;
}

.az-sidebar-card ul {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.az-sidebar-card li+li {
	margin-top: 12px;
}

.az-sidebar-card a {
	color: var(--az-ink);
}

.az-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
	color: var(--az-text);
	font-size: 0.92rem;
	font-weight: 700;
}

.az-breadcrumb a {
	color: var(--az-blue);
}

.az-sidebar-card-list li a {
	display: block;
	padding: 12px 14px;
	border: 1px solid var(--az-line);
	border-radius: 14px;
	background: rgba(246, 249, 255, 0.72);
	font-weight: 600;
	line-height: 1.4;
}

.az-sidebar-cta p,
.az-post-cta-box p,
.az-inline-post-cta p,
.az-empty-state p {
	margin-top: 10px;
}

.az-sidebar-cta .az-btn,
.az-post-cta-box .az-btn,
.az-inline-post-cta .az-btn,
.az-empty-state .az-btn {
	margin-top: 16px;
}

.az-pagination {
	margin-top: 28px;
}

.az-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.az-pagination .page-numbers a,
.az-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid var(--az-line);
	border-radius: 999px;
	background: var(--az-white);
	color: var(--az-ink);
	font-weight: 700;
}

.az-pagination .page-numbers .current {
	background: var(--az-blue);
	color: var(--az-white);
	border-color: var(--az-blue);
}

.az-single-thumb {
	margin-top: 26px;
	overflow: hidden;
	border-radius: var(--az-radius-xl);
	box-shadow: var(--az-shadow-lg);
}

.az-single-thumb img {
	width: 100%;
	max-height: 540px;
	object-fit: cover;
}

.az-single-content {
	padding: 30px;
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius-xl);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: var(--az-shadow-md);
	min-width: 0;
	overflow-wrap: anywhere;
}

.az-single-content> :first-child {
	margin-top: 0;
}

.az-single-content>*,
.az-single-content .wp-block-group>*,
.az-single-content .wp-block-columns,
.az-single-content .wp-block-column,
.az-single-content .wp-block-image,
.az-single-content .wp-block-heading,
.az-single-content p,
.az-single-content ul,
.az-single-content ol {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.az-single-content h2,
.az-single-content h3 {
	margin-top: 28px;
	margin-bottom: 12px;
	line-height: 1.18;
}

.az-single-content p,
.az-single-content ul,
.az-single-content ol {
	margin-bottom: 16px;
}

.az-single-content ul,
.az-single-content ol {
	padding-left: 22px;
}

.az-single-content img {
	border-radius: 18px;
}

.az-single-content iframe,
.az-single-content embed,
.az-single-content object,
.az-single-content video,
.az-single-content table,
.az-single-content pre,
.az-single-content code,
.az-single-content .wp-block-table,
.az-single-content .wp-block-embed,
.az-single-content .wp-block-image img,
.az-single-content .wp-block-cover,
.az-single-content .wp-block-gallery,
.az-single-content .wp-block-columns {
	max-width: 100%;
}

.az-single-content .wp-block-table,
.az-single-content table {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.az-single-content table {
	border-collapse: collapse;
}

.az-single-content th,
.az-single-content td {
	word-break: break-word;
}

.az-single-content pre {
	overflow-x: auto;
	white-space: pre-wrap;
	word-break: break-word;
}

.az-single-content iframe,
.az-single-content embed,
.az-single-content object,
.az-single-content video {
	width: 100%;
}

.az-single-content .wp-block-embed__wrapper,
.az-single-content .wp-block-video,
.az-single-content .wp-block-cover,
.az-single-content .wp-block-gallery {
	overflow: hidden;
	border-radius: 18px;
}

.az-single-content .wp-block-columns {
	gap: 20px;
}

.az-post-cta-box {
	margin-top: 24px;
}

.az-share-box {
	margin-top: 24px;
	padding: 24px;
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius-xl);
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
	box-shadow: var(--az-shadow-md);
}

.az-share-box-head h2 {
	font-size: clamp(1.35rem, 1.8vw, 1.75rem);
}

.az-share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.az-share-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border: 1px solid var(--az-line);
	border-radius: 999px;
	background: #fff;
	color: var(--az-ink);
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(21, 38, 75, 0.06);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.az-share-link:hover,
.az-share-link:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(21, 89, 168, 0.22);
	box-shadow: 0 14px 28px rgba(21, 38, 75, 0.1);
}

.az-share-link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, #1559a8 0%, #0f7b6c 100%);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.az-share-link-copy .az-share-link-icon {
	background: linear-gradient(135deg, #d64d79 0%, #f59d3d 100%);
}

.az-share-toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translate(-50%, 18px);
	padding: 12px 16px;
	border-radius: 999px;
	background: rgba(16, 24, 40, 0.94);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	box-shadow: 0 18px 38px rgba(16, 24, 40, 0.22);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease;
	z-index: 99999;
}

.az-share-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.az-firebase-prompt {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1200;
	width: min(420px, calc(100vw - 24px));
	padding: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(113, 190, 255, 0.22), transparent 38%),
		linear-gradient(145deg, rgba(14, 21, 66, 0.96), rgba(31, 66, 151, 0.92));
	box-shadow: 0 28px 80px rgba(10, 15, 63, 0.34);
	backdrop-filter: blur(18px);
	color: rgba(255, 255, 255, 0.86);
	opacity: 0;
	transform: translateY(18px) scale(0.98);
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.az-firebase-prompt.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.az-firebase-prompt-glow {
	position: absolute;
	top: -80px;
	right: -50px;
	width: 220px;
	height: 220px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(63, 179, 255, 0.35), transparent 62%);
	pointer-events: none;
}

.az-firebase-prompt-signal {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	padding: 6px 12px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.az-firebase-prompt-signal-dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: #6cf0ae;
	box-shadow: 0 0 0 6px rgba(108, 240, 174, 0.12);
}

.az-firebase-prompt-badge {
	position: relative;
	margin-bottom: 10px;
	color: rgba(194, 225, 255, 0.94);
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.az-firebase-prompt-title {
	position: relative;
	margin-bottom: 10px;
	color: #fff;
	font-size: clamp(1.35rem, 3vw, 1.9rem);
	letter-spacing: -0.03em;
}

.az-firebase-prompt-body {
	position: relative;
	margin-bottom: 18px;
	color: rgba(235, 243, 255, 0.84);
	font-size: 0.98rem;
	line-height: 1.7;
}

.az-firebase-prompt-actions {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.az-firebase-prompt-allow,
.az-firebase-prompt-later {
	appearance: none;
	border: 0;
	border-radius: 999px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.az-firebase-prompt-allow {
	padding: 14px 20px;
	background: linear-gradient(135deg, #ffffff 0%, #d9edff 100%);
	box-shadow: 0 18px 32px rgba(158, 210, 255, 0.22);
	color: #103a8d;
}

.az-firebase-prompt-later {
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.92);
}

.az-firebase-prompt-allow:hover,
.az-firebase-prompt-allow:focus-visible,
.az-firebase-prompt-later:hover,
.az-firebase-prompt-later:focus-visible {
	transform: translateY(-1px);
}

.az-firebase-prompt-status {
	position: relative;
	min-height: 1.5em;
	margin-top: 14px;
	color: rgba(219, 236, 255, 0.88);
	font-size: 0.93rem;
}

.az-firebase-prompt[data-status="loading"] .az-firebase-prompt-status {
	color: #d8efff;
}

.az-firebase-prompt[data-status="success"] .az-firebase-prompt-status {
	color: #89f0bd;
}

.az-firebase-prompt[data-status="error"] .az-firebase-prompt-status {
	color: #ffd4dc;
}

.az-firebase-toast {
	position: fixed;
	left: 20px;
	bottom: 22px;
	z-index: 1190;
	display: flex;
	align-items: center;
	gap: 14px;
	width: min(430px, calc(100vw - 24px));
	padding: 14px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 24px 64px rgba(21, 38, 75, 0.18);
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.az-firebase-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.az-firebase-toast-thumb {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	overflow: hidden;
	border-radius: 18px;
	background: var(--az-blue-soft);
}

.az-firebase-toast-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.az-firebase-toast-content {
	flex: 1 1 auto;
	min-width: 0;
}

.az-firebase-toast-title {
	display: block;
	margin-bottom: 4px;
	color: var(--az-ink);
	font-size: 1rem;
	line-height: 1.3;
}

.az-firebase-toast-body {
	margin-bottom: 8px;
	color: var(--az-text);
	font-size: 0.92rem;
	line-height: 1.55;
}

.az-firebase-toast-link {
	color: var(--az-blue);
	font-size: 0.9rem;
	font-weight: 700;
}

.az-inline-post-cta {
	margin-top: 28px;
	background: linear-gradient(180deg, #f5faff 0%, #ffffff 100%);
}

.az-single-hero-grid {
	display: grid;
	gap: 28px;
	align-items: center;
}

.az-single-highlights {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.az-single-highlight {
	padding: 16px 18px;
	border: 1px solid var(--az-line);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 36px rgba(21, 38, 75, 0.06);
}

.az-single-highlight strong,
.az-cluster-card strong,
.az-related-card h3 {
	display: block;
	color: var(--az-ink);
}

.az-single-highlight span,
.az-cluster-card span {
	display: block;
	margin-top: 6px;
}

.az-single-hero-media {
	min-width: 0;
}

.az-single-hero .az-single-thumb {
	margin-top: 0;
}

.az-single-toc,
.az-single-link-cluster,
.az-related-posts {
	padding: 24px;
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius-xl);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: var(--az-shadow-md);
}

.az-home-ad-section {
	padding-top: 16px;
}

.az-content-ad-shell-tail {
	margin-top: 24px;
}

.az-sidebar-ad-shell .az-ad-unit-wrap {
	padding: 10px;
}

.az-ad-shell-multiplex .adsbygoogle {
	min-height: 240px;
}

.az-single-toc {
	margin-bottom: 24px;
}

.az-single-toc-head h2,
.az-single-cluster-head h2,
.az-related-posts h2 {
	font-size: clamp(1.5rem, 2vw, 2rem);
}

.az-single-toc-links {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.az-single-toc-link {
	display: block;
	padding: 14px 16px;
	border-radius: 18px;
	background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
	color: var(--az-ink);
	font-weight: 700;
}

.az-single-toc-level-3 {
	margin-left: 16px;
	color: var(--az-text);
	font-weight: 600;
}

.az-post-cta-box-strong {
	background:
		radial-gradient(circle at right top, rgba(21, 161, 82, 0.12), transparent 30%),
		linear-gradient(180deg, #f4fbf7 0%, #ffffff 100%);
}

.az-cta-inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 18px;
}

.az-single-link-cluster,
.az-related-posts {
	margin-top: 24px;
}

.az-comments-wrap {
	margin-top: 24px;
}

.az-comments-wrap .comments-area {
	padding: 24px;
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius-xl);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: var(--az-shadow-md);
}

.az-comments-wrap .comments-title,
.az-comments-wrap .comment-reply-title {
	color: var(--az-ink);
	font-size: clamp(1.45rem, 2vw, 1.95rem);
}

.az-comments-wrap .comment-list,
.az-comments-wrap .children,
.az-comments-wrap .ast-comment-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.az-comments-wrap .ast-comment-list {
	margin-top: 22px;
}

.az-comments-wrap .ast-comment-list > li,
.az-comments-wrap .children > li {
	position: relative;
}

.az-comments-wrap .ast-comment-list > li + li,
.az-comments-wrap .children > li + li {
	margin-top: 18px;
}

.az-comments-wrap .ast-comment-list > li + li::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 22px;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(36, 103, 234, 0.16), rgba(36, 103, 234, 0));
}

.az-comments-wrap .comment-body {
	padding: 20px;
	border: 1px solid var(--az-line);
	border-radius: 22px;
	background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
	box-shadow: 0 14px 30px rgba(21, 38, 75, 0.05);
}

.az-comments-wrap .children {
	position: relative;
	margin-top: 16px;
	margin-left: 34px;
	padding: 8px 0 0 34px;
	border-left: 0;
}

.az-comments-wrap .children::before {
	content: "";
	position: absolute;
	left: 12px;
	top: 0;
	bottom: 14px;
	width: 2px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(36, 103, 234, 0.18), rgba(36, 103, 234, 0.04));
}

.az-comments-wrap .children > li::before {
	content: "";
	position: absolute;
	left: -22px;
	top: 34px;
	width: 22px;
	height: 2px;
	border-radius: 999px;
	background: rgba(36, 103, 234, 0.18);
}

.az-comments-wrap .children > li::after {
	content: "";
	position: absolute;
	left: -28px;
	top: 29px;
	width: 12px;
	height: 12px;
	border: 2px solid rgba(36, 103, 234, 0.22);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 5px rgba(36, 103, 234, 0.06);
}

.az-comments-wrap .children .comment-body {
	border-color: rgba(36, 103, 234, 0.18);
	background:
		radial-gradient(circle at top right, rgba(36, 103, 234, 0.06), transparent 26%),
		linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
	box-shadow: 0 12px 24px rgba(21, 38, 75, 0.04);
}

.az-comments-wrap .depth-2 > .comment-body,
.az-comments-wrap .depth-3 > .comment-body,
.az-comments-wrap .depth-4 > .comment-body,
.az-comments-wrap .depth-5 > .comment-body {
	position: relative;
}

.az-comments-wrap .depth-2 > .comment-body::before,
.az-comments-wrap .depth-3 > .comment-body::before,
.az-comments-wrap .depth-4 > .comment-body::before,
.az-comments-wrap .depth-5 > .comment-body::before {
	content: "Balasan";
	position: absolute;
	top: -11px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	background: #eaf3ff;
	color: var(--az-blue);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 8px 18px rgba(36, 103, 234, 0.12);
}

.az-comments-wrap .comment-meta,
.az-comments-wrap .comment-author {
	color: var(--az-ink);
}

.az-comments-wrap .ast-comment {
	padding: 0;
	border-top: 0;
}

.az-comments-wrap .ast-comment-info {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.az-comments-wrap .ast-comment-avatar-wrap {
	position: relative;
	width: 64px;
	min-width: 64px;
	margin: 0;
}

.az-comments-wrap .ast-comment-data-wrap,
.az-comments-wrap .ast-comment-meta-wrap {
	min-width: 0;
	width: 100%;
}

.az-comments-wrap .ast-comment-avatar-wrap img,
.az-comments-wrap .avatar {
	width: 64px;
	height: 64px;
	border: 3px solid rgba(36, 103, 234, 0.08);
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 12px 24px rgba(21, 38, 75, 0.08);
}

.az-comments-wrap .ast-comment-meta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 12px 18px;
	padding: 0;
	margin: 0;
}

.az-comments-wrap .ast-comment-cite-wrap {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	width: 100%;
}

.az-comments-wrap .fn,
.az-comments-wrap .fn a {
	display: block;
	color: var(--az-ink);
	font-size: clamp(1.05rem, 1.3vw, 1.3rem);
	font-weight: 800;
	text-decoration: none;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.az-comments-wrap .ast-comment-time {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(36, 103, 234, 0.08);
	color: var(--az-blue);
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	justify-self: end;
}

.az-comments-wrap .ast-comment-time::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.65;
}

.az-comments-wrap .comment-metadata,
.az-comments-wrap .comment-awaiting-moderation,
.az-comments-wrap .logged-in-as,
.az-comments-wrap .comment-notes,
.az-comments-wrap .form-allowed-tags {
	color: var(--az-text);
	font-size: 0.95rem;
}

.az-comments-wrap .comment-content {
	margin-top: 12px;
	padding: 16px 18px;
	border-radius: 18px;
	background: rgba(247, 250, 255, 0.8);
	color: var(--az-ink);
	line-height: 1.75;
}

.az-comments-wrap .comment-content p:last-child {
	margin-bottom: 0;
}

.az-comments-wrap .reply,
.az-comments-wrap .comment-form-cookies-consent {
	margin-top: 14px;
}

.az-comments-wrap .comment-reply-link,
.az-comments-wrap .comment-edit-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	background: rgba(36, 103, 234, 0.08);
	color: var(--az-blue);
	font-weight: 700;
	transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.az-comments-wrap .comment-reply-link:hover,
.az-comments-wrap .comment-reply-link:focus-visible,
.az-comments-wrap .comment-edit-link:hover,
.az-comments-wrap .comment-edit-link:focus-visible {
	transform: translateY(-1px);
	background: rgba(36, 103, 234, 0.14);
	box-shadow: 0 10px 20px rgba(36, 103, 234, 0.1);
}

.az-comments-wrap .comment-respond {
	margin-top: 26px;
}

.az-comments-wrap .comment-form {
	display: grid;
	gap: 14px;
	margin-top: 18px;
}

.az-comments-wrap .comment-form label {
	display: block;
	margin-bottom: 8px;
	color: var(--az-ink);
	font-weight: 700;
}

.az-comments-wrap .comment-form input:not([type="checkbox"]),
.az-comments-wrap .comment-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(36, 103, 234, 0.16);
	border-radius: 18px;
	background: #fff;
	color: var(--az-ink);
	box-shadow: inset 0 1px 2px rgba(21, 38, 75, 0.03);
}

.az-comments-wrap .comment-form input:focus,
.az-comments-wrap .comment-form textarea:focus {
	outline: none;
	border-color: rgba(36, 103, 234, 0.42);
	box-shadow: 0 0 0 4px rgba(36, 103, 234, 0.12);
}

.az-comments-wrap .comment-form textarea {
	min-height: 180px;
	resize: vertical;
}

.az-comments-wrap .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.az-comments-wrap .comment-form-cookies-consent label {
	margin-bottom: 0;
	font-weight: 600;
}

.az-comments-wrap .form-submit {
	margin: 0;
}

.az-comments-wrap .az-comment-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background: var(--az-green);
	color: var(--az-white);
	font-weight: 800;
	box-shadow: 0 18px 30px rgba(21, 161, 82, 0.24);
	cursor: pointer;
}

.az-comments-wrap .az-comment-submit:hover,
.az-comments-wrap .az-comment-submit:focus-visible {
	background: var(--az-green-dark);
}

.az-single-cluster-head p,
.az-related-posts p.az-eyebrow {
	margin-bottom: 10px;
}

.az-single-cluster-grid,
.az-related-grid {
	display: grid;
	gap: 18px;
	margin-top: 18px;
}

.az-cluster-card,
.az-related-card {
	border: 1px solid var(--az-line);
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
	box-shadow: 0 18px 34px rgba(21, 38, 75, 0.06);
}

.az-cluster-card {
	padding: 20px;
}

.az-related-card {
	overflow: hidden;
}

.az-cluster-card:hover,
.az-related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 42px rgba(21, 38, 75, 0.12);
}

.az-related-thumb img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.az-related-body {
	padding: 18px 20px 20px;
}

.az-related-body h3 {
	margin-top: 12px;
	font-size: 1.2rem;
	line-height: 1.24;
}

.az-related-body h3 a {
	color: var(--az-ink);
}

.az-related-body p {
	margin-top: 10px;
}

.az-sidebar-card-emphasis {
	background:
		radial-gradient(circle at right top, rgba(36, 103, 234, 0.08), transparent 34%),
		linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.az-sidebar-fact-list {
	margin: 16px 0 0;
	padding-left: 18px;
}

.az-sidebar-fact-list li + li {
	margin-top: 10px;
}

@media (min-width: 768px) {

	.az-blog-page .az-container,
	.az-single-post-page .az-container {
		width: min(1360px, calc(100% - 48px));
	}

	.az-blog-layout {
		grid-template-columns: minmax(0, 1.7fr) minmax(280px, 340px);
		gap: 32px;
	}

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

	.az-single-hero-grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
		gap: 32px;
	}

	.az-single-highlights,
	.az-single-cluster-grid,
	.az-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.az-blog-sidebar {
		position: sticky;
		top: 110px;
	}
}

@media (min-width: 1100px) {

	.az-blog-hero,
	.az-single-hero {
		padding: 48px 0 44px;
	}

	.az-blog-layout {
		grid-template-columns: minmax(0, 1.85fr) minmax(300px, 340px);
		gap: 42px;
	}

	.az-single-post-page .az-single-layout {
		grid-template-columns: minmax(0, 1.8fr) minmax(280px, 320px);
		gap: 42px;
	}

	.az-single-hero-grid {
		grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
		gap: 40px;
	}

	.az-post-grid {
		gap: 24px;
	}

	.az-single-post-page .az-blog-main,
	.single-post .az-single-post-page .az-blog-main {
		width: 100%;
		max-width: none;
	}

	.az-single-content,
	.single-post .az-single-post-page .az-single-content {
		width: 100%;
		max-width: 100%;
		padding: 36px;
		border: 1px solid var(--az-line);
		border-radius: var(--az-radius-xl);
		background: rgba(255, 255, 255, 0.97);
		box-shadow: var(--az-shadow-md);
		font-size: 1.1rem;
	}

	.az-single-content h2 {
		font-size: clamp(1.9rem, 2vw, 2.45rem);
	}

	.az-single-content h3 {
		font-size: clamp(1.35rem, 1.4vw, 1.7rem);
	}

	.az-post-cta-box {
		width: 100%;
		max-width: 100%;
		padding: 32px 36px;
	}

	.az-single-sidebar {
		position: sticky;
		top: 110px;
		grid-template-columns: 1fr;
		align-items: start;
	}

	.az-single-intro {
		max-width: 980px;
	}

	.az-single-post-page .az-blog-main {
		min-width: 0;
	}

	.az-single-post-page .az-blog-main>* {
		margin-left: 0;
		margin-right: 0;
	}

	.az-single-thumb img {
		max-height: 620px;
	}

	.az-single-post-page .az-sidebar-card {
		padding: 22px;
	}
}

@media (min-width: 1400px) {
	.az-single-content {
		padding: 40px;
		font-size: 1.14rem;
	}

	.az-post-cta-box {
		padding: 36px 40px;
	}

	.az-single-sidebar {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {

	.az-blog-hero,
	.az-single-hero {
		padding: 40px 0 24px;
	}

	.az-blog-layout {
		gap: 22px;
	}

	.az-post-body,
	.az-sidebar-card,
	.az-empty-state,
	.az-post-cta-box,
	.az-inline-post-cta,
	.az-ad-shell,
	.az-single-content,
	.az-single-toc,
	.az-single-link-cluster,
	.az-related-posts,
	.az-comments-wrap .comments-area {
		padding: 20px;
	}

	.az-post-title {
		font-size: 1.22rem;
	}

	.az-single-content h2 {
		font-size: 1.5rem;
	}

	.az-single-content h3 {
		font-size: 1.18rem;
	}

	.az-single-content .wp-block-columns {
		display: block;
	}

	.az-single-content .wp-block-column + .wp-block-column {
		margin-top: 18px;
	}

	.az-firebase-prompt,
	.az-firebase-toast {
		right: 12px;
		left: 12px;
		width: auto;
	}

	.az-firebase-toast {
		bottom: 12px;
	}

	.az-pagination ul.page-numbers {
		gap: 8px;
	}

	.az-single-sidebar {
		grid-template-columns: 1fr;
	}

	.az-breadcrumb {
		margin-bottom: 18px;
	}

	.az-single-toc-level-3 {
		margin-left: 8px;
	}

	.az-comments-wrap .children {
		margin-left: 10px;
		padding-left: 24px;
	}

	.az-comments-wrap .children::before {
		left: 6px;
	}

	.az-comments-wrap .children > li::before {
		left: -16px;
		width: 16px;
	}

	.az-comments-wrap .children > li::after {
		left: -22px;
	}

	.az-comments-wrap .ast-comment-info {
		grid-template-columns: 52px minmax(0, 1fr);
		gap: 14px;
	}

	.az-comments-wrap .ast-comment-avatar-wrap {
		width: 52px;
		min-width: 52px;
	}

	.az-comments-wrap .ast-comment-avatar-wrap img,
	.az-comments-wrap .avatar {
		width: 52px;
		height: 52px;
	}

	.az-comments-wrap .ast-comment-meta {
		grid-template-columns: minmax(0, 1fr);
		align-items: flex-start;
	}

	.az-comments-wrap .ast-comment-time {
		font-size: 0.8rem;
		white-space: normal;
		justify-self: start;
	}

	.az-comments-wrap .comment-content {
		padding: 14px 15px;
	}

	.az-cta-inline-actions {
		flex-direction: column;
	}
}

/* Hide frontend upsell/analytics badges injected by SEO plugins when visible. */
.rank-math-stat,
.rank-math-stats,
.rank-math-pro-badge,
[class*="rank-math"][class*="stats"],
[class*="rank-math"][class*="pro-version"] {
	display: none !important;
}

/*--------------------------------------------------------------
# Login Page Customization
--------------------------------------------------------------*/
body.login {
	background: linear-gradient(135deg, var(--az-blue-soft) 0%, #ffffff 100%) !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	font-family: var(--font-body);
}

.login h1 {
	width: 100%;
	text-align: center;
}

.login h1 a {
	background-image: none !important;
	text-indent: 0 !important;
	width: auto !important;
	height: auto !important;
	font-family: var(--font-heading);
	font-size: 3.5rem !important;
	font-weight: 800;
	color: var(--az-navy) !important;
	margin-bottom: 20px !important;
	line-height: 1.2 !important;
	display: inline-block !important;
}

.login form {
	border-radius: var(--az-radius-lg) !important;
	box-shadow: var(--az-shadow-md) !important;
	border: 1px solid var(--az-line) !important;
	padding: 32px !important;
	margin-top: 0 !important;
	background: var(--az-white) !important;
}

.login label {
	font-weight: 600 !important;
	color: var(--az-ink) !important;
	margin-bottom: 8px !important;
	display: block;
}

.login .input {
	border-radius: 12px !important;
	border: 1px solid var(--az-line) !important;
	padding: 10px 14px !important;
	background: var(--az-surface) !important;
	font-size: 1rem !important;
}

.login .button-primary {
	background: var(--az-green) !important;
	border: none !important;
	border-radius: 999px !important;
	box-shadow: 0 14px 28px rgba(21, 161, 82, 0.2) !important;
	font-weight: 800 !important;
	height: auto !important;
	padding: 10px 30px !important;
	text-shadow: none !important;
	width: 100% !important;
	margin-top: 10px !important;
	font-size: 1rem !important;
}

.login .button-primary:hover {
	background: var(--az-green-dark) !important;
	transform: translateY(-2px);
}

.login .az-login-top-right {
	position: fixed;
	top: 24px;
	right: 24px;
	font-family: var(--font-heading);
	font-weight: 800;
	color: var(--az-navy);
	font-size: 1.1rem;
	background: var(--az-white);
	padding: 10px 24px;
	border-radius: 999px;
	box-shadow: var(--az-shadow-md);
	z-index: 9999;
	border: 1px solid var(--az-line);
}

.login #nav,
.login #backtoblog {
	text-align: center !important;
	margin-top: 20px !important;
}

.login #nav a,
.login #backtoblog a {
	color: var(--az-blue) !important;
	font-weight: 600 !important;
}
