/**
 * ENRFO Dashboard — application shell and design system.
 *
 * Brand colours are injected as CSS custom properties from the plugin
 * settings (see Assets::css_variables), so this file never hardcodes them.
 */

:root {
	/* ENRFO brand palette — overridden from the plugin settings at runtime. */
	--enrfo-primary: #042b5c;    /* Deep Navy Blue  */
	--enrfo-secondary: #0a5898;  /* Power Blue      */
	--enrfo-accent: #0d9de1;     /* Electric Cyan   */
	--enrfo-teal: #165a74;       /* Deep Teal       */
	--enrfo-grid: #009b8c;       /* Teal Green      */
	--enrfo-success: #28b463;    /* Energy Green    */
	--enrfo-background: #ffffff; /* White           */

	--enrfo-primary-soft: #042b5c14;
	--enrfo-accent-soft: #0d9de11f;
	--enrfo-teal-soft: #165a741f;
	--enrfo-grid-soft: #009b8c1f;
	--enrfo-success-soft: #28b4631f;

	--enrfo-bg: #f3f6fa;
	--enrfo-surface: #ffffff;
	--enrfo-border: #e1e8f0;
	--enrfo-border-strong: #c9d5e3;
	--enrfo-text: #12253d;
	--enrfo-muted: #56677e;
	--enrfo-sidebar-text: #e8f1fa;
	--enrfo-sidebar-muted: #9fb6ce;
	--enrfo-danger: #d0342c;
	--enrfo-warning: #b7791f;

	--enrfo-radius: 12px;
	--enrfo-radius-sm: 8px;
	--enrfo-shadow: 0 1px 2px rgba(16, 32, 55, .06), 0 6px 20px rgba(16, 32, 55, .06);
	--enrfo-shadow-sm: 0 1px 2px rgba(16, 32, 55, .08);
	--enrfo-sidebar-w: 264px;
	--enrfo-sidebar-compact: 76px;
	--enrfo-header-h: 64px;
	--enrfo-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------------------------------------------------------------- base */

body.enrfo-app {
	margin: 0;
	background: var(--enrfo-bg);
	color: var(--enrfo-text);
	font-family: var(--enrfo-font);
	font-size: var(--enrfo-font-size, 15px);
	font-weight: var(--enrfo-font-weight, 400);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	color-scheme: light dark;
}

/* The drawer locks the page behind it so the background does not scroll. */
body.enrfo-no-scroll { overflow: hidden; }

body.enrfo-app *,
body.enrfo-app *::before,
body.enrfo-app *::after { box-sizing: border-box; }

/* Content links only — navigation, buttons and cards set their own colour. */
.enrfo-app a { color: var(--enrfo-link, var(--enrfo-secondary)); text-decoration: none; }
.enrfo-app a:hover { text-decoration: underline; }
.enrfo-app a.enrfo-btn:hover,
.enrfo-app .enrfo-sidebar a:hover,
.enrfo-app .enrfo-header a:hover,
.enrfo-app .enrfo-dropdown__panel a:hover { text-decoration: none; }
.enrfo-app h1, .enrfo-app h2, .enrfo-app h3 {
	margin: 0 0 .35em;
	line-height: 1.25;
	color: var(--enrfo-primary);
	font-weight: var(--enrfo-heading-weight, 700);
}
.enrfo-app h1 { font-size: calc(1.5rem * var(--enrfo-heading-scale, 1)); }
.enrfo-app h2 { font-size: calc(1.2rem * var(--enrfo-heading-scale, 1)); }
.enrfo-app h3 { font-size: calc(1.05rem * var(--enrfo-heading-scale, 1)); }
.enrfo-app p { margin: 0 0 1em; }
.enrfo-app img { max-width: 100%; height: auto; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.enrfo-icon { flex: 0 0 auto; vertical-align: middle; }
.enrfo-muted { color: var(--enrfo-muted); }
.enrfo-ok { color: var(--enrfo-success); }
.enrfo-warn { color: var(--enrfo-warning); }

/* --------------------------------------------------------------- shell */

.enrfo-shell {
	display: grid;
	grid-template-columns: var(--enrfo-sidebar-w) minmax(0, 1fr);
	min-height: 100vh;
}

.enrfo-shell[data-compact="true"] { --enrfo-sidebar-w: var(--enrfo-sidebar-compact); }
.enrfo-shell--inline { min-height: 0; border: 1px solid var(--enrfo-border); border-radius: var(--enrfo-radius); overflow: hidden; }

.enrfo-main { display: flex; flex-direction: column; min-width: 0; }

.enrfo-content {
	flex: 1 1 auto;
	padding: 24px 28px 40px;
	max-width: 1440px;
	width: 100%;
	outline: none;
}

.enrfo-footer {
	display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
	padding: 16px 28px 24px;
	color: var(--enrfo-muted); font-size: 13px;
}

/* ------------------------------------------------------------- sidebar */

.enrfo-sidebar {
	position: sticky; top: 0;
	display: flex; flex-direction: column;
	height: 100vh; overflow-y: auto;
	background: linear-gradient(180deg, var(--enrfo-primary) 0%, var(--enrfo-teal) 100%);
	color: var(--enrfo-sidebar-text);
	z-index: 40;
}

/*
 * Colour contract for the sidebar.
 *
 * These selectors are intentionally more specific than the generic
 * `.enrfo-app a` content-link rule, which would otherwise paint navigation
 * links Power Blue on a navy background and make them unreadable.
 */
.enrfo-app .enrfo-sidebar,
.enrfo-app .enrfo-sidebar a,
.enrfo-app .enrfo-sidebar button { color: var(--enrfo-sidebar-text); }
.enrfo-app .enrfo-sidebar a:hover,
.enrfo-app .enrfo-sidebar a:focus-visible { color: #fff; }
.enrfo-app .enrfo-sidebar .enrfo-nav__heading { color: var(--enrfo-sidebar-muted); }
.enrfo-app .enrfo-sidebar .enrfo-nav__link.is-active,
.enrfo-app .enrfo-sidebar .enrfo-nav__link.is-active:hover { color: #fff; }
.enrfo-app .enrfo-sidebar .enrfo-nav__sublink { color: var(--enrfo-sidebar-muted); }
.enrfo-app .enrfo-sidebar .enrfo-nav__sublink:hover { color: #fff; }
.enrfo-app .enrfo-sidebar .enrfo-nav__sublink.is-active { color: var(--enrfo-accent); }

/* Light sidebar variant. */
.enrfo-sidebar-light .enrfo-sidebar {
	background: var(--enrfo-surface);
	border-right: 1px solid var(--enrfo-border);
}
.enrfo-app.enrfo-sidebar-light .enrfo-sidebar,
.enrfo-app.enrfo-sidebar-light .enrfo-sidebar a,
.enrfo-app.enrfo-sidebar-light .enrfo-sidebar button { color: var(--enrfo-primary); }
.enrfo-app.enrfo-sidebar-light .enrfo-sidebar .enrfo-nav__heading { color: var(--enrfo-muted); }
.enrfo-app.enrfo-sidebar-light .enrfo-sidebar .enrfo-nav__sublink { color: var(--enrfo-muted); }
.enrfo-app.enrfo-sidebar-light .enrfo-sidebar .enrfo-nav__link.is-active,
.enrfo-app.enrfo-sidebar-light .enrfo-sidebar .enrfo-nav__link.is-active a { color: #fff; }

.enrfo-sidebar__brand {
	display: flex; align-items: center; justify-content: space-between; gap: 8px;
	padding: 18px 18px 14px;
}

.enrfo-brand { display: flex; align-items: center; gap: 10px; color: inherit; font-weight: 700; letter-spacing: .2px; }
.enrfo-brand:hover { text-decoration: none; }
.enrfo-brand__logo { max-height: 34px; width: auto; }
.enrfo-brand__mark {
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px; border-radius: 9px;
	background: var(--enrfo-accent); color: #fff;
}
.enrfo-brand__mark--lg { width: 46px; height: 46px; border-radius: 12px; }
.enrfo-brand__text { font-size: 17px; }
.enrfo-shell[data-compact="true"] .enrfo-brand__text { display: none; }

.enrfo-sidebar__close { display: none; color: inherit; }

.enrfo-nav { flex: 1 1 auto; padding: 4px 10px 16px; }

.enrfo-nav__heading {
	margin: 18px 10px 6px;
	font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
	color: rgba(255, 255, 255, .45);
}
.enrfo-sidebar-light .enrfo-nav__heading { color: var(--enrfo-muted); }
.enrfo-shell[data-compact="true"] .enrfo-nav__heading { text-align: center; font-size: 0; }
.enrfo-shell[data-compact="true"] .enrfo-nav__heading::after { content: "•"; font-size: 12px; }

.enrfo-nav__list { list-style: none; margin: 0; padding: 0; }
.enrfo-nav__item { position: relative; }

.enrfo-nav__link {
	display: flex; align-items: center; gap: 11px;
	padding: 9px 11px; margin: 2px 0;
	border-radius: var(--enrfo-radius-sm);
	color: inherit; font-size: 14.5px; font-weight: 500;
	transition: background .15s ease, color .15s ease;
}
.enrfo-nav__link:hover { background: rgba(255, 255, 255, .12); text-decoration: none; }
.enrfo-sidebar-light .enrfo-nav__link:hover { background: var(--enrfo-primary-soft); }

.enrfo-nav__link.is-active {
	background: var(--enrfo-secondary);
	box-shadow: inset 3px 0 0 var(--enrfo-accent);
}
.enrfo-nav__link.is-active .enrfo-nav__icon { color: #fff; opacity: 1; }
.enrfo-nav__icon { display: inline-flex; opacity: .95; }
.enrfo-nav__label { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.enrfo-shell[data-compact="true"] .enrfo-nav__label,
.enrfo-shell[data-compact="true"] .enrfo-nav__badge,
.enrfo-shell[data-compact="true"] .enrfo-nav__toggle,
.enrfo-shell[data-compact="true"] .enrfo-nav__sub,
.enrfo-shell[data-compact="true"] .enrfo-sidebar__foot { display: none; }
.enrfo-shell[data-compact="true"] .enrfo-nav__link { justify-content: center; }

.enrfo-nav__badge {
	min-width: 20px; padding: 1px 6px; border-radius: 999px;
	background: var(--enrfo-accent); color: #fff;
	font-size: 11px; font-weight: 700; text-align: center;
}

.enrfo-nav__toggle {
	position: absolute; top: 6px; right: 6px;
	display: inline-flex; align-items: center; justify-content: center;
	width: 28px; height: 28px; padding: 0;
	border: 0; border-radius: 6px; background: transparent; color: inherit; cursor: pointer;
	transition: transform .15s ease;
}
.enrfo-nav__item.is-open > .enrfo-nav__toggle { transform: rotate(180deg); }

.enrfo-nav__sub { list-style: none; margin: 0 0 6px; padding: 0 0 0 34px; display: none; }
.enrfo-nav__item.is-open .enrfo-nav__sub { display: block; }

.enrfo-nav__sublink {
	display: block; padding: 6px 10px; border-radius: 6px;
	color: inherit; opacity: .78; font-size: 13.5px;
}
.enrfo-nav__sublink:hover { opacity: 1; background: rgba(255, 255, 255, .07); text-decoration: none; }
.enrfo-sidebar-light .enrfo-nav__sublink:hover { background: rgba(4, 43, 92, .05); }
.enrfo-nav__sublink.is-active { opacity: 1; color: var(--enrfo-accent); font-weight: 600; }

.enrfo-sidebar__foot { padding: 12px 16px 20px; }
.enrfo-plan {
	display: block; padding: 12px 14px; border-radius: var(--enrfo-radius-sm);
	background: rgba(255, 255, 255, .08); color: inherit;
}
.enrfo-sidebar-light .enrfo-plan { background: var(--enrfo-bg); }
.enrfo-plan:hover { text-decoration: none; background: rgba(255, 255, 255, .13); }
.enrfo-plan__label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; opacity: .6; }
.enrfo-plan__name { display: block; font-weight: 600; }
.enrfo-plan__meta { display: block; font-size: 12px; opacity: .7; }

/* -------------------------------------------------------------- header */

.enrfo-header {
	position: sticky; top: 0; z-index: 30;
	display: flex; align-items: center; gap: 14px;
	min-height: var(--enrfo-header-h);
	padding: 10px 28px;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid var(--enrfo-border);
}

.enrfo-header__title { min-width: 0; flex: 0 1 auto; }
.enrfo-header__title h1 {
	margin: 0; font-size: 19px; font-weight: 650;
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/*
 * The navigation toggle is always on screen. On desktop it collapses the
 * sidebar to icons; below 1100px it opens and closes the drawer.
 */
.enrfo-header__burger { display: inline-flex; }
.enrfo-header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex: 0 0 auto; }

.enrfo-icon-btn {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; padding: 0;
	border: 1px solid transparent; border-radius: 10px;
	background: transparent; color: var(--enrfo-muted); cursor: pointer;
	transition: background .15s ease, color .15s ease;
}
.enrfo-icon-btn:hover { background: var(--enrfo-bg); color: var(--enrfo-primary); }

.enrfo-bell__count {
	position: absolute; top: 4px; right: 4px;
	min-width: 17px; height: 17px; padding: 0 4px;
	border-radius: 999px; background: var(--enrfo-danger); color: #fff;
	font-size: 10.5px; font-weight: 700; line-height: 17px; text-align: center;
}

/*
 * The search field sets its own padding with a higher-specificity selector so
 * the generic form-input rule further down cannot reset the left padding and
 * push the text underneath the magnifier icon.
 */
.enrfo-search { position: relative; flex: 1 1 220px; min-width: 0; max-width: 420px; margin-left: 14px; }

.enrfo-search__icon {
	position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
	display: flex; align-items: center; justify-content: center;
	width: 16px; height: 16px;
	color: var(--enrfo-muted); pointer-events: none; z-index: 1;
}

.enrfo-app .enrfo-search input[type="search"] {
	box-sizing: border-box;
	display: block;
	width: 100%;
	min-width: 0;
	height: 40px;
	min-height: 40px;
	margin: 0;
	padding-block: 0;
	padding-inline: 14px 40px;
	padding-left: 40px;
	padding-right: 14px;
	line-height: 38px;
	border: 1px solid var(--enrfo-border-strong); border-radius: 10px;
	background: var(--enrfo-bg); color: var(--enrfo-text);
	font: inherit; font-size: 14px;
	text-overflow: ellipsis;
	appearance: none; -webkit-appearance: none;
}

.enrfo-app .enrfo-search input[type="search"]::-webkit-search-cancel-button { margin-left: 4px; }
.enrfo-app .enrfo-search input[type="search"]::placeholder { color: var(--enrfo-muted); opacity: 1; }
.enrfo-app .enrfo-search input[type="search"]:focus {
	outline: 2px solid var(--enrfo-accent); outline-offset: 1px;
	border-color: var(--enrfo-accent); background: var(--enrfo-surface);
}

.enrfo-search__results {
	position: absolute; top: calc(100% + 6px); left: 0; right: 0;
	max-height: 340px; overflow-y: auto; padding: 6px;
	background: var(--enrfo-surface); border: 1px solid var(--enrfo-border);
	border-radius: var(--enrfo-radius); box-shadow: var(--enrfo-shadow); z-index: 50;
}
.enrfo-search__results a { display: block; padding: 8px 10px; border-radius: 7px; color: var(--enrfo-text); }
.enrfo-search__results a:hover { background: var(--enrfo-bg); text-decoration: none; }
.enrfo-search__results small { display: block; color: var(--enrfo-muted); font-size: 12px; }

.enrfo-chip {
	display: inline-flex; align-items: center; gap: 6px;
	height: 32px; padding: 0 11px; border-radius: 999px;
	background: var(--enrfo-bg); border: 1px solid var(--enrfo-border);
	color: var(--enrfo-muted); font-size: 12.5px; font-weight: 600;
}
.enrfo-chip:hover { text-decoration: none; border-color: var(--enrfo-border-strong); }
.enrfo-chip--ok { color: var(--enrfo-success); border-color: rgba(40, 180, 99, .35); background: rgba(40, 180, 99, .08); }

.enrfo-avatar { border-radius: 50%; display: block; }
.enrfo-avatar--lg { width: 76px; height: 76px; }
.enrfo-avatar-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 4px 8px 4px 4px; border: 1px solid transparent; border-radius: 999px;
	background: transparent; cursor: pointer; color: var(--enrfo-text); font: inherit;
}
.enrfo-avatar-btn:hover { background: var(--enrfo-bg); }
.enrfo-avatar-btn img { width: 30px; height: 30px; }
.enrfo-avatar-btn__name { font-size: 13.5px; font-weight: 600; }

/* ------------------------------------------------------------ dropdown */

.enrfo-dropdown { position: relative; }
.enrfo-dropdown__panel {
	position: absolute; right: 0; top: calc(100% + 8px);
	min-width: 226px; padding: 6px;
	background: var(--enrfo-surface); border: 1px solid var(--enrfo-border);
	border-radius: var(--enrfo-radius); box-shadow: var(--enrfo-shadow); z-index: 60;
}
.enrfo-dropdown__panel--wide { min-width: 330px; padding: 0; }
.enrfo-dropdown__panel > a {
	display: block; padding: 8px 11px; border-radius: 7px;
	color: var(--enrfo-text); font-size: 14px;
}
.enrfo-dropdown__panel > a:hover { background: var(--enrfo-bg); text-decoration: none; }
.enrfo-dropdown__user { padding: 10px 11px; border-bottom: 1px solid var(--enrfo-border); margin-bottom: 4px; }
.enrfo-dropdown__user span { display: block; color: var(--enrfo-muted); font-size: 12.5px; }
.enrfo-dropdown__logout { color: var(--enrfo-danger) !important; }
.enrfo-dropdown__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 12px 14px; border-bottom: 1px solid var(--enrfo-border);
}
.enrfo-dropdown__body { max-height: 320px; overflow-y: auto; }
.enrfo-dropdown__foot {
	display: block; padding: 10px 14px; border-top: 1px solid var(--enrfo-border);
	text-align: center; font-size: 13.5px; font-weight: 600;
}
.enrfo-dropdown__item {
	display: block; padding: 11px 14px; border-bottom: 1px solid var(--enrfo-border);
	color: var(--enrfo-text);
}
.enrfo-dropdown__item:hover { background: var(--enrfo-bg); text-decoration: none; }
.enrfo-dropdown__item.is-unread { background: rgba(13, 157, 225, .06); }
.enrfo-dropdown__item small { display: block; color: var(--enrfo-muted); font-size: 12px; }

/* --------------------------------------------------------------- cards */

.enrfo-card {
	background: var(--enrfo-surface);
	border: 1px solid var(--enrfo-border);
	border-radius: var(--enrfo-radius);
	box-shadow: var(--enrfo-shadow-sm);
	margin-bottom: 20px;
}
.enrfo-card--pad { padding: 22px; }
.enrfo-card__pad { padding: 22px; }
.enrfo-card__head {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 16px 20px; border-bottom: 1px solid var(--enrfo-border);
}
.enrfo-card__title { margin: 0; font-size: 16px; font-weight: 650; }
.enrfo-card__subtitle { margin: 18px 0 8px; font-size: 14px; font-weight: 650; }

.enrfo-section { margin-bottom: 26px; }
.enrfo-section__title { margin: 0 0 12px; font-size: 15px; font-weight: 650; color: var(--enrfo-muted); text-transform: uppercase; letter-spacing: .05em; }

.enrfo-columns { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); gap: 20px; }
.enrfo-columns--even { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.enrfo-grid { display: grid; gap: 16px; }
.enrfo-grid--stats { grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); }
.enrfo-grid--cards { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

/* --------------------------------------------------------------- stats */

.enrfo-stat {
	display: flex; align-items: flex-start; gap: 12px;
	padding: 16px 18px;
	background: var(--enrfo-surface); border: 1px solid var(--enrfo-border);
	border-radius: var(--enrfo-radius); box-shadow: var(--enrfo-shadow-sm);
	color: inherit;
}
a.enrfo-stat:hover { text-decoration: none; border-color: var(--enrfo-border-strong); box-shadow: var(--enrfo-shadow); }
.enrfo-stat__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px; border-radius: 9px;
	background: rgba(13, 157, 225, .12); color: var(--enrfo-secondary);
}
.enrfo-stat--success .enrfo-stat__icon { background: rgba(40, 180, 99, .12); color: var(--enrfo-success); }
.enrfo-stat--muted .enrfo-stat__icon { background: var(--enrfo-bg); color: var(--enrfo-muted); }
.enrfo-stat--warn .enrfo-stat__icon { background: rgba(183, 121, 31, .12); color: var(--enrfo-warning); }
.enrfo-stat__body { display: flex; flex-direction: column; min-width: 0; }
.enrfo-stat__label { color: var(--enrfo-muted); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.enrfo-stat__value { font-size: 22px; font-weight: 700; color: var(--enrfo-primary); line-height: 1.25; }
.enrfo-stat__meta { color: var(--enrfo-muted); font-size: 12.5px; }

/* ------------------------------------------------------------- welcome */

.enrfo-welcome {
	display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
	padding: 24px 26px; margin-bottom: 24px;
	border-radius: var(--enrfo-radius);
	background: linear-gradient(120deg, var(--enrfo-primary), var(--enrfo-secondary));
	background-size: cover; background-position: center;
	color: #fff; box-shadow: var(--enrfo-shadow);
}
.enrfo-welcome h2 { margin: 0 0 10px; color: #fff; font-size: 22px; }
.enrfo-welcome__avatar img { width: 76px; height: 76px; border: 3px solid rgba(255, 255, 255, .35); }
.enrfo-welcome__body { flex: 1 1 320px; min-width: 0; }
.enrfo-welcome__meta { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; margin: 0; padding: 0; }
.enrfo-welcome__meta li { display: flex; flex-direction: column; }
.enrfo-welcome__meta span { font-size: 11.5px; text-transform: uppercase; letter-spacing: .07em; opacity: .72; }
.enrfo-welcome__meta strong { font-size: 14px; font-weight: 600; }
.enrfo-welcome__cta { align-self: center; }

/* ------------------------------------------------------------- actions */

.enrfo-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.enrfo-action {
	display: inline-flex; align-items: center; gap: 9px;
	padding: 10px 15px; border-radius: 999px;
	background: var(--enrfo-surface); border: 1px solid var(--enrfo-border);
	color: var(--enrfo-text); font-size: 13.5px; font-weight: 600;
	box-shadow: var(--enrfo-shadow-sm);
}
.enrfo-action:hover { text-decoration: none; border-color: var(--enrfo-accent); color: var(--enrfo-secondary); }
.enrfo-action__icon { color: var(--enrfo-accent); display: inline-flex; }

/* --------------------------------------------------------- module card */

.enrfo-module-card {
	position: relative; display: flex; flex-direction: column; gap: 6px;
	padding: 20px; border-radius: var(--enrfo-radius);
	background: var(--enrfo-surface); border: 1px solid var(--enrfo-border);
	box-shadow: var(--enrfo-shadow-sm); color: var(--enrfo-text);
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.enrfo-module-card:hover { text-decoration: none; border-color: var(--enrfo-accent); box-shadow: var(--enrfo-shadow); transform: translateY(-1px); }
.enrfo-module-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; margin-bottom: 6px; border-radius: 11px;
	background: rgba(4, 43, 92, .07); color: var(--enrfo-primary);
}
.enrfo-module-card__title { font-size: 15.5px; font-weight: 650; color: var(--enrfo-primary); }
.enrfo-module-card__text { color: var(--enrfo-muted); font-size: 13.5px; }
.enrfo-module-card__go { position: absolute; right: 16px; top: 20px; color: var(--enrfo-border-strong); }

/* ------------------------------------------------------------ timeline */

.enrfo-timeline { list-style: none; margin: 0; padding: 6px 0; }
.enrfo-timeline__item { display: flex; gap: 12px; padding: 11px 20px; border-bottom: 1px solid var(--enrfo-border); }
.enrfo-timeline__item:last-child { border-bottom: 0; }
.enrfo-timeline--tight .enrfo-timeline__item { padding: 8px 0; }
.enrfo-timeline__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 28px; height: 28px; flex: 0 0 28px; border-radius: 8px;
	background: var(--enrfo-bg); color: var(--enrfo-secondary);
}
.enrfo-timeline__body { display: flex; flex-direction: column; min-width: 0; font-size: 14px; }
.enrfo-timeline__body time { color: var(--enrfo-muted); font-size: 12.5px; }
.enrfo-timeline__detail { color: var(--enrfo-muted); font-size: 13px; overflow: hidden; text-overflow: ellipsis; }

/* ------------------------------------------------------- notifications */

.enrfo-notifications { list-style: none; margin: 0; padding: 0; }
.enrfo-notification { display: flex; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--enrfo-border); }
.enrfo-notification:last-child { border-bottom: 0; }
.enrfo-notification.is-unread { background: rgba(13, 157, 225, .05); }
.enrfo-notification__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; flex: 0 0 32px; border-radius: 9px;
	background: var(--enrfo-bg); color: var(--enrfo-secondary);
}
.enrfo-notification__body { flex: 1 1 auto; min-width: 0; }
.enrfo-notification__body p { margin: 2px 0 4px; color: var(--enrfo-muted); font-size: 13.5px; }
.enrfo-notification__body time { color: var(--enrfo-muted); font-size: 12.5px; }
.enrfo-notification__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* -------------------------------------------------------------- tables */

.enrfo-table-wrap { overflow-x: auto; }
.enrfo-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.enrfo-table th, .enrfo-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--enrfo-border); }
.enrfo-table th { color: var(--enrfo-muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; background: var(--enrfo-bg); }
.enrfo-table tbody tr:last-child td { border-bottom: 0; }
.enrfo-table tbody tr:hover { background: rgba(4, 43, 92, .025); }

/* ------------------------------------------------------------- pills */

.enrfo-pill {
	display: inline-block; padding: 2px 9px; border-radius: 999px;
	font-size: 11.5px; font-weight: 700; text-transform: capitalize;
	background: var(--enrfo-bg); color: var(--enrfo-muted);
}
.enrfo-pill--active, .enrfo-pill--trial, .enrfo-pill--pass { background: rgba(40, 180, 99, .13); color: #1d7f46; }
.enrfo-pill--expired, .enrfo-pill--cancelled, .enrfo-pill--fail { background: rgba(208, 52, 44, .1); color: var(--enrfo-danger); }
.enrfo-pill--pending { background: rgba(183, 121, 31, .12); color: var(--enrfo-warning); }

.enrfo-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.enrfo-tag {
	display: inline-block; padding: 3px 9px; border-radius: 6px;
	background: var(--enrfo-bg); border: 1px solid var(--enrfo-border);
	color: var(--enrfo-muted); font-size: 12px; font-weight: 600;
}

/* ------------------------------------------------------------- buttons */

.enrfo-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 40px; padding: 0 18px;
	border: 1px solid transparent; border-radius: 10px;
	font: inherit; font-size: 14px; font-weight: 600; text-align: center;
	cursor: pointer; transition: background .15s ease, border-color .15s ease, opacity .15s ease;
}
.enrfo-btn:hover { text-decoration: none; }
.enrfo-btn--primary { background: var(--enrfo-secondary); color: #fff; }
.enrfo-btn--primary:hover { background: var(--enrfo-primary); color: #fff; }
.enrfo-btn--ghost { background: transparent; border-color: var(--enrfo-border-strong); color: var(--enrfo-primary); }
.enrfo-btn--ghost:hover { background: var(--enrfo-bg); }
.enrfo-btn--muted { background: var(--enrfo-bg); color: var(--enrfo-muted); cursor: default; }
.enrfo-btn--danger { background: var(--enrfo-danger); color: #fff; }
.enrfo-btn--block { width: 100%; }
.enrfo-btn--sm { min-height: 32px; padding: 0 12px; font-size: 13px; }
.enrfo-btn[disabled], .enrfo-btn.is-loading { opacity: .65; pointer-events: none; }
.enrfo-btn.is-loading::before {
	content: ""; width: 14px; height: 14px; border-radius: 50%;
	border: 2px solid currentColor; border-top-color: transparent;
	animation: enrfo-spin .7s linear infinite;
}
@keyframes enrfo-spin { to { transform: rotate(360deg); } }

.enrfo-linkbtn {
	padding: 0; border: 0; background: none; cursor: pointer;
	color: var(--enrfo-secondary); font: inherit; font-size: 13px; font-weight: 600;
}
.enrfo-linkbtn:hover { text-decoration: underline; }
.enrfo-linkbtn--danger { color: var(--enrfo-danger); }

/* --------------------------------------------------------------- forms */

.enrfo-fieldset { border: 0; margin: 0 0 22px; padding: 0; }
.enrfo-fieldset legend {
	padding: 0 0 10px; font-size: 13px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .05em; color: var(--enrfo-muted);
}
.enrfo-form-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }

.enrfo-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.enrfo-field--wide { grid-column: 1 / -1; }
.enrfo-field--grow { flex: 1 1 auto; margin-bottom: 0; }
.enrfo-field > span { font-size: 13px; font-weight: 600; color: var(--enrfo-muted); }

.enrfo-app input[type="text"],
.enrfo-app input[type="email"],
.enrfo-app input[type="tel"],
.enrfo-app input[type="url"],
.enrfo-app input[type="number"],
.enrfo-app input[type="password"],
.enrfo-app input[type="search"],
.enrfo-app input[type="date"],
.enrfo-app select,
.enrfo-app textarea {
	width: 100%; min-height: 40px; padding: 8px 12px;
	border: 1px solid var(--enrfo-border-strong); border-radius: var(--enrfo-radius-sm);
	background: #fff; color: var(--enrfo-text); font: inherit; font-size: 14px;
}
.enrfo-app textarea { min-height: 92px; resize: vertical; }
.enrfo-app input:focus, .enrfo-app select:focus, .enrfo-app textarea:focus {
	outline: 2px solid var(--enrfo-accent); outline-offset: 1px; border-color: var(--enrfo-accent);
}
.enrfo-app input[readonly] { background: var(--enrfo-bg); color: var(--enrfo-muted); }

.enrfo-checks { display: flex; flex-direction: column; gap: 10px; }
.enrfo-check { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; cursor: pointer; }
.enrfo-check input { width: 17px; height: 17px; margin: 2px 0 0; }
.enrfo-check--terms { margin: 14px 0 18px; }

.enrfo-form-actions { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 6px; }
.enrfo-inline-form { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; }

.enrfo-deflist { list-style: none; margin: 0; padding: 0; }
.enrfo-deflist li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px dashed var(--enrfo-border); font-size: 14px; }
.enrfo-deflist li:last-child { border-bottom: 0; }
.enrfo-deflist span { color: var(--enrfo-muted); }

/* ------------------------------------------------------------ notices */

.enrfo-notice {
	padding: 12px 16px; margin-bottom: 18px;
	border: 1px solid var(--enrfo-border); border-left-width: 4px;
	border-radius: var(--enrfo-radius-sm);
	background: var(--enrfo-surface); font-size: 14px;
}
.enrfo-notice--success { border-left-color: var(--enrfo-success); }
.enrfo-notice--error { border-left-color: var(--enrfo-danger); }
.enrfo-notice--info { border-left-color: var(--enrfo-accent); }

/* -------------------------------------------------------- empty states */

.enrfo-empty { padding: 30px 20px; text-align: center; }
.enrfo-empty__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px; margin-bottom: 12px; border-radius: 16px;
	background: var(--enrfo-bg); color: var(--enrfo-secondary);
}
.enrfo-empty__title { margin: 0 0 6px; font-size: 16px; }
.enrfo-empty__text { max-width: 420px; margin: 0 auto 16px; color: var(--enrfo-muted); font-size: 14px; }

/* ---------------------------------------------------------- skeletons */

.enrfo-skeleton {
	height: 46px; margin: 10px 14px; border-radius: var(--enrfo-radius-sm);
	background: linear-gradient(90deg, #eef1f6 25%, #e3e8f0 37%, #eef1f6 63%);
	background-size: 400% 100%;
	animation: enrfo-shimmer 1.3s ease infinite;
}
@keyframes enrfo-shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ------------------------------------------------------------- pricing */

.enrfo-price-card {
	display: flex; flex-direction: column; gap: 10px;
	padding: 22px; border-radius: var(--enrfo-radius);
	background: var(--enrfo-surface); border: 1px solid var(--enrfo-border);
	box-shadow: var(--enrfo-shadow-sm);
}
.enrfo-price-card.is-current { border-color: var(--enrfo-success); box-shadow: 0 0 0 1px rgba(40, 180, 99, .35); }
.enrfo-price-card h3 { margin: 0; font-size: 16px; }
.enrfo-price { margin: 0; display: flex; align-items: baseline; gap: 5px; }
.enrfo-price__currency { color: var(--enrfo-muted); font-size: 13px; font-weight: 600; }
.enrfo-price__value { font-size: 26px; font-weight: 700; color: var(--enrfo-primary); }
.enrfo-price__cycle { color: var(--enrfo-muted); font-size: 13px; }
.enrfo-price-card__features { list-style: none; margin: 0 0 auto; padding: 0; display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; }
.enrfo-price-card__features li { display: flex; align-items: center; gap: 8px; color: var(--enrfo-muted); }
.enrfo-price-card__features svg { color: var(--enrfo-success); }

.enrfo-plan-summary { display: grid; gap: 16px; }
.enrfo-plan-summary__name { font-size: 20px; font-weight: 700; color: var(--enrfo-primary); margin-right: 10px; }

/* ---------------------------------------------------------- breadcrumb */

.enrfo-breadcrumbs { margin-bottom: 16px; font-size: 13px; }
.enrfo-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.enrfo-breadcrumbs li + li::before { content: "/"; margin-right: 6px; color: var(--enrfo-border-strong); }
.enrfo-breadcrumbs span[aria-current] { color: var(--enrfo-muted); }

/* ---------------------------------------------------------- pagination */

.enrfo-pagination { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 24px; }
.enrfo-pagination__link {
	min-width: 36px; height: 36px; padding: 0 10px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--enrfo-border); border-radius: 9px;
	background: var(--enrfo-surface); color: var(--enrfo-text); font-size: 13.5px; font-weight: 600;
}
.enrfo-pagination__link.is-active { background: var(--enrfo-secondary); border-color: var(--enrfo-secondary); color: #fff; }
.enrfo-pagination__link:hover { text-decoration: none; border-color: var(--enrfo-accent); }

/* ------------------------------------------------------------- results */

.enrfo-results { list-style: none; margin: 0; padding: 0; }
.enrfo-result { border-bottom: 1px solid var(--enrfo-border); }
.enrfo-result:last-child { border-bottom: 0; }
.enrfo-result a { display: block; padding: 14px 20px; color: var(--enrfo-text); }
.enrfo-result a:hover { background: var(--enrfo-bg); text-decoration: none; }
.enrfo-result__meta { display: flex; align-items: center; gap: 8px; color: var(--enrfo-muted); font-size: 12.5px; margin-top: 3px; }

/* ---------------------------------------------------------------- help */

.enrfo-help-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 14px; }
.enrfo-help-item { display: flex; gap: 12px; }
.enrfo-help-item__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px; flex: 0 0 34px; border-radius: 9px;
	background: var(--enrfo-bg); color: var(--enrfo-secondary);
}
.enrfo-help-item p { margin: 2px 0 0; font-size: 13px; }

/* ------------------------------------------------------------ profile */

.enrfo-profile-head { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--enrfo-border); }
.enrfo-profile-head__files { display: flex; flex-wrap: wrap; gap: 16px; flex: 1 1 320px; }
.enrfo-profile-head__files .enrfo-field { margin-bottom: 0; }

