:root {
	--alp360-primary: #183e75;
	--alp360-accent: #f59e0b;
	--alp360-urgent: #c62828;
	--alp360-success: #18864b;
	--alp360-surface: #f4f6f8;
	--alp360-text: #172033;
	--alp360-radius: 12px;
	--alp360-border: #dfe3e9;
	--alp360-muted: #687386;
}

.alp360-directory,
.alp360-global-banner,
.alp360-single,
.alp360-single__content,
.alp360-submit-wrap {
	box-sizing: border-box;
	color: var(--alp360-text);
	font-family: inherit;
}

.alp360-directory *,
.alp360-global-banner *,
.alp360-single *,
.alp360-single__content *,
.alp360-submit-wrap * {
	box-sizing: border-box;
}

.alp360-directory a,
.alp360-global-banner a,
.alp360-single a,
.alp360-submit-wrap a {
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.alp360-directory {
	width: 100%;
	margin: 24px auto;
	background: var(--alp360-surface);
	border: 1px solid var(--alp360-border);
	border-radius: var(--alp360-radius);
	overflow: hidden;
}

.alp360-directory__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 30px 34px;
	background: var(--alp360-primary);
	color: #fff;
}

.alp360-directory__brand {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
}

.alp360-directory__brand img {
	display: block;
	width: 68px;
	height: 68px;
	flex: 0 0 68px;
	padding: 7px;
	background: #fff;
	border-radius: calc(var(--alp360-radius) * 0.7);
	object-fit: contain;
}

.alp360-kicker {
	display: block;
	margin-bottom: 7px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 1.2;
}

.alp360-directory__header h2,
.alp360-submit-header h2 {
	margin: 0;
	color: inherit;
	font-size: clamp(23px, 3vw, 34px);
	font-weight: 780;
	letter-spacing: -0.025em;
	line-height: 1.1;
}

.alp360-directory__header p {
	margin: 9px 0 0;
	max-width: 720px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
	line-height: 1.5;
}

.alp360-live-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	padding: 10px 13px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}

.alp360-live-status > span {
	position: relative;
	display: block;
	width: 8px;
	height: 8px;
	background: #70df98;
	border-radius: 50%;
}

.alp360-live-status > span::after {
	position: absolute;
	inset: -4px;
	border: 1px solid #70df98;
	border-radius: 50%;
	content: "";
	opacity: 0.55;
	animation: alp360-pulse 1.8s ease-out infinite;
}

@keyframes alp360-pulse {
	0% { transform: scale(0.5); opacity: 0.7; }
	75%, 100% { transform: scale(1.35); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.alp360-live-status > span::after {
		animation: none;
	}
}

.alp360-filter-bar {
	display: flex;
	align-items: stretch;
	gap: 12px;
	padding: 18px 22px;
	background: #fff;
	border-bottom: 1px solid var(--alp360-border);
}

.alp360-filters {
	display: grid;
	grid-template-columns: minmax(200px, 1.4fr) repeat(3, minmax(145px, 0.8fr)) auto auto;
	align-items: center;
	gap: 8px;
	min-width: 0;
	flex: 1;
}

.alp360-filters label {
	min-width: 0;
	margin: 0;
}

.alp360-filters input,
.alp360-filters select {
	display: block;
	width: 100%;
	height: 42px;
	margin: 0;
	padding: 0 11px;
	background: #fff;
	border: 1px solid #cfd5de;
	border-radius: 6px;
	box-shadow: none;
	color: var(--alp360-text);
	font: inherit;
	font-size: 12px;
	line-height: 40px;
}

.alp360-filters select {
	padding-right: 30px;
}

.alp360-filters input:focus,
.alp360-filters select:focus {
	border-color: var(--alp360-primary);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--alp360-primary) 18%, transparent);
	outline: 0;
}

.alp360-search-field {
	position: relative;
}

.alp360-search-field svg {
	position: absolute;
	top: 50%;
	left: 12px;
	width: 17px;
	height: 17px;
	fill: none;
	stroke: #7a8494;
	stroke-linecap: round;
	stroke-width: 1.8;
	transform: translateY(-50%);
}

.alp360-search-field input {
	padding-left: 38px;
}

.alp360-filter-submit {
	height: 42px;
	margin: 0;
	padding: 0 18px;
	background: var(--alp360-primary);
	border: 1px solid var(--alp360-primary);
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 750;
	white-space: nowrap;
}

.alp360-filter-submit:hover,
.alp360-filter-submit:focus {
	filter: brightness(1.08);
}

