/* ─────────────────────────────────────────────────────────────────────────────
   ATHERIA — EXPERIENCE DETAILS (premium list)
   Title + intro, then the meta fields as refined label / value rows separated by
   hairline dividers. Globals-First tokens; overridable from the Style tab.
   ───────────────────────────────────────────────────────────────────────────── */

/* Entrance-animation guard (Elementor adds .elementor-invisible → hidden) */
.elementor-widget-atheria_experience_details.elementor-invisible {
	visibility: visible !important;
}

.ath-exp-details {
	--ath-expd-divider: var(--ath-arctic-mist, #ACBCBF);
	display: block;
	padding-top: 4rem;
	padding-bottom: 4rem;
}
.ath-exp-details__inner { display: block; }

/* Heading block */
.ath-exp-details__title {
	font-family: var(--ath-font-heading, serif);
	color: var(--ath-arctic-navy, #243C4C);
	font-size: clamp(2rem, 1.4rem + 2.6vw, 3.25rem);
	line-height: 1.05;
	margin: 0;
}
.ath-exp-details__desc {
	font-family: var(--ath-font-body, sans-serif);
	color: var(--ath-reflection, #698696);
	font-size: 1.0625rem;
	line-height: 1.65;
	margin: 1.25rem 0 0;
	max-width: 68ch;
}

/* The premium list */
.ath-exp-details__list {
	margin-top: 2.75rem;
	display: flex;
	flex-direction: column;
}
.ath-exp-details__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 2rem;
	padding: 1.35rem 0;
	border-top: 1px solid var(--ath-expd-divider);
}
.ath-exp-details__row:last-child { border-bottom: 1px solid var(--ath-expd-divider); }

.ath-exp-details__label {
	flex: 0 0 auto;
	font-family: var(--ath-font-eyebrow, sans-serif);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ath-arctic-blue, #5289AD);
}
.ath-exp-details__value {
	flex: 1 1 auto;
	text-align: right;
	font-family: var(--ath-font-body, sans-serif);
	font-size: 1.0625rem;
	line-height: 1.5;
	color: var(--ath-arctic-navy, #243C4C);
}

/* Notes row: allow it to breathe as a longer text */
.ath-exp-details__row--notes { align-items: flex-start; }
.ath-exp-details__row--notes .ath-exp-details__value { font-style: italic; }

/* Responsive: stack label above value on small screens */
@media (max-width: 640px) {
	.ath-exp-details__row {
		flex-direction: column;
		gap: 0.4rem;
	}
	.ath-exp-details__value { text-align: left; }
}