/* --------------------------------------------------------------- scrim */

/*
 * The scrim stays in the document so it can fade; when the drawer is closed it
 * is invisible and lets every click through to the page underneath.
 */
.enrfo-scrim {
	position: fixed; inset: 0; z-index: 35;
	background: rgba(9, 20, 36, .5);
	backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .26s ease, visibility 0s linear .26s;
}

.enrfo-shell.is-sidebar-open .enrfo-scrim {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity .26s ease, visibility 0s;
}

/* ------------------------------------------------------- password fields */

.enrfo-passfield { position: relative; display: block; }
.enrfo-app .enrfo-passfield input { padding-right: 46px; }

.enrfo-passfield__toggle {
	position: absolute; top: 50%; right: 6px; transform: translateY(-50%);
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px; padding: 0;
	border: 0; border-radius: 8px; background: transparent;
	color: var(--enrfo-muted); cursor: pointer;
}
.enrfo-passfield__toggle:hover { background: var(--enrfo-bg); color: var(--enrfo-secondary); }
.enrfo-passfield__toggle .enrfo-icon--off { display: none; }
.enrfo-passfield__toggle.is-visible .enrfo-icon--on { display: none; }
.enrfo-passfield__toggle.is-visible .enrfo-icon--off { display: inline-flex; }

