.svsah-screen {
	max-width: 960px;
	margin: 0 auto;
	padding: 32px 20px;
	color: #1f2933;
}

.svsah-header {
	margin-bottom: 24px;
}

.svsah-header-actions {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	justify-content: space-between;
}

.svsah-kicker {
	margin: 0 0 6px;
	color: #5f6b7a;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.svsah-screen h2 {
	margin: 0;
	font-size: 32px;
	line-height: 1.2;
}

.svsah-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 14px;
}

.svsah-tile {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
	min-height: 84px;
	padding: 18px;
	border: 1px solid #cfd7df;
	border-radius: 8px;
	background: #fff;
	color: #1f2933;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
	transition: border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.svsah-tile:hover,
.svsah-tile:focus {
	border-color: #1d5f8a;
	color: #123f5c;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
	transform: translateY(-1px);
}

.svsah-empty,
.svsah-access-message {
	font-size: 18px;
}

.svsah-dashboard-hero {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	padding: 26px;
	border: 1px solid #d9e0e7;
	border-radius: 8px;
	background: linear-gradient(135deg, #f7fafc 0%, #eef6fb 100%);
}

.svsah-dashboard-hero h2 {
	margin-bottom: 8px;
}

.svsah-dashboard-hero p:last-child {
	margin-bottom: 0;
	max-width: 620px;
	color: #52616f;
}

.svsah-dashboard-overview {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
	gap: 16px;
	margin-bottom: 18px;
}

.svsah-next-step-card {
	display: grid;
	align-content: start;
	gap: 8px;
	padding: 22px;
	border: 1px solid #d9e0e7;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.svsah-next-step-card h3 {
	margin: 0;
	font-size: 20px;
}

.svsah-next-step-card p {
	margin: 0;
	color: #52616f;
}

.svsah-tile-label {
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
}

.svsah-tile-description {
	color: #52616f;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
}

.svsah-empty-state {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin: 20px 0;
	padding: 22px;
	border: 1px dashed #b8c7d4;
	border-radius: 8px;
	background: #f7fafc;
}

.svsah-empty-state h3 {
	margin: 0 0 6px;
	font-size: 20px;
	line-height: 1.3;
}

.svsah-empty-state p {
	margin: 0 0 12px;
	color: #52616f;
}

.svsah-empty-state p:last-child {
	margin-bottom: 0;
}

.svsah-empty-icon {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border: 2px solid #1d5f8a;
	border-radius: 50%;
	background:
		linear-gradient(#1d5f8a, #1d5f8a) center / 16px 2px no-repeat,
		linear-gradient(#1d5f8a, #1d5f8a) center / 2px 16px no-repeat,
		#fff;
}

.svsah-link {
	font-weight: 700;
}

.svsah-form {
	display: grid;
	gap: 24px;
}

.svsah-form-section {
	padding: 22px;
	border: 1px solid #d9e0e7;
	border-radius: 8px;
	background: #fff;
}

.svsah-form-section h3,
.svsah-completion-card h3 {
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 1.3;
}

.svsah-field-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.svsah-event-datetime-row {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(150px, 0.7fr);
	gap: 16px;
}

.svsah-field {
	display: grid;
	gap: 7px;
	margin-bottom: 16px;
	font-weight: 700;
}

.svsah-field input,
.svsah-field select,
.svsah-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid #b8c2cc;
	border-radius: 6px;
	font: inherit;
}

.svsah-help {
	margin: 8px 0 0;
	color: #52616f;
	font-size: 14px;
}

.svsah-checkbox-list {
	display: grid;
	gap: 10px;
	margin-bottom: 18px;
}

.svsah-checkbox-list label {
	display: flex;
	gap: 10px;
	align-items: center;
	font-weight: 700;
}

.svsah-checkbox-list-scroll {
	max-height: 260px;
	overflow: auto;
	padding: 10px;
	border: 1px solid #d9e0e7;
	border-radius: 6px;
}

.svsah-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 18px;
	border: 0;
	border-radius: 6px;
	background: #1d5f8a;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
}

.svsah-button:hover,
.svsah-button:focus {
	background: #164b6d;
}

.svsah-button-danger {
	background: #9f321f;
}

.svsah-button-danger:hover,
.svsah-button-danger:focus {
	background: #7d281a;
}

.svsah-button-secondary {
	border: 1px solid #1d5f8a;
	background: #fff;
	color: #1d5f8a;
}

.svsah-button-secondary:hover,
.svsah-button-secondary:focus {
	background: #eef6fb;
	color: #123f5c;
}

.svsah-button:focus,
.svsah-link:focus,
.svsah-link-button:focus,
.svsah-tile:focus {
	outline: 3px solid rgba(29, 95, 138, 0.3);
	outline-offset: 2px;
}

.svsah-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.svsah-completion-inline {
	color: #52616f;
	font-weight: 700;
}

.svsah-completion-card {
	display: grid;
	gap: 10px;
	margin-bottom: 24px;
	padding: 22px;
	border: 1px solid #d9e0e7;
	border-radius: 8px;
	background: #f7fafc;
}

.svsah-completion-meter {
	height: 10px;
	overflow: hidden;
	border-radius: 999px;
	background: #d9e0e7;
}

.svsah-completion-meter span {
	display: block;
	height: 100%;
	background: #2f7d59;
}

.svsah-notice {
	margin-bottom: 18px;
	padding: 12px 14px;
	border-left: 4px solid #1d5f8a;
	background: #eef6fb;
}

.svsah-notice-error {
	border-left-color: #b42318;
	background: #fff4f2;
}

.svsah-notice-success {
	border-left-color: #2f7d59;
	background: #f0fbf5;
}

.svsah-directory-list {
	display: grid;
	gap: 16px;
}

.svsah-directory-filters {
	display: grid;
	grid-template-columns: minmax(220px, 1.2fr) minmax(190px, 0.9fr) minmax(150px, 0.7fr) auto;
	gap: 14px;
	align-items: end;
	margin: 0 0 22px;
	padding: 16px;
	border: 1px solid #d9e0e7;
	border-radius: 8px;
	background: #f7fafc;
}

.svsah-directory-filters .svsah-field {
	margin-bottom: 0;
}

.svsah-directory-result-count {
	grid-column: 1 / -1;
	margin: -4px 0 0;
	color: #52616f;
	font-weight: 700;
}

.svsah-directory-no-results {
	margin-top: 18px;
}

.svsah-directory-pills {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.svsah-directory-pill {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 14px;
	border: 1px solid #d9e0e7;
	border-radius: 999px;
	background: #fff;
	color: #1f2933;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
	transition: border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.svsah-directory-pill[hidden] {
	display: none;
}

.svsah-directory-pill:hover,
.svsah-directory-pill:focus {
	border-color: #1d5f8a;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
	transform: translateY(-1px);
}

.svsah-directory-pill-main {
	display: grid;
	gap: 2px;
	min-width: 0;
	line-height: 1.25;
}

.svsah-directory-pill-main strong {
	font-size: 16px;
}

.svsah-directory-pill-main span {
	color: #52616f;
	font-size: 13px;
}

.svsah-directory-card {
	padding: 22px;
	border: 1px solid #d9e0e7;
	border-radius: 8px;
	background: #fff;
}

.svsah-directory-card h3 {
	margin: 0 0 4px;
	font-size: 22px;
	line-height: 1.3;
}

.svsah-directory-card p {
	margin: 10px 0 0;
}

.svsah-muted {
	color: #52616f;
}

.svsah-private-contact {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid #d9e0e7;
}

.svsah-card-heading,
.svsah-profile-hero {
	display: flex;
	gap: 14px;
	align-items: center;
}

.svsah-profile-hero {
	align-items: flex-start;
	margin-bottom: 22px;
}

.svsah-headshot {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 50%;
	background: #d9e0e7;
	color: #243447;
	font-weight: 800;
	object-fit: cover;
}

.svsah-headshot-small {
	width: 56px;
	height: 56px;
	font-size: 18px;
}

.svsah-headshot-medium {
	width: 82px;
	height: 82px;
	font-size: 26px;
}

.svsah-headshot-large {
	width: 112px;
	height: 112px;
	font-size: 34px;
}

.svsah-member-profile {
	display: grid;
	gap: 20px;
	padding: 24px;
	border: 1px solid #d9e0e7;
	border-radius: 8px;
	background: #fff;
}

.svsah-member-profile h3 {
	margin: 0 0 4px;
	font-size: 28px;
	line-height: 1.2;
}

.svsah-member-profile h4 {
	margin: 0 0 8px;
	font-size: 18px;
}

.svsah-public-contact-builder {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}

.svsah-public-contact-rows {
	display: grid;
	gap: 12px;
}

.svsah-public-contact-row {
	display: grid;
	grid-template-columns: minmax(130px, 0.8fr) minmax(220px, 1.6fr) auto;
	gap: 12px;
	align-items: end;
	padding: 14px;
	border: 1px solid #e0e6ed;
	border-radius: 8px;
	background: #f7fafc;
}

.svsah-public-contact-row.is-other {
	grid-template-columns: minmax(130px, 0.8fr) minmax(140px, 0.9fr) minmax(180px, 1.2fr) auto;
}

.svsah-public-contact-custom[hidden] {
	display: none !important;
}

.svsah-public-contact-row .svsah-field {
	margin-bottom: 0;
}

.svsah-public-contact-add {
	width: 42px;
	min-height: 42px;
	padding: 0;
	font-size: 24px;
	line-height: 1;
}

.svsah-public-contact-list {
	display: grid;
	gap: 8px;
	margin: 10px 0 0;
	padding-left: 20px;
}

.svsah-inline-form {
	margin: 10px 0 0;
}

.svsah-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.svsah-filter-form {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(180px, 260px) auto;
	gap: 14px;
	align-items: end;
	margin-bottom: 20px;
}

.svsah-filter-form-wide {
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.svsah-filter-checks {
	align-self: start;
	margin: 0;
}

.svsah-story-body {
	margin-top: 18px;
	font-size: 17px;
	line-height: 1.65;
}

.svsah-story-body p {
	margin: 0 0 16px;
}

.svsah-story-body img {
	max-width: 100%;
	height: auto;
}

.svsah-story-card-media {
	margin: 14px 0;
	overflow: hidden;
	border-radius: 8px;
	background: #f7fafc;
}

.svsah-story-card-image {
	display: block;
	width: 100%;
	max-height: 260px;
	object-fit: cover;
}

.svsah-story-media {
	display: grid;
	gap: 18px;
	margin: 24px 0;
}

.svsah-story-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.svsah-story-gallery figure {
	margin: 0;
	overflow: hidden;
	border: 1px solid #d9e0e7;
	border-radius: 8px;
	background: #fff;
}

.svsah-story-image {
	display: block;
	width: 100%;
	height: auto;
}

.svsah-story-video {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: #0f172a;
	aspect-ratio: 16 / 9;
}

.svsah-story-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.svsah-story-tools {
	margin-top: 22px;
}

.svsah-story-comments {
	margin-top: 22px;
}

.svsah-comment-list {
	display: grid;
	gap: 14px;
	margin-bottom: 20px;
}

.svsah-comment {
	padding: 14px;
	border: 1px solid #d9e0e7;
	border-radius: 6px;
	background: #fff;
}

.svsah-comment-hidden {
	background: #f7fafc;
}

.svsah-comment header {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: baseline;
	margin-bottom: 8px;
}

.svsah-inline-form {
	margin: 8px 0 0;
}

.svsah-link-button {
	padding: 0;
	border: 0;
	background: transparent;
	color: #1d5f8a;
	font: inherit;
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
}

.svsah-people-picker {
	display: grid;
	gap: 10px;
}

.svsah-people-picker-selected,
.svsah-people-picker-results {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.svsah-person-chip,
.svsah-person-result {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 6px 10px;
	border: 1px solid #c7d1dc;
	border-radius: 999px;
	background: #f7fafc;
	color: #1f2933;
	font: inherit;
	font-weight: 700;
}

.svsah-person-result {
	cursor: pointer;
}

.svsah-person-result:hover,
.svsah-person-result:focus {
	border-color: #1d5f8a;
	background: #eef6fb;
}

.svsah-person-chip-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #d9e0e7;
	color: #243447;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	line-height: 1;
}

.svsah-media-field {
	align-items: start;
}

.svsah-media-preview {
	min-height: 82px;
}

.svsah-mention-results {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.svsah-mention {
	font-weight: 700;
}

.svsah-profile-stories h5 {
	margin: 18px 0 10px;
	font-size: 16px;
}

.svsah-rsvp-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 12px 0;
	color: #52616f;
}

.svsah-rsvp-panel {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid #d9e0e7;
}

.svsah-rsvp-panel h3 {
	margin: 0 0 10px;
	font-size: 20px;
}

.svsah-rsvp-list {
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid #d9e0e7;
}

.svsah-rsvp-public-contacts {
	display: grid;
	gap: 4px;
	margin: -4px 0 12px 18px;
	color: #52616f;
	font-size: 14px;
}

.svsah-event-message-tools {
	margin-top: 22px;
}

.svsah-map-stage {
	position: relative;
	min-height: 420px;
	height: 56vh;
	max-height: 620px;
	margin-bottom: 24px;
	overflow: hidden;
	border: 1px solid #cfd7df;
	border-radius: 8px;
	background: #eef6fb;
}

.svsah-map-loading {
	margin: 0;
	padding: 18px;
	color: #52616f;
	font-weight: 700;
}

.svsah-map-stage .leaflet-popup-content {
	font: inherit;
}

@media (max-width: 720px) {
	.svsah-screen {
		padding: 24px 14px;
	}

	.svsah-screen h2 {
		font-size: 28px;
	}

	.svsah-dashboard-hero {
		display: grid;
		padding: 20px;
	}

	.svsah-header-actions {
		display: grid;
	}

	.svsah-dashboard-overview {
		grid-template-columns: 1fr;
	}

	.svsah-filter-form {
		grid-template-columns: 1fr;
	}

	.svsah-directory-filters {
		grid-template-columns: 1fr;
		padding: 14px;
	}

	.svsah-event-datetime-row {
		grid-template-columns: 1fr;
	}

	.svsah-public-contact-row {
		grid-template-columns: 1fr;
	}

	.svsah-directory-pill {
		border-radius: 8px;
	}

	.svsah-profile-hero {
		align-items: center;
	}

	.svsah-empty-state {
		display: grid;
		padding: 18px;
	}
}