.alp360-filter-reset {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid #cfd5de;
	border-radius: 6px;
	color: var(--alp360-muted);
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
}

.alp360-layout-switch {
	display: flex;
	align-items: center;
	align-self: center;
	flex: 0 0 auto;
	padding: 3px;
	background: #eef1f4;
	border-radius: 6px;
}

.alp360-layout-switch button {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 4px;
	color: #727c8d;
	cursor: pointer;
}

.alp360-layout-switch button.is-active {
	background: #fff;
	box-shadow: 0 1px 3px rgba(18, 29, 47, 0.13);
	color: var(--alp360-primary);
}

.alp360-layout-switch svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.alp360-alerts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	padding: 24px;
}

.alp360-card {
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--alp360-border);
	border-top: 4px solid var(--alp360-primary);
	border-radius: var(--alp360-radius);
	box-shadow: 0 4px 14px rgba(16, 28, 48, 0.045);
	overflow: hidden;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.alp360-card:hover {
	box-shadow: 0 9px 25px rgba(16, 28, 48, 0.09);
	transform: translateY(-2px);
}

.alp360-card--vigilance {
	border-top-color: var(--alp360-accent);
}

.alp360-card--important {
	border-top-color: #e5661e;
}

.alp360-card--urgent {
	border-top-color: var(--alp360-urgent);
}

.alp360-card--featured {
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--alp360-primary) 25%, transparent), 0 8px 24px rgba(16, 28, 48, 0.08);
}

.alp360-card__media {
	display: block;
	height: 185px;
	background: #e7eaee;
	overflow: hidden;
}

.alp360-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.alp360-card:hover .alp360-card__media img {
	transform: scale(1.025);
}

.alp360-card__body {
	padding: 19px 20px 17px;
}

.alp360-card__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 13px;
}

.alp360-level,
.alp360-state,
.alp360-category {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.07em;
	line-height: 1;
	text-transform: uppercase;
}

.alp360-level {
	color: var(--alp360-primary);
}

.alp360-level > span {
	display: block;
	width: 7px;
	height: 7px;
	background: currentColor;
	border-radius: 50%;
}

.alp360-level--vigilance {
	color: #a56a00;
}

.alp360-level--important {
	color: #b84d0c;
}

.alp360-level--urgent {
	color: var(--alp360-urgent);
}

.alp360-category {
	overflow: hidden;
	max-width: 54%;
	padding: 6px 7px;
	background: #eef1f4;
	border-radius: 4px;
	color: #616b7b;
	letter-spacing: 0;
	text-overflow: ellipsis;
	text-transform: none;
	white-space: nowrap;
}

.alp360-card h3 {
	margin: 0 0 10px;
	color: var(--alp360-text);
	font-size: clamp(17px, 2vw, 21px);
	font-weight: 760;
	letter-spacing: -0.018em;
	line-height: 1.24;
}

.alp360-card h3 a {
	color: inherit;
	text-decoration: none;
}

.alp360-card h3 a:hover,
.alp360-card h3 a:focus {
	color: var(--alp360-primary);
}

.alp360-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	color: #4e5869;
	font-size: 13px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.alp360-card__meta {
	display: grid;
	gap: 7px;
	margin-top: 17px;
	padding-top: 14px;
	border-top: 1px solid #e6e9ed;
}

.alp360-card__meta span {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--alp360-muted);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.4;
}

.alp360-card__meta svg {
	width: 15px;
	height: 15px;
	flex: 0 0 15px;
	fill: none;
	stroke: var(--alp360-primary);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.alp360-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding: 13px 20px;
	background: #fafbfc;
	border-top: 1px solid #e6e9ed;
}

.alp360-card__updated {
	color: #858d9b;
	font-size: 9px;
}

.alp360-card__footer a {
	color: var(--alp360-primary);
	font-size: 10px;
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
}

.alp360-layout-list .alp360-alerts {
	grid-template-columns: 1fr;
}

.alp360-layout-list .alp360-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-rows: 1fr auto;
}

.alp360-layout-list .alp360-card:has(.alp360-card__media) {
	grid-template-columns: 250px minmax(0, 1fr) auto;
}

.alp360-layout-list .alp360-card__media {
	grid-row: 1 / 3;
	height: auto;
	min-height: 210px;
}

.alp360-layout-list .alp360-card__body {
	grid-column: 1 / 2;
}

.alp360-layout-list .alp360-card:has(.alp360-card__media) .alp360-card__body {
	grid-column: 2 / 4;
}

.alp360-layout-list .alp360-card__footer {
	grid-column: 1 / 3;
}