/* -------------------------------------------------------------- my drive */

.enrfo-drive-summary { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin-bottom: 20px; }

.enrfo-filetype {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 46px; height: 26px; padding: 0 8px; border-radius: 7px;
	background: var(--enrfo-teal-soft); color: var(--enrfo-teal);
	font-size: 11px; font-weight: 700; letter-spacing: .04em;
}

.enrfo-drive-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

/* ------------------------------------------------------------- requests */

.enrfo-request-note { display: block; color: var(--enrfo-muted); font-size: 12.5px; }

.enrfo-badge {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 3px 9px; border-radius: 999px;
	font-size: 11.5px; font-weight: 700;
	background: var(--enrfo-grid-soft); color: var(--enrfo-grid);
}
.enrfo-badge--pending { background: rgba(183, 121, 31, .14); color: var(--enrfo-warning); }
.enrfo-badge--approved { background: var(--enrfo-success-soft); color: #1d7f46; }
.enrfo-badge--rejected { background: rgba(208, 52, 44, .12); color: var(--enrfo-danger); }

/* ------------------------------------------------------------------ 2FA */

.enrfo-otp { display: flex; flex-direction: column; gap: 14px; }
.enrfo-app .enrfo-otp input[type="text"] {
	font-size: 24px; font-weight: 700; letter-spacing: .5em;
	text-align: center; font-variant-numeric: tabular-nums;
}
.enrfo-otp__hint { color: var(--enrfo-muted); font-size: 13.5px; }

/* --------------------------------------------------------- plan choices */

.enrfo-price-card--recommended { border-color: var(--enrfo-accent); box-shadow: 0 0 0 1px var(--enrfo-accent); }
.enrfo-price-card__flag {
	align-self: flex-start; padding: 3px 10px; border-radius: 999px;
	background: var(--enrfo-accent); color: #fff;
	font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}

/* ---------------------------------------------------- palette accents */

.enrfo-stat--teal .enrfo-stat__icon { background: var(--enrfo-teal-soft); color: var(--enrfo-teal); }
.enrfo-stat--grid .enrfo-stat__icon { background: var(--enrfo-grid-soft); color: var(--enrfo-grid); }
.enrfo-module-card__icon { background: var(--enrfo-primary-soft); color: var(--enrfo-primary); }
.enrfo-module-card:nth-child(3n+2) .enrfo-module-card__icon { background: var(--enrfo-teal-soft); color: var(--enrfo-teal); }
.enrfo-module-card:nth-child(3n+3) .enrfo-module-card__icon { background: var(--enrfo-grid-soft); color: var(--enrfo-grid); }

.enrfo-welcome { background: linear-gradient(120deg, var(--enrfo-primary) 0%, var(--enrfo-teal) 60%, var(--enrfo-secondary) 100%); }
.enrfo-brand__mark { background: linear-gradient(135deg, var(--enrfo-accent), var(--enrfo-grid)); }

/* Selects get the same affordance as inputs. */
.enrfo-app select {
	background-image: linear-gradient(45deg, transparent 50%, var(--enrfo-muted) 50%), linear-gradient(135deg, var(--enrfo-muted) 50%, transparent 50%);
	background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 34px;
	appearance: none;
	-webkit-appearance: none;
}

/* ------------------------------------------------------- appearance toggle */

.enrfo-theme-toggle { position: relative; }
.enrfo-theme-toggle__sun,
.enrfo-theme-toggle__moon {
	display: inline-flex; align-items: center; justify-content: center;
	transition: opacity .2s ease, transform .3s ease;
}

/* One icon shows the state, the other waits its turn. */
[data-enrfo-theme="light"] .enrfo-theme-toggle__moon,
[data-enrfo-theme="dark"] .enrfo-theme-toggle__sun { display: none; }

.enrfo-theme-toggle:hover .enrfo-theme-toggle__sun { transform: rotate(35deg); }
.enrfo-theme-toggle:hover .enrfo-theme-toggle__moon { transform: rotate(-18deg); }
.enrfo-theme-toggle__label { margin-left: 8px; font-size: 13px; }

/* The dark-mode logo only exists in dark mode, and the light one in light. */
[data-enrfo-theme="light"] .enrfo-brand__logo--dark,
[data-enrfo-theme="dark"] .enrfo-brand__logo--light { display: none; }

/* ---------------------------------------------------------- back to top */

.enrfo-to-top {
	position: fixed; right: 20px; bottom: 20px; z-index: 30;
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; padding: 0;
	border: 1px solid var(--enrfo-border);
	border-radius: 50%;
	background: var(--enrfo-surface);
	color: var(--enrfo-text);
	box-shadow: var(--enrfo-shadow-sm);
	cursor: pointer;
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}

.enrfo-to-top.is-visible {
	opacity: 1; visibility: visible; transform: none;
	transition: opacity .2s ease, transform .2s ease, visibility 0s;
}

.enrfo-to-top:hover { background: var(--enrfo-secondary); color: var(--enrfo-on-secondary); border-color: transparent; }

/* --------------------------------------------------------- storage usage */

.enrfo-storage {
	display: grid; gap: 8px;
	padding: 14px 16px;
	border: 1px solid var(--enrfo-border);
	border-radius: var(--enrfo-radius);
	background: var(--enrfo-surface);
}

.enrfo-storage--compact { padding: 10px 12px; gap: 6px; }
.enrfo-storage__head { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: baseline; }
.enrfo-storage__label { font-weight: 600; color: var(--enrfo-text); }
.enrfo-storage__value { color: var(--enrfo-muted); font-size: 13px; }

.enrfo-storage__track {
	position: relative;
	height: 8px;
	border-radius: 999px;
	background: var(--enrfo-primary-soft);
	overflow: hidden;
}

.enrfo-storage__fill {
	display: block; height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--enrfo-grid), var(--enrfo-accent));
	transition: width .4s ease;
}

