/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Description: Child theme for Hello Elementor with custom single post template
Version: 1.0
*/


#clients-accordion img{
	border-radius: 0 !important;
}
/* ── Single Post Template ── */

.single-post .site-main {
    background-color: white !important;
}

.single .site-main {
	max-width: none;
	padding: 0;
	margin: 0;
}

.aah-single-post {
	display: flex;
	gap: 64px;
	border-radius: 24px;
	padding: 120px 60px;
	margin: 4px auto 0;
	background-color: var(--e-global-color-faa0add);
	box-sizing: border-box;
}

/* ── Left Column: Post Content ── */

.aah-post-content {
	flex: 0 0 calc(70% - 32px);
	min-width: 0;
}

.aah-post-title {
	margin: 0 0 8px;
}

.aah-post-date {
	margin: 0 0 24px;
	opacity: 0.7;
	font-size: 0.9em;
}

.aah-post-image {
	margin-bottom: 24px;
}

.aah-post-image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

.aah-post-description {
	margin-bottom: -24px;
}

/* ── Right Column: Recent Posts ── */

.aah-post-sidebar {
	flex: 0 0 calc(30% - 32px);
	min-width: 0;
}

.aah-recent-posts {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.aah-recent-title {
	margin: 0;
}

.aah-recent-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.aah-recent-item {
	display: block;
	padding: 24px;
	margin-bottom: 16px;
	text-decoration: none;
	color: inherit;
	border-radius: 8px;
	transition: background 0.2s ease;
}

.aah-recent-item:hover {
	background: rgba(0, 0, 0, 0.04);
}

.aah-recent-item-title {
	margin: 0 0 16px;
	font-size: 1em;
	color: var(--e-global-color-primary);
}

.aah-recent-item-date {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85em;
	color: var(--e-global-color-91bc788);
}

.aah-recent-item-date svg {
	flex-shrink: 0;
}

/* ── Fade-In-Up Animation ── */

.aah-fade-up {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.aah-fade-up.aah-visible {
	opacity: 1;
	transform: translateY(0);
}

.aah-delay {
	transition-delay: 250ms;
}

/* ── Tablet ── */

@media (max-width: 1024px) {
	.aah-single-post {
		gap: 48px;
		flex-wrap: wrap;
		padding: 60px 20px;
	}

	.aah-post-content,
	.aah-post-sidebar {
		flex: 0 0 100%;
	}

	.aah-post-image img {
		height: 400px;
	}

	.aah-recent-posts {
		gap: 24px;
	}
}

/* ── Mobile ── */

@media (max-width: 767px) {
	.aah-post-image img {
		height: 350px;
	}
}

