.apps-page {
	background: #f5f7fb;
	color: #252c4f;
	font-family: Verdana, sans-serif;
	margin: 0 auto;
	max-width: 1100px;
	padding: 18px 0 34px;
}

.apps-page * {
	box-sizing: border-box;
}

.apps-hero {
	align-items: center;
	background: #ffffff;
	border: 1px solid #dce3ef;
	border-radius: 8px;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin: 0 auto 16px;
	padding: 18px;
}

.apps-title {
	color: #252c4f;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.2;
	margin: 0;
}

.apps-subtitle {
	color: #5a6476;
	font-size: 12px;
	line-height: 1.5;
	margin: 6px 0 0;
}

.apps-search {
	min-width: 260px;
	position: relative;
	width: 32%;
}

.apps-search input {
	background: #f9fbff;
	border: 1px solid #c9d4e5;
	border-radius: 8px;
	color: #252c4f;
	font-size: 13px;
	height: 40px;
	padding: 0 12px;
	width: 100%;
}

.apps-search input:focus {
	border-color: #31408c;
	box-shadow: 0 0 0 3px rgba(49, 64, 140, 0.14);
	outline: none;
}

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

.apps-section {
	background: #ffffff;
	border: 1px solid #dce3ef;
	border-radius: 8px;
	padding: 14px;
}

.apps-section-head {
	align-items: baseline;
	border-bottom: 1px solid #edf1f7;
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
	padding-bottom: 10px;
}

.apps-section h2 {
	color: #252c4f;
	font-size: 16px;
	line-height: 1.2;
	margin: 0;
}

.apps-count {
	color: #6c778a;
	font-size: 11px;
	white-space: nowrap;
}

.apps-list {
	background: transparent;
	border: 0;
	display: grid;
	gap: 8px;
	height: auto;
	list-style: none;
	margin: 0;
	overflow: visible;
	padding: 0;
	width: auto;
}

.apps-list-apps {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.apps-list-utils {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.apps-card {
	clear: none;
	float: none;
	font-size: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.apps-link {
	align-items: center;
	background: #f9fbff;
	border: 1px solid #dce3ef;
	border-left: 4px solid #31408c;
	border-radius: 8px;
	color: #252c4f !important;
	display: flex;
	font-size: 12px;
	font-weight: bold;
	gap: 8px;
	line-height: 1.28;
	min-height: 56px;
	padding: 8px;
	text-align: left;
	text-decoration: none !important;
	transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
	width: 100%;
}

.apps-link:hover,
.apps-link:focus {
	background: #ffffff;
	border-color: #b8c5d9;
	box-shadow: 0 7px 18px rgba(37, 44, 79, 0.09);
	color: #252c4f !important;
	outline: none;
	transform: translateY(-1px);
}

.apps-link:focus-visible {
	box-shadow: 0 0 0 3px rgba(49, 64, 140, 0.18), 0 7px 18px rgba(37, 44, 79, 0.09);
}

.apps-badge {
	align-items: center;
	background: #e9eef8;
	border-radius: 6px;
	color: #31408c;
	display: inline-flex;
	flex: 0 0 32px;
	font-size: 10px;
	font-weight: bold;
	height: 28px;
	justify-content: center;
	letter-spacing: 0;
}

.apps-link.apps-accent-green {
	border-left-color: #2f7d57;
}

.apps-link.apps-accent-green .apps-badge {
	background: #e5f4ec;
	color: #2f7d57;
}

.apps-link.apps-accent-amber {
	border-left-color: #b26b12;
}

.apps-link.apps-accent-amber .apps-badge {
	background: #fff1dc;
	color: #8a520d;
}

.apps-link.apps-accent-red {
	border-left-color: #b54848;
}

.apps-link.apps-accent-red .apps-badge {
	background: #fde9e9;
	color: #9d3030;
}

.apps-link.apps-accent-teal {
	border-left-color: #16737a;
}

.apps-link.apps-accent-teal .apps-badge {
	background: #e1f3f4;
	color: #16737a;
}

.apps-name {
	display: block;
	min-width: 0;
	overflow-wrap: anywhere;
}

.apps-empty {
	background: #ffffff;
	border: 1px dashed #c9d4e5;
	border-radius: 8px;
	color: #6c778a;
	display: none;
	font-size: 13px;
	margin-top: 16px;
	padding: 14px;
	text-align: center;
}

.apps-page.is-filter-empty .apps-empty {
	display: block;
}

.apps-page.is-filter-empty .apps-grid {
	display: none;
}

@media (max-width: 980px) {
	.apps-grid {
		grid-template-columns: 1fr;
	}

	.apps-list-apps,
	.apps-list-utils {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.apps-page {
		padding: 12px;
		width: 100%;
	}

	.apps-hero {
		align-items: stretch;
		flex-direction: column;
	}

	.apps-search {
		min-width: 0;
		width: 100%;
	}
}

@media (max-width: 560px) {
	.apps-list-apps,
	.apps-list-utils {
		grid-template-columns: 1fr;
	}
}