.enrfo-storage.is-warning .enrfo-storage__fill { background: linear-gradient(90deg, var(--enrfo-warning), #e0952f); }
.enrfo-storage.is-full .enrfo-storage__fill { background: linear-gradient(90deg, var(--enrfo-danger), #e05a4f); }

.enrfo-storage__alert {
	display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
	margin: 0; padding: 10px 12px;
	border-radius: var(--enrfo-radius-sm);
	background: var(--enrfo-danger-soft, rgba(208, 52, 44, .1));
	color: var(--enrfo-text);
	font-size: 13px;
}

.enrfo-storage__alert--soft { background: var(--enrfo-warning-soft, rgba(183, 121, 31, .12)); }
.enrfo-storage__alert strong { color: var(--enrfo-danger); }

/* --------------------------------------------------------- social links */

.enrfo-social { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }

.enrfo-social__link {
	display: inline-flex; align-items: center; gap: 8px;
	width: 34px; height: 34px;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--enrfo-border);
	color: var(--enrfo-muted);
	transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.enrfo-social__link:has(.enrfo-social__label) { width: auto; padding: 0 14px; border-radius: 999px; }
.enrfo-social__link:hover { color: var(--enrfo-on-secondary); background: var(--enrfo-secondary); border-color: transparent; text-decoration: none; }
.enrfo-social__label { font-size: 13px; }
.enrfo-social--footer { margin-left: auto; }
