.fe-hidden {
	display: none !important;
}
.fe-journal {
	max-width: 100%;
	margin: 0 auto;
}
.fe-journal-body {
	color: rgb(0,0,0,.85);
}
.fe-journal-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	/* max-width: 560px; */
	margin-bottom: 2rem;
}

.fe-journal-form label {
	display: flex;
	flex-direction: column;
	font-size: 0.85rem;
	/* color: #6b6455; */
	gap: 0.25rem;
}

.fe-journal-form select,
.fe-journal-form input[type="text"],
.fe-journal-form textarea {
	padding: 0.5rem;
	border-radius: 8px;
	border: 1px solid #ddd6c7;
}

.fe-journal-form button,
.fe-journal-step-actions button,
.fe-journal-closing-button {
	padding: 0.6rem 1.4rem;
	border-radius: 999px;
	border: none;
	background: #2f3b33;
	color: #fff;
	cursor: pointer;
	font-size: 0.95rem;
}

.fe-journal-closing-secondary {
	background: transparent;
	border: 1px solid #2f3b33;
	color: #2f3b33;
}

.fe-journal-entry-card {
	padding: 1.25rem;
	border-radius: 12px;
	background: #f6f4ef;
	margin-bottom: 1rem;
}

.fe-journal-entry-meta {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 0.5rem;
}

.fe-journal-tag {
	font-size: 0.72rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	background: #e4ded0;
}

.fe-journal-date {
	font-size: 0.8rem;
	color: #8a8272;
	margin-left: auto;
}

.fe-journal-empty {
	font-style: italic;
	color: #8a8272;
}

.fe-journal-stats {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin: .5rem 0;
}

.fe-journal-stat {
	text-align: center;
	width: 30%;
}

.fe-journal-stat strong {
	display: block;
	font-size: 1.6rem;
}

.fe-journal-stat span {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	/* color: #8a8272; */
}

/* LEFT */
.fe-journal-stat-left {
	text-align: center;
	width: 42%;
}

.fe-journal-stat-left strong {
	display: block;
	font-size: 1.6rem;
}

.fe-journal-stat-left span {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	/* color: #8a8272; */
}
/* RIGHT */
.fe-journal-stat-right {
	text-align: center;
	width: 20%;
}

.fe-journal-stat-right strong {
	display: block;
	font-size: 1.6rem;
}

.fe-journal-stat-right span {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	/* color: #8a8272; */
}

.fe-journal-locked {
	text-align: center;
	padding: 2rem;
	/* color: #6b6455; */
}

/* Journal Steps */

.fe-journal-steps {
	max-width: 100%;
	margin: 0 auto;
}

.fe-journal-step {
	padding: 1.5rem;
	/* border-radius: 12px; */
	/* background: #f6f4ef; */
}

.fe-journal-step-ask {
	font-style: italic;
	color: #6b6455;
}

.fe-journal-video {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 0.75rem 0;
}

.fe-journal-video-missing {
	font-style: italic;
	color: #8a8272;
}

.fe-journal-step-text {
	width: 100%;
	min-height: 80px;
	padding: 0.6rem;
	border-radius: 8px;
	border: 1px solid #ddd6c7;
	margin-bottom: 0.75rem;
}

.fe-journal-step-radios {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.fe-journal-step-radios label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
}

.fe-journal-step-actions {
	display: flex;
	gap: 0.75rem;
}

.fe-journal-step-skip {
	background: transparent;
	border: 1px solid #2f3b33;
	color: #2f3b33;
}

.fe-journal-step-status,
.fe-journal-steps-status {
	display: block;
	margin-top: 0.5rem;
	color: yellowgreen;
	font-size: 0.85rem;
}

/* Gauges */

.fe-journal-gauge-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.fe-journal-gauge {
	text-align: center;
}

.fe-journal-gauge-svg {
	width: 100%;
	max-width: 200px;
}

.fe-journal-gauge-arc {
	fill: none;
	stroke-width: 18;
	stroke-linecap: round;
}

.fe-journal-gauge-arc-awakening {
	stroke: #c9a876;
}

.fe-journal-gauge-arc-integrating {
	stroke: #8a9a7e;
}

.fe-journal-gauge-arc-flowing {
	stroke: #2f3b33;
}

.fe-journal-gauge-needle {
	stroke: #3a3a3a;
	stroke-width: 3;
	stroke-linecap: round;
}

.fe-journal-gauge-hub {
	fill: #3a3a3a;
}

.fe-journal-gauge-expression {
	font-weight: 600;
	margin: 0.5rem 0 0.15rem;
}

.fe-journal-gauge-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #6b6455;
	margin: 0;
}

.fe-journal-gauge-zone-awakening {
	color: #a5824f;
}

.fe-journal-gauge-zone-integrating {
	color: #6c7a61;
}

.fe-journal-gauge-zone-flowing {
	color: yellowgreen;
}

.fe-journal-gauge-empty .fe-journal-gauge-label {
	font-style: italic;
	color: #8a8272;
}

.fe-journal-steps-closing {
	text-align: center;
	margin: 1.5rem 0;
}

.fe-journal-steps-email {
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 0 auto 0.75rem;
	padding: 0.5rem;
	border-radius: 8px;
	border: 1px solid #ddd6c7;
}

.fe-journal-closing-button {
	margin: 0.25rem;
}
