@import url('https://fonts.googleapis.com/css2?family=Martel:wght@400;600;800&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400&display=swap');

.ade-exp-section {
	--ade-maroon: #8c2a34;
	--ade-gold: #a1782c;
	--ade-ink: #2a2419;
	--ade-cream: #fdf6e8;
	padding: 3rem 1.25rem;
	background: linear-gradient(180deg, #fffaf0, var(--ade-cream));
	box-sizing: border-box;
}

.ade-exp-section * {
	box-sizing: border-box;
}

.ade-exp-head {
	max-width: 640px;
	margin: 0 auto 2rem;
	text-align: center;
}

.ade-exp-kicker {
	font-family: 'Martel', Georgia, serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ade-gold);
	margin-bottom: 0.4rem;
}

.ade-exp-title {
	font-family: 'Martel', Georgia, serif;
	font-weight: 800;
	font-size: clamp(1.5rem, 4vw, 2.3rem);
	color: var(--ade-maroon);
	margin: 0 0 0.6rem;
	line-height: 1.25;
}

.ade-exp-subtitle {
	font-family: 'Newsreader', Georgia, serif;
	font-style: italic;
	font-size: 1.05rem;
	color: var(--ade-ink);
	opacity: 0.75;
	margin: 0;
}

.ade-exp-shelf-wrap {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
}

.ade-exp-swipe-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-family: 'Newsreader', Georgia, serif;
	font-style: italic;
	font-size: 0.82rem;
	color: var(--ade-gold);
	margin: 0 0 0.75rem;
	opacity: 1;
	max-height: 2rem;
	transition: opacity 0.35s ease, max-height 0.35s ease, margin 0.35s ease;
}

.ade-exp-swipe-hint svg {
	width: 1rem;
	height: 1rem;
	animation: ade-exp-swipe-nudge 1.4s ease-in-out infinite;
}

.ade-exp-shelf-wrap.is-nudged .ade-exp-swipe-hint {
	opacity: 0;
	max-height: 0;
	margin: 0;
	pointer-events: none;
}

@keyframes ade-exp-swipe-nudge {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(6px);
	}
}

.ade-exp-shelf-wrap::before,
.ade-exp-shelf-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 1.5rem;
	width: 2.75rem;
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.ade-exp-shelf-wrap::before {
	left: 0;
	background: linear-gradient(90deg, var(--ade-cream), rgba(253, 246, 232, 0));
}

.ade-exp-shelf-wrap::after {
	right: 0;
	background: linear-gradient(270deg, var(--ade-cream), rgba(253, 246, 232, 0));
}

.ade-exp-shelf-wrap:not(.is-start)::before {
	opacity: 1;
}

.ade-exp-shelf-wrap:not(.is-end)::after {
	opacity: 1;
}

.ade-exp-shelf {
	display: flex;
	gap: 1.25rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 0.5rem 0.25rem 1.5rem;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x;
	list-style: none;
	margin: 0;
}

.ade-exp-shelf::-webkit-scrollbar {
	display: none;
}

.ade-exp-card {
	flex: 0 0 260px;
	scroll-snap-align: start;
	background: #fff;
	border-radius: 1.1rem;
	overflow: hidden;
	box-shadow: 0 6px 22px rgba(140, 42, 52, 0.1);
	border: 1px solid #eee0c4;
	display: flex;
	flex-direction: column;
	text-decoration: none !important;
	color: inherit;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	touch-action: pan-x;
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
}

.ade-exp-card:hover,
.ade-exp-card:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(140, 42, 52, 0.18);
}

.ade-exp-card-media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f1e9d3;
}

.ade-exp-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.ade-exp-card:hover .ade-exp-card-media img {
	transform: scale(1.06);
}

.ade-exp-quote-badge {
	position: absolute;
	left: 1rem;
	bottom: -1rem;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ade-maroon), var(--ade-gold));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.ade-exp-quote-badge svg {
	width: 1.05rem;
	height: 1.05rem;
	fill: #fff;
}

.ade-exp-card-body {
	padding: 1.7rem 1.25rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	flex: 1;
}

.ade-exp-card-title {
	font-family: 'Martel', Georgia, serif;
	font-weight: 600;
	font-size: 1.02rem;
	color: var(--ade-ink);
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ade-exp-card-excerpt {
	font-family: 'Newsreader', Georgia, serif;
	font-style: italic;
	font-size: 0.9rem;
	line-height: 1.62;
	color: #584f3d;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.ade-exp-card-link {
	margin-top: 0.3rem;
	font-family: 'Martel', Georgia, serif;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--ade-maroon);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.ade-exp-card-link .arrow {
	transition: transform 0.2s ease;
}

.ade-exp-card:hover .ade-exp-card-link .arrow {
	transform: translateX(4px);
}

.ade-exp-nav-btn {
	display: none;
	position: absolute;
	top: 38%;
	transform: translateY(-50%);
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	border: 1px solid #eee0c4;
	background: #fff;
	color: var(--ade-maroon);
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(140, 42, 52, 0.25);
	z-index: 5;
}

.ade-exp-nav-btn svg {
	width: 1.1rem;
	height: 1.1rem;
}

.ade-exp-nav-btn:hover {
	background: var(--ade-maroon);
	color: #fff;
}

.ade-exp-nav-prev {
	left: 0.5rem;
}

.ade-exp-nav-next {
	right: 0.5rem;
}

.ade-exp-viewall-wrap {
	text-align: center;
	margin-top: 0.75rem;
}

.ade-exp-viewall {
	display: inline-block;
	padding: 0.75rem 1.9rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--ade-maroon), var(--ade-gold));
	color: #fff !important;
	font-family: 'Martel', Georgia, serif;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
	text-decoration: none !important;
	box-shadow: 0 6px 18px rgba(140, 42, 52, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ade-exp-viewall:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(140, 42, 52, 0.32);
}

