.shm-hub {
	--shm-bg: linear-gradient(180deg, #f5f8ff 0%, #eef4ff 100%);
	--shm-panel: rgba(255, 255, 255, 0.96);
	--shm-panel-strong: #ffffff;
	--shm-text: #10213f;
	--shm-muted: #6b7c99;
	--shm-border: rgba(197, 214, 242, 0.9);
	--shm-line: rgba(216, 226, 243, 0.95);
	--shm-blue: #2f6bff;
	--shm-blue-strong: #1f56df;
	--shm-blue-soft: #eef4ff;
	--shm-green: #16b862;
	--shm-orange: #d98214;
	--shm-red: #ea4d5c;
	--shm-shadow: 0 26px 58px rgba(23, 52, 120, 0.09);
	--shm-radius: 28px;
	--shm-header-offset: 0px;
	--shm-topbar-gap: 18px;
	color: var(--shm-text);
	font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.shm-hub * {
	box-sizing: border-box;
}

.shm-hub a {
	text-decoration: none;
}

.shm-hub__shell {
	padding: calc(var(--shm-header-offset) + 28px) 0 52px;
	background: var(--shm-bg);
}

.shm-hub__container {
	width: min(1380px, calc(100% - 40px));
	margin: 0 auto;
}

.shm-hub__topbar {
	position: sticky;
	top: calc(var(--shm-header-offset) + var(--shm-topbar-gap));
	z-index: 70;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
	padding: 18px 24px;
	border: 1px solid var(--shm-border);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(14px);
	box-shadow: 0 16px 40px rgba(21, 49, 109, 0.08);
}

.shm-hub__brand,
.shm-hub__nav,
.shm-section__title-row,
.shm-subscription-card__head,
.shm-subscription-card__layout,
.shm-subscription-card__inline-actions,
.shm-subscription-card__quick-actions,
.shm-platform-card__hero,
.shm-app-row,
.shm-app-row__info,
.shm-app-row__meta,
.shm-hub__footer,
.shm-hub__footer-links,
.shm-info-strip,
.shm-info-strip__item,
.shm-faq-item__trigger,
.shm-meta-item {
	display: flex;
}

.shm-hub__brand {
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.shm-hub__brand-mark {
	display: inline-flex;
	flex: 0 0 54px;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: linear-gradient(135deg, #67a9ff 0%, #2f6bff 100%);
	box-shadow: 0 16px 34px rgba(47, 107, 255, 0.24);
	color: #fff;
	font-size: 30px;
	font-weight: 800;
	font-style: italic;
}

.shm-hub__brand-mark.is-image {
	background: #fff;
	box-shadow: none;
	padding: 6px;
}

.shm-hub__brand-mark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.shm-hub__brand-name {
	font-size: 24px;
	font-weight: 900;
	line-height: 1.1;
}

.shm-hub__brand-tagline {
	margin-top: 4px;
	color: var(--shm-muted);
	font-size: 14px;
	font-weight: 700;
}

.shm-hub__nav {
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.shm-hub__nav-link,
.shm-hub__support-link {
	position: relative;
	padding: 12px 14px;
	color: #34466d;
	font-size: 15px;
	font-weight: 800;
	transition: color 0.18s ease;
}

.shm-hub__nav-link::after {
	content: "";
	position: absolute;
	right: 14px;
	bottom: 6px;
	left: 14px;
	height: 2px;
	border-radius: 999px;
	background: transparent;
	transition: background-color 0.18s ease;
}

.shm-hub__nav-link.is-active,
.shm-hub__nav-link:hover,
.shm-hub__support-link:hover {
	color: var(--shm-blue);
}

.shm-hub__nav-link.is-active::after,
.shm-hub__nav-link:hover::after {
	background: var(--shm-blue);
}

.shm-hub__support-link {
	padding-right: 0;
	color: var(--shm-blue);
}

.shm-section {
	margin-top: 22px;
	scroll-margin-top: calc(var(--shm-header-offset) + 126px);
}

.shm-panel {
	border: 1px solid var(--shm-border);
	border-radius: var(--shm-radius);
	background: var(--shm-panel);
	box-shadow: var(--shm-shadow);
	padding: 28px;
}

.shm-panel--hero {
	padding: 34px 32px;
	text-align: center;
}

.shm-panel__eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--shm-blue-soft);
	color: var(--shm-blue);
	font-size: 12px;
	font-weight: 800;
}

.shm-panel__title,
.shm-section__title {
	margin: 0;
	color: var(--shm-text);
	font-size: clamp(28px, 2vw, 36px);
	font-weight: 900;
	line-height: 1.2;
}

.shm-panel__description,
.shm-section__description {
	margin: 10px 0 0;
	color: var(--shm-muted);
	font-size: 15px;
	line-height: 1.8;
}

.shm-section__head {
	margin-bottom: 20px;
}

.shm-section__verify {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px 4px 8px;
	border-radius: 999px;
	background: rgba(47, 107, 255, 0.09);
	color: var(--shm-blue);
	font-size: 12px;
	font-weight: 800;
}

.shm-section__verify::before {
	content: "";
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 10.5L8.25 13.25L14.5 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
			center/12px 12px no-repeat,
		linear-gradient(135deg, #4b8cff 0%, #2f6bff 100%);
	box-shadow: 0 6px 16px rgba(47, 107, 255, 0.22);
}

.shm-subscriptions {
	display: grid;
	gap: 18px;
}

.shm-subscription-card {
	position: relative;
	padding: 24px 22px 22px;
	border: 1px solid var(--shm-line);
	border-radius: 24px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.shm-subscription-card__head {
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.shm-subscription-card__title {
	margin: 0;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.25;
}

.shm-subscription-card__subtitle {
	margin: 8px 0 0;
	color: var(--shm-muted);
	font-size: 14px;
	line-height: 1.7;
}

.shm-status {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
}

.shm-status--head {
	display: none;
}

.shm-status.is-success {
	background: rgba(22, 184, 98, 0.12);
	color: var(--shm-green);
}

.shm-status.is-info {
	background: rgba(47, 107, 255, 0.12);
	color: var(--shm-blue);
}

.shm-status.is-warning {
	background: rgba(217, 130, 20, 0.12);
	color: var(--shm-orange);
}

.shm-status.is-danger {
	background: rgba(234, 77, 92, 0.12);
	color: var(--shm-red);
}

.shm-status.is-neutral {
	background: rgba(114, 128, 154, 0.14);
	color: #53627d;
}

.shm-subscription-card__layout {
	position: relative;
	padding-right: 350px;
}

.shm-subscription-card__main {
	flex: 1 1 auto;
	min-width: 0;
}

.shm-subscription-card__status-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
}

.shm-subscription-card__status-label {
	color: #465779;
	font-size: 13px;
	font-weight: 800;
}

.shm-subscription-card__meta {
	position: absolute;
	top: 0;
	right: 0;
	width: 320px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.shm-subscription-card__layout.is-compact {
	padding-right: 0;
}

.shm-subscription-card__layout.is-compact .shm-subscription-card__meta {
	position: static;
	width: auto;
}

.shm-subscription-card.is-compact .shm-subscription-card__quick-actions {
	width: 100%;
	margin-right: 0;
}

.shm-subscription-card.has-qr .shm-subscription-card__layout {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding-right: 0;
}

.shm-subscription-card.has-qr .shm-subscription-card__meta {
	position: static;
	width: 300px;
}

.shm-subscription-card.has-qr .shm-subscription-card__quick-actions {
	width: 100%;
	margin-right: 0;
}

.shm-subscription-card__label {
	display: block;
	margin-bottom: 8px;
	color: #465779;
	font-size: 13px;
	font-weight: 800;
}

.shm-subscription-card__input-wrap {
	position: relative;
}

.shm-subscription-card__input {
	width: 100%;
	height: 50px;
	padding: 0 92px 0 16px;
	border: 1px solid var(--shm-line);
	border-radius: 12px;
	background: #fff;
	color: #243555;
	font-size: 14px;
	font-weight: 600;
	box-shadow: inset 0 1px 2px rgba(16, 33, 63, 0.03);
}

.shm-subscription-card__inline-actions {
	position: absolute;
	top: 50%;
	right: 12px;
	align-items: center;
	gap: 6px;
	transform: translateY(-50%);
}

.shm-inline-icon {
	position: relative;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: transparent;
	font-size: 0;
	cursor: pointer;
}

.shm-inline-icon::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background-color: #f3f7ff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px 16px;
	box-shadow: inset 0 0 0 1px rgba(213, 224, 244, 0.95);
}

.shm-inline-icon:hover::before {
	background-color: #eaf2ff;
	box-shadow: inset 0 0 0 1px rgba(159, 188, 255, 0.95);
}

.shm-inline-icon[data-shm-toggle-visibility]::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M1.667 10S4.697 4.583 10 4.583S18.333 10 18.333 10S15.303 15.417 10 15.417S1.667 10 1.667 10Z' stroke='%23617395' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='10' cy='10' r='2.5' stroke='%23617395' stroke-width='1.7'/%3E%3C/svg%3E");
}

.shm-inline-icon:not([data-shm-toggle-visibility])::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='7' y='3.75' width='8.5' height='11' rx='1.6' stroke='%23617395' stroke-width='1.6'/%3E%3Cpath d='M5 7.25H4.4C3.627 7.25 3 7.877 3 8.65V15.6C3 16.373 3.627 17 4.4 17H10.85C11.623 17 12.25 16.373 12.25 15.6V15' stroke='%23617395' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.shm-subscription-card__quick-actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 12px;
	width: calc(100% + 350px);
	margin-top: 20px;
	margin-right: -350px;
}

.shm-action-button {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-height: 68px;
	padding: 12px 18px;
	border: 1px solid #dde6f6;
	border-radius: 14px;
	background: #fff;
	color: #1d325b;
	box-shadow: 0 10px 24px rgba(33, 64, 132, 0.03);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.shm-action-button:hover,
.shm-inline-icon:hover,
.shm-download-button:hover,
.shm-platform-card__footer-link:hover,
.shm-guide-card:hover {
	transform: translateY(-1px);
}

.shm-action-button.is-primary {
	border-color: rgba(47, 107, 255, 0.36);
	color: var(--shm-blue);
}

.shm-action-button__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 13px;
	background: var(--shm-blue-soft);
	color: var(--shm-blue);
	font-size: 18px;
	font-weight: 800;
	flex: 0 0 38px;
}

.shm-action-button strong,
.shm-action-button span {
	display: block;
}

.shm-action-button > span:last-child {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
}

.shm-action-button > span:last-child strong {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
}

.shm-action-button small {
	display: block;
	order: -1;
	margin-top: 0;
	color: var(--shm-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
}

.shm-meta-item {
	position: relative;
	align-items: center;
	gap: 12px;
	padding: 0;
	border: 0;
	background: transparent;
}

.shm-meta-item:not(.shm-qr-card)::before {
	content: "";
	width: 28px;
	height: 28px;
	border-radius: 999px;
	flex: 0 0 28px;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 5V10L13.25 12' stroke='%23617395' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='10' cy='10' r='6.5' stroke='%23617395' stroke-width='1.7'/%3E%3C/svg%3E")
			center/15px 15px no-repeat,
		#f5f8ff;
	box-shadow: inset 0 0 0 1px rgba(213, 224, 244, 0.95);
}

.shm-meta-item span {
	color: var(--shm-muted);
	font-size: 12px;
	font-weight: 700;
	flex: 0 0 78px;
}

.shm-meta-item strong {
	color: var(--shm-text);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.5;
	flex: 1 1 auto;
}

.shm-qr-card {
	padding: 14px 16px 12px;
	border: 1px solid var(--shm-line);
	border-radius: 18px;
	background: rgba(247, 250, 255, 0.78);
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.shm-qr-card__image {
	width: min(180px, 100%);
	margin: 2px auto 0;
	padding: 8px;
	border-radius: 16px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(218, 227, 243, 0.9);
}

.shm-qr-card__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}

.shm-qr-card em {
	display: block;
	margin-top: 6px;
	color: var(--shm-muted);
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.6;
}

.shm-download-grid,
.shm-guide-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.shm-platform-card,
.shm-guide-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--shm-line);
	border-radius: 24px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	box-shadow: 0 16px 34px rgba(22, 47, 105, 0.05);
}

.shm-platform-card {
	padding: 18px;
}

.shm-platform-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 6px 10px;
	border-radius: 12px 12px 12px 4px;
	background: linear-gradient(135deg, #2f6bff 0%, #4d8bff 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.shm-platform-card__hero {
	align-items: center;
	gap: 16px;
	margin-top: 18px;
}

.shm-platform-card__icon {
	display: inline-flex;
	flex: 0 0 84px;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	border-radius: 24px;
	background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
	font-size: 40px;
	font-weight: 900;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.shm-platform-card__icon img,
.shm-app-row__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.shm-platform-card__title {
	margin: 0;
	font-size: 24px;
	font-weight: 900;
}

.shm-platform-card__subtitle {
	margin: 8px 0 0;
	color: var(--shm-muted);
	font-size: 14px;
	line-height: 1.7;
}

.shm-chip-group,
.shm-app-row__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
}

.shm-chip {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 999px;
	background: #eff5ff;
	color: var(--shm-blue);
	font-size: 11px;
	font-weight: 700;
}

.shm-platform-card__apps {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.shm-app-row {
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px;
	border: 1px solid var(--shm-line);
	border-radius: 18px;
	background: rgba(246, 249, 255, 0.78);
}

.shm-app-row__info {
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.shm-app-row__icon {
	display: inline-flex;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 6px 16px rgba(19, 42, 100, 0.06);
	font-size: 20px;
	font-weight: 900;
}

.shm-app-row__name {
	font-size: 17px;
	font-weight: 800;
	line-height: 1.3;
}

.shm-app-row__version {
	color: var(--shm-muted);
	font-size: 12px;
	font-weight: 700;
}

.shm-download-button,
.shm-platform-card__footer-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid rgba(47, 107, 255, 0.22);
	border-radius: 12px;
	background: linear-gradient(180deg, #3a7dff 0%, #2f6bff 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
}

.shm-platform-card__footer-link {
	width: 100%;
	margin-top: 18px;
	background: #fff;
	color: var(--shm-blue);
}

.shm-guide-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shm-guide-card {
	display: block;
	padding: 22px;
	color: inherit;
}

.shm-guide-card h3 {
	margin: 0;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.45;
}

.shm-guide-card p {
	margin: 10px 0 0;
	color: var(--shm-muted);
	font-size: 14px;
	line-height: 1.8;
}

.shm-guide-card span {
	display: inline-flex;
	margin-top: 18px;
	color: var(--shm-blue);
	font-size: 14px;
	font-weight: 800;
}

.shm-faq-list {
	display: grid;
	gap: 14px;
}

.shm-faq-item {
	border: 1px solid var(--shm-line);
	border-radius: 18px;
	background: rgba(248, 251, 255, 0.7);
}

.shm-faq-item__trigger {
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 20px;
	border: 0;
	background: transparent;
	color: var(--shm-text);
	font-size: 16px;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.shm-faq-item__trigger i {
	font-style: normal;
	font-size: 24px;
	line-height: 1;
}

.shm-faq-item__content {
	padding: 0 20px 18px;
	color: var(--shm-muted);
	font-size: 14px;
	line-height: 1.9;
}

.shm-faq-item__content p {
	margin: 0;
}

.shm-info-strip {
	gap: 16px;
}

.shm-info-strip__item {
	flex: 1 1 0;
	gap: 14px;
	padding: 20px 22px;
	border: 1px solid var(--shm-border);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--shm-shadow);
}

.shm-info-strip__icon {
	display: inline-flex;
	flex: 0 0 52px;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 18px;
	background: var(--shm-blue-soft);
	color: var(--shm-blue);
	font-size: 26px;
	font-weight: 900;
}

.shm-info-strip__item h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 900;
}

.shm-info-strip__item p {
	margin: 0;
	color: var(--shm-muted);
	font-size: 14px;
	line-height: 1.8;
}

.shm-rich-content {
	color: #22365d;
	font-size: 15px;
	line-height: 1.9;
}

.shm-rich-content > :first-child {
	margin-top: 0;
}

.shm-hub__footer {
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
	padding: 4px 8px;
	color: var(--shm-muted);
	font-size: 14px;
	font-weight: 700;
}

.shm-hub__footer-links {
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 16px;
}

.shm-hub__footer-links a {
	color: inherit;
}

.shm-hub__password-form {
	width: min(520px, 100%);
	margin: 24px auto 0;
}

.shm-hub__password-form .post-password-form {
	display: grid;
	gap: 12px;
	text-align: left;
}

.shm-hub__password-form .post-password-form p {
	margin: 0;
	color: var(--shm-muted);
	font-size: 14px;
	line-height: 1.7;
}

.shm-hub__password-form label {
	display: grid;
	gap: 8px;
	color: var(--shm-text);
	font-size: 13px;
	font-weight: 800;
}

.shm-hub__password-form input[type="password"] {
	width: 100%;
	height: 52px;
	padding: 0 16px;
	border: 1px solid var(--shm-line);
	border-radius: 16px;
	background: #fff;
}

.shm-hub__password-form input[type="submit"] {
	height: 52px;
	border: 0;
	border-radius: 16px;
	background: linear-gradient(180deg, #3a7dff 0%, #2f6bff 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
}

.shm-toast {
	position: fixed;
	left: 50%;
	bottom: 30px;
	z-index: 9999;
	padding: 12px 18px;
	border-radius: 999px;
	background: rgba(16, 33, 63, 0.92);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 12px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.shm-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

@media (max-width: 1200px) {
	.shm-subscription-card__layout {
		padding-right: 0;
	}

	.shm-subscription-card__meta {
		position: static;
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shm-subscription-card__quick-actions {
		width: 100%;
		margin-right: 0;
	}

	.shm-download-grid,
	.shm-guide-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shm-info-strip {
		flex-direction: column;
	}
}

@media (max-width: 900px) {
	.shm-hub__topbar,
	.shm-hub__brand,
	.shm-hub__nav,
	.shm-app-row,
	.shm-app-row__info,
	.shm-hub__footer {
		flex-direction: column;
		align-items: stretch;
	}

	.shm-hub__nav {
		justify-content: flex-start;
	}

	.shm-subscription-card__meta {
		grid-template-columns: 1fr;
	}

	.shm-subscription-card__quick-actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.shm-hub__shell {
		padding: calc(var(--shm-header-offset) + 18px) 0 34px;
	}

	.shm-hub__container {
		width: calc(100% - 24px);
	}

	.shm-hub__topbar {
		position: static;
		padding: 18px;
		border-radius: 22px;
	}

	.shm-panel,
	.shm-subscription-card,
	.shm-platform-card,
	.shm-guide-card,
	.shm-info-strip__item {
		padding: 20px;
		border-radius: 22px;
	}

	.shm-hub__brand-name {
		font-size: 22px;
	}

	.shm-panel__title,
	.shm-section__title {
		font-size: 24px;
	}

	.shm-download-grid,
	.shm-guide-grid {
		grid-template-columns: 1fr;
	}

	.shm-subscription-card__input {
		height: 52px;
		padding-right: 96px;
	}

	.shm-action-button {
		width: 100%;
		justify-content: flex-start;
	}

	.shm-subscription-card__quick-actions {
		grid-template-columns: 1fr;
	}

	.shm-info-strip__item {
		flex-direction: column;
	}

	.shm-hub__footer-links {
		justify-content: flex-start;
	}
}