.alp360-layout-list .alp360-card:has(.alp360-card__media) .alp360-card__footer {
	grid-column: 2 / 4;
}

.alp360-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0 24px 26px;
}

.alp360-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	background: #fff;
	border: 1px solid var(--alp360-border);
	border-radius: 5px;
	color: var(--alp360-text);
	font-size: 11px;
	font-weight: 650;
	text-decoration: none;
}

.alp360-pagination .page-numbers.current,
.alp360-pagination a.page-numbers:hover,
.alp360-pagination a.page-numbers:focus {
	background: var(--alp360-primary);
	border-color: var(--alp360-primary);
	color: #fff;
}

.alp360-no-results {
	padding: 64px 24px 68px;
	text-align: center;
}

.alp360-no-results__mark {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin: 0 auto 17px;
	background: #fff;
	border: 2px solid var(--alp360-primary);
	border-radius: 50%;
	color: var(--alp360-primary);
	font-size: 22px;
	font-family: Georgia, serif;
	font-weight: 700;
}

.alp360-no-results h3 {
	margin: 0 0 8px;
	color: var(--alp360-text);
	font-size: 20px;
}

.alp360-no-results p {
	margin: 0;
	color: var(--alp360-muted);
	font-size: 13px;
}

.alp360-no-results a {
	display: inline-block;
	margin-top: 17px;
	color: var(--alp360-primary);
	font-weight: 700;
}

/* Global alert banner */
.alp360-global-banner {
	z-index: 99990;
	width: 100%;
	background: #c75516;
	border: 0;
	color: #fff;
}

.alp360-global-banner--urgent {
	background: var(--alp360-urgent);
}

.alp360-global-banner--bottom {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	box-shadow: 0 -6px 25px rgba(12, 20, 34, 0.2);
}

.alp360-global-banner--top.is-sticky {
	position: sticky;
	top: 0;
}

.admin-bar .alp360-global-banner--top.is-sticky {
	top: 32px;
}

.alp360-global-banner--inline {
	position: relative;
	margin: 18px 0;
	border-radius: var(--alp360-radius);
	overflow: hidden;
}

.alp360-global-banner__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 17px;
	max-width: 1440px;
	min-height: 58px;
	margin: 0 auto;
	padding: 8px 22px;
}

.alp360-global-banner__signal {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 9px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 4px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	white-space: nowrap;
}

.alp360-global-banner__signal > span {
	width: 7px;
	height: 7px;
	background: #fff;
	border-radius: 50%;
}

.alp360-global-banner__content {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	color: #fff;
	text-decoration: none;
}

.alp360-global-banner__content strong {
	overflow: hidden;
	font-size: 13px;
	font-weight: 720;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.alp360-global-banner__content small {
	padding-left: 10px;
	border-left: 1px solid rgba(255, 255, 255, 0.35);
	font-size: 10px;
	opacity: 0.82;
	white-space: nowrap;
}

.alp360-global-banner__details {
	color: #fff;
	font-size: 10px;
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
}

.alp360-global-banner__close {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 19px;
	font-weight: 300;
	line-height: 1;
}

/* Single alert */
.alp360-single {
	margin: 24px 0;
	padding: 24px;
	background: var(--alp360-surface);
	border: 1px solid var(--alp360-border);
	border-left: 5px solid var(--alp360-primary);
	border-radius: var(--alp360-radius);
}

.alp360-single--vigilance {
	border-left-color: var(--alp360-accent);
}

.alp360-single--important {
	border-left-color: #e5661e;
}

.alp360-single--urgent {
	border-left-color: var(--alp360-urgent);
}

.alp360-single__status {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 20px;
}

.alp360-single .alp360-level,
.alp360-single .alp360-state,
.alp360-single .alp360-category {
	padding: 7px 9px;
	background: #fff;
	border: 1px solid var(--alp360-border);
	border-radius: 4px;
}

.alp360-state--active {
	color: var(--alp360-success);
}

.alp360-state--resolved,
.alp360-state--expired {
	color: #697283;
}

.alp360-single__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--alp360-border);
	border: 1px solid var(--alp360-border);
	border-radius: calc(var(--alp360-radius) * 0.6);
	overflow: hidden;
}

.alp360-single__facts > div {
	padding: 15px;
	background: #fff;
}

.alp360-single__facts span,
.alp360-single__facts strong {
	display: block;
}