/* ------------------------------------------------------------------ */
/* [devotees_experience_whatsapp] — share button                       */
/* ------------------------------------------------------------------ */

.ade-exp-whatsapp-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.75rem 1.6rem;
	border-radius: 999px;
	background: #25d366;
	color: #fff !important;
	font-family: 'Martel', Georgia, serif;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.01em;
	text-decoration: none !important;
	box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ade-exp-whatsapp-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
	color: #fff !important;
}

.ade-exp-whatsapp-btn svg {
	width: 1.2rem;
	height: 1.2rem;
	fill: #fff;
	flex-shrink: 0;
}

@media (min-width: 780px) {
	.ade-exp-card {
		flex-basis: 300px;
	}

	.ade-exp-nav-btn {
		display: flex;
	}

	.ade-exp-swipe-hint {
		display: none;
	}

	.ade-exp-shelf-wrap::before,
	.ade-exp-shelf-wrap::after {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ade-exp-card,
	.ade-exp-card-media img,
	.ade-exp-card-link .arrow,
	.ade-exp-viewall {
		transition: none;
	}

	.ade-exp-swipe-hint svg {
		animation: none;
	}
}

/* ------------------------------------------------------------------ */
/* [devotees_experiences_featured] — "Latest News" style               */
/* ------------------------------------------------------------------ */

.ade-exp-featured-section {
	--ade-maroon: #8c2a34;
	--ade-gold: #a1782c;
	--ade-ink: #2a2419;
	--ade-cream: #fdf6e8;
	max-width: 640px;
	margin: 0 auto;
	padding: 2rem 1.25rem;
	background: linear-gradient(180deg, #fffaf0, var(--ade-cream));
	box-sizing: border-box;
}

.ade-exp-featured-section * {
	box-sizing: border-box;
}

.ade-exp-featured-main {
	display: block;
	text-decoration: none !important;
	color: inherit;
	border-radius: 1rem;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 6px 22px rgba(140, 42, 52, 0.1);
	border: 1px solid #eee0c4;
	margin-bottom: 1.5rem;
}

.ade-exp-featured-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f1e9d3;
}

.ade-exp-featured-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ade-exp-featured-badge {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	background: var(--ade-maroon);
	color: #fff;
	font-family: 'Martel', Georgia, serif;
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.35rem 0.75rem;
	border-radius: 0.3rem;
}

.ade-exp-featured-body {
	display: block;
	padding: 1.4rem 1.5rem 1.6rem;
}

.ade-exp-featured-title {
	display: block;
	font-family: 'Martel', Georgia, serif;
	font-weight: 800;
	font-style: italic;
	font-size: 1.5rem;
	line-height: 1.3;
	color: var(--ade-maroon);
	margin-bottom: 0.6rem;
}

.ade-exp-featured-main:hover .ade-exp-featured-title {
	text-decoration: underline;
}

.ade-exp-featured-excerpt {
	display: block;
	font-family: 'Newsreader', Georgia, serif;
	font-size: 1rem;
	line-height: 1.65;
	color: #584f3d;
}

.ade-exp-featured-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ade-exp-featured-list li {
	padding: 0.85rem 0;
	border-top: 1px solid #ecdfc0;
}

.ade-exp-featured-list li:first-child {
	border-top: none;
}

.ade-exp-featured-list-title {
	display: block;
	font-family: 'Martel', Georgia, serif;
	font-weight: 700;
	font-style: italic;
	font-size: 1rem;
	line-height: 1.4;
	color: var(--ade-maroon);
	text-decoration: none !important;
	margin-bottom: 0.3rem;
}

.ade-exp-featured-list-title::before {
	content: '\276F';
	display: inline-block;
	color: var(--ade-gold);
	margin-right: 0.5rem;
	font-size: 0.8em;
}

.ade-exp-featured-list-title:hover {
	text-decoration: underline !important;
}

.ade-exp-featured-list-excerpt {
	display: block;
	font-family: 'Newsreader', Georgia, serif;
	font-size: 0.88rem;
	line-height: 1.55;
	color: #6b6250;
	padding-left: 1.4rem;
}

/* ------------------------------------------------------------------ */
/* [devotees_experiences_links] — plain link list                     */
/* ------------------------------------------------------------------ */

.ade-exp-links-section {
	--ade-maroon: #8c2a34;
	--ade-gold: #a1782c;
	--ade-ink: #2a2419;
	--ade-cream: #fdf6e8;
	max-width: 420px;
	padding: 1.5rem 1.5rem 1.75rem;
	background: linear-gradient(180deg, #fffaf0, var(--ade-cream));
	box-sizing: border-box;
}

.ade-exp-links-section * {
	box-sizing: border-box;
}

.ade-exp-links-head {
	margin-bottom: 0.75rem;
}

.ade-exp-links-kicker {
	font-family: 'Martel', Georgia, serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ade-gold);
	margin-bottom: 0.2rem;
}

.ade-exp-links-title {
	font-family: 'Martel', Georgia, serif;
	font-weight: 800;
	font-size: 1.15rem;
	color: var(--ade-maroon);
	margin: 0;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--ade-maroon);
}

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

.ade-exp-links-list li {
	border-top: 1px solid #ecdfc0;
}

.ade-exp-links-list li:first-child {
	border-top: none;
}

.ade-exp-links-list a {
	display: block;
	padding: 0.7rem 0;
	font-family: 'Martel', Georgia, serif;
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1.4;
	color: var(--ade-ink);
	text-decoration: none !important;
}

.ade-exp-links-list a:hover {
	color: var(--ade-maroon);
	text-decoration: underline !important;
}