.alp360-single__facts span {
	margin-bottom: 5px;
	color: var(--alp360-muted);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.alp360-single__facts strong {
	font-size: 12px;
	line-height: 1.4;
}

.alp360-single__source {
	margin: 16px 0 0;
	font-size: 11px;
}

.alp360-single__source a {
	color: var(--alp360-primary);
}

.alp360-map {
	position: relative;
	margin-top: 18px;
	border: 1px solid var(--alp360-border);
	border-radius: calc(var(--alp360-radius) * 0.7);
	overflow: hidden;
}

.alp360-map iframe {
	display: block;
	width: 100%;
	height: 330px;
	border: 0;
}

.alp360-map > a {
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 8px 11px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(15, 25, 42, 0.18);
	color: var(--alp360-primary);
	font-size: 10px;
	font-weight: 750;
	text-decoration: none;
}

.alp360-share {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--alp360-border);
}

.alp360-share > span {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.alp360-share > div {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.alp360-share a,
.alp360-share button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	margin: 0;
	padding: 0 10px;
	background: #fff;
	border: 1px solid var(--alp360-border);
	border-radius: 4px;
	color: var(--alp360-primary);
	cursor: pointer;
	font: inherit;
	font-size: 10px;
	font-weight: 700;
	text-decoration: none;
}

.alp360-share a:hover,
.alp360-share button:hover {
	border-color: var(--alp360-primary);
}

.alp360-single__content {
	margin-top: 24px;
}

/* Public submission form */
.alp360-submit-wrap {
	max-width: 1060px;
	margin: 24px auto;
	background: var(--alp360-surface);
	border: 1px solid var(--alp360-border);
	border-radius: var(--alp360-radius);
	overflow: hidden;
}

.alp360-submit-header {
	padding: 30px 34px;
	background: var(--alp360-primary);
	color: #fff;
}

.alp360-submit-header p {
	margin: 10px 0 0;
	max-width: 760px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	line-height: 1.5;
}

.alp360-form-message {
	margin: 20px 24px 0;
	padding: 14px 16px;
	border: 1px solid #cfd5de;
	border-left: 4px solid #7a8494;
	border-radius: 5px;
	background: #fff;
	color: var(--alp360-text);
	font-size: 12px;
	line-height: 1.5;
}

.alp360-form-message--success {
	border-left-color: var(--alp360-success);
	background: #f1faf5;
}

.alp360-form-message--error {
	border-left-color: var(--alp360-urgent);
	background: #fff5f5;
}

.alp360-submit-form {
	display: grid;
	gap: 18px;
	padding: 24px;
}

.alp360-submit-form fieldset {
	min-width: 0;
	margin: 0;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--alp360-border);
	border-radius: calc(var(--alp360-radius) * 0.7);
}

.alp360-submit-form legend {
	padding: 0 8px;
	color: var(--alp360-text);
	font-size: 14px;
	font-weight: 760;
}

.alp360-fieldset-note {
	margin: -3px 0 17px;
	color: var(--alp360-muted);
	font-size: 11px;
}

.alp360-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 17px;
}

.alp360-form-field {
	display: block;
	min-width: 0;
	margin: 0;
}

.alp360-form-field--full {
	grid-column: 1 / -1;
}

.alp360-form-field > span {
	display: block;
	margin-bottom: 6px;
	color: var(--alp360-text);
	font-size: 11px;
	font-weight: 680;
}

.alp360-form-field em,
.alp360-consent em {
	color: var(--alp360-urgent);
	font-style: normal;
}

.alp360-form-field input,
.alp360-form-field select,
.alp360-form-field textarea {
	display: block;
	width: 100%;
	min-height: 43px;
	margin: 0;
	padding: 9px 11px;
	background: #fff;
	border: 1px solid #cdd3dc;
	border-radius: 5px;
	box-shadow: none;
	color: var(--alp360-text);
	font: inherit;
	font-size: 12px;
	line-height: 1.45;
}

.alp360-form-field textarea {
	min-height: 140px;
	resize: vertical;
}

.alp360-form-field input[type="file"] {
	padding: 8px;
}

.alp360-form-field input:focus,
.alp360-form-field select:focus,
.alp360-form-field textarea:focus {
	border-color: var(--alp360-primary);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--alp360-primary) 17%, transparent);
	outline: 0;
}

.alp360-form-field > small {
	display: block;
	margin-top: 6px;
	color: var(--alp360-muted);
	font-size: 9px;
	line-height: 1.4;
}

.alp360-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	padding: 15px;
	background: #fff;
	border: 1px solid var(--alp360-border);
	border-radius: 6px;
	cursor: pointer;
}

.alp360-consent input {
	width: 17px;
	height: 17px;
	margin: 1px 0 0;
	flex: 0 0 17px;
	accent-color: var(--alp360-primary);
}

.alp360-consent span {
	font-size: 10px;
	line-height: 1.5;
}

.alp360-submit-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--alp360-border);
	border-radius: 6px;
}

.alp360-submit-footer p {
	margin: 0;
	color: var(--alp360-muted);
	font-size: 10px;
	line-height: 1.45;
}

.alp360-submit-footer button {
	min-height: 44px;
	margin: 0;
	padding: 0 20px;
	background: var(--alp360-primary);
	border: 1px solid var(--alp360-primary);
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 750;
	white-space: nowrap;
}

.alp360-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.alp360-directory .screen-reader-text,
.alp360-submit-wrap .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

@media (max-width: 1180px) {
	.alp360-alerts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alp360-filters {
		grid-template-columns: minmax(180px, 1.3fr) repeat(2, minmax(140px, 0.8fr)) auto auto;
	}

	.alp360-filters label:nth-of-type(4) {
		display: none;
	}
}

@media (max-width: 900px) {
	.alp360-directory__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.alp360-filter-bar {
		align-items: flex-start;
		flex-direction: column;
	}

	.alp360-filters {
		width: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alp360-filters label:nth-of-type(4) {
		display: block;
	}

	.alp360-search-field {
		grid-column: 1 / -1;
	}

	.alp360-filter-submit {
		grid-column: auto;
	}

	.alp360-layout-list .alp360-card:has(.alp360-card__media) {
		grid-template-columns: 210px minmax(0, 1fr);
	}

	.alp360-layout-list .alp360-card:has(.alp360-card__media) .alp360-card__body,
	.alp360-layout-list .alp360-card:has(.alp360-card__media) .alp360-card__footer {
		grid-column: 2 / 3;
	}

	.alp360-single__facts {
		grid-template-columns: 1fr;
	}

	.alp360-global-banner__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 10px;
	}

	.alp360-global-banner__details {
		display: none;
	}
}

@media (max-width: 782px) {
	.admin-bar .alp360-global-banner--top.is-sticky {
		top: 46px;
	}
}

@media (max-width: 680px) {
	.alp360-directory {
		margin: 16px 0;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.alp360-directory__header,
	.alp360-submit-header {
		padding: 24px 20px;
	}

	.alp360-directory__brand {
		align-items: flex-start;
	}

	.alp360-directory__brand img {
		width: 50px;
		height: 50px;
		flex-basis: 50px;
	}

	.alp360-live-status {
		padding: 8px 10px;
	}

	.alp360-filter-bar {
		padding: 14px;
	}

	.alp360-filters {
		grid-template-columns: 1fr;
	}

	.alp360-search-field,
	.alp360-filter-submit {
		grid-column: auto;
	}

	.alp360-filter-reset {
		width: 100%;
	}

	.alp360-alerts {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 14px;
	}

	.alp360-card__media {
		height: 175px;
	}

	.alp360-layout-list .alp360-card,
	.alp360-layout-list .alp360-card:has(.alp360-card__media) {
		display: flex;
		grid-template-columns: none;
	}

	.alp360-layout-list .alp360-card__media {
		width: 100%;
		height: 175px;
		min-height: 0;
	}

	.alp360-card__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.alp360-pagination {
		padding: 2px 14px 20px;
	}

	.alp360-global-banner__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		min-height: 64px;
		padding: 8px 10px;
	}

	.alp360-global-banner__signal {
		padding: 6px;
		font-size: 0;
	}

	.alp360-global-banner__signal > span {
		width: 9px;
		height: 9px;
	}

	.alp360-global-banner__content {
		display: block;
	}

	.alp360-global-banner__content strong,
	.alp360-global-banner__content small {
		display: block;
	}

	.alp360-global-banner__content strong {
		font-size: 11px;
	}

	.alp360-global-banner__content small {
		margin-top: 4px;
		padding: 0;
		border: 0;
		font-size: 9px;
	}

	.alp360-single {
		padding: 18px;
	}

	.alp360-share {
		align-items: flex-start;
		flex-direction: column;
	}

	.alp360-map iframe {
		height: 260px;
	}

	.alp360-submit-wrap {
		margin: 16px 0;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.alp360-submit-form {
		padding: 14px;
	}

	.alp360-submit-form fieldset {
		padding: 17px 14px;
	}

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

	.alp360-form-field--full {
		grid-column: auto;
	}

	.alp360-submit-footer {
		align-items: stretch;
		flex-direction: column;
	}

	.alp360-submit-footer button {
		width: 100%;
	}

	.alp360-form-message {
		margin: 14px 14px 0;
	}
}

