:root {
	--ntst-ink: #17202a;
	--ntst-muted: #64748b;
	--ntst-line: #e2e8f0;
	--ntst-soft: #f8fafc;
	--ntst-blue: #075985;
	--ntst-blue-soft: #eff6ff;
	--ntst-green: #059669;
}

.ntst-kicker {
	color: var(--ntst-blue);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin: 0 0 0.3rem;
	text-transform: uppercase;
}

.ntst-library-header {
	align-items: flex-end;
	border-bottom: 1px solid var(--ntst-line);
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
}

.ntst-library-header h2,
.ntst-tune-group h3 {
	color: var(--ntst-ink);
	margin: 0;
}

.ntst-library-header > span {
	color: var(--ntst-muted);
	font-size: 0.9rem;
}

.ntst-tune-group {
	margin: 0 0 2.75rem;
}

.ntst-tune-group > h3 {
	border-bottom: 2px solid var(--ntst-line);
	margin-bottom: 1.2rem;
	padding-bottom: 0.65rem;
}

.ntst-tune-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.ntst-tune-card {
	display: contents;
}

.ntst-tune-toggle {
	background: #fff;
	border: 1px solid var(--ntst-line);
	border-radius: 8px;
	box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
	color: var(--ntst-ink);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 0 0 0.9rem;
	text-align: left;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ntst-tune-toggle:hover,
.ntst-tune-toggle:focus-visible,
.ntst-tune-toggle[aria-expanded="true"] {
	border-color: #7dd3fc;
	box-shadow: 0 8px 24px rgba(2, 132, 199, 0.12);
	transform: translateY(-2px);
}

.ntst-tune-image {
	aspect-ratio: 4 / 3;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.ntst-tune-toggle > span,
.ntst-tune-toggle > small {
	padding-left: 0.9rem;
	padding-right: 0.9rem;
}

.ntst-tune-toggle > span {
	font-weight: 700;
	margin-top: 0.8rem;
}

.ntst-tune-toggle > small {
	color: var(--ntst-muted);
	font-size: 0.78rem;
	margin-top: 0.25rem;
}

.ntst-tune-panel {
	background: var(--ntst-soft);
	border: 1px solid var(--ntst-line);
	border-radius: 10px;
	grid-column: 1 / -1;
	margin: 0.35rem 0 1rem;
	padding: 1.25rem;
}

.ntst-section-list {
	display: grid;
	gap: 0.65rem;
}

.ntst-learning-section {
	background: #fff;
	border: 1px solid var(--ntst-line);
	border-radius: 7px;
	overflow: hidden;
}

.ntst-section-toggle {
	align-items: center;
	background: #fff;
	border: 0;
	color: var(--ntst-ink);
	cursor: pointer;
	display: flex;
	font-weight: 700;
	justify-content: space-between;
	padding: 0.9rem 1rem;
	text-align: left;
	width: 100%;
}

.ntst-section-toggle:hover,
.ntst-section-toggle[aria-expanded="true"] {
	background: var(--ntst-blue-soft);
	color: var(--ntst-blue);
}

.ntst-section-toggle > span:last-child {
	font-size: 1.3rem;
	transition: transform 160ms ease;
}

.ntst-section-toggle[aria-expanded="true"] > span:last-child {
	transform: rotate(45deg);
}

.ntst-section-content {
	border-top: 1px solid var(--ntst-line);
	padding: 1rem;
}

.ntst-section-description {
	background: var(--ntst-soft);
	border-left: 3px solid #38bdf8;
	margin-bottom: 1rem;
	padding: 0.75rem 0.9rem;
}

.ntst-section-description > :last-child {
	margin-bottom: 0;
}

.ntst-iframe-wrap {
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	padding-top: 56.25%;
	position: relative;
}

.ntst-iframe-wrap iframe {
	border: 0;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.ntst-video {
	background: #000;
	border-radius: 8px;
	display: block;
	height: auto;
	width: 100%;
}

.ntst-empty-state,
.ntst-inline-notice {
	background: var(--ntst-soft);
	border: 1px solid var(--ntst-line);
	border-radius: 8px;
	padding: 1.25rem;
}

.ntst-guide-intro {
	background: linear-gradient(135deg, var(--ntst-blue-soft), #fff);
	border: 1px solid #bae6fd;
	border-radius: 10px;
	margin-bottom: 1.5rem;
	padding: 1.5rem;
}

.ntst-guide-intro h2 {
	color: var(--ntst-ink);
	margin: 0.1rem 0 0.85rem;
}

.ntst-guide-intro p:last-child {
	margin-bottom: 0;
}

.ntst-guide-section {
	align-items: flex-start;
	border-bottom: 1px solid var(--ntst-line);
	display: grid;
	gap: 1rem;
	grid-template-columns: 2.25rem minmax(0, 1fr);
	padding: 1.35rem 0;
}

.ntst-guide-section:last-child {
	border-bottom: 0;
}

.ntst-guide-number {
	align-items: center;
	background: var(--ntst-blue);
	border-radius: 50%;
	color: #fff;
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 800;
	height: 2.25rem;
	justify-content: center;
	width: 2.25rem;
}

.ntst-guide-section h3 {
	color: var(--ntst-ink);
	font-size: 1.12rem;
	margin: 0.3rem 0 0.75rem;
}

.ntst-guide-section p,
.ntst-guide-section li {
	color: #475569;
}

.ntst-guide-section ul {
	margin: 0.4rem 0 0.8rem;
	padding-left: 1.2rem;
}

.ntst-guide-section li + li {
	margin-top: 0.45rem;
}

.ntst-guide-tip {
	background: var(--ntst-soft);
	border-left: 3px solid #38bdf8;
	margin: 1rem 0 0;
	padding: 0.75rem 0.9rem;
}

.ntst-support-line {
	border-top: 1px solid var(--ntst-line);
	padding-top: 1rem;
}

.ntst-gift-card-intro,
.ntst-gift-card-help {
	background: var(--ntst-blue-soft);
	border-left: 4px solid #0284c7;
	border-radius: 7px;
	color: #334155;
	margin: 0 0 1.25rem;
	padding: 1rem;
}

.ntst-gift-card-intro strong,
.ntst-gift-card-help strong {
	color: var(--ntst-blue);
}

.ntst-gift-card-intro p,
.ntst-gift-card-help p {
	margin: 0.35rem 0 0;
}

.ntst-gift-card-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ntst-gift-card-purchase {
	background: #fff;
	border: 1px solid var(--ntst-line);
	border-radius: 9px;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
	display: flex;
	gap: 1rem;
	padding: 1.15rem;
}

.ntst-gift-card-purchase__mark {
	align-items: center;
	background: var(--ntst-blue);
	border-radius: 8px;
	color: #fff;
	display: flex;
	flex: 0 0 3rem;
	font-size: 0.78rem;
	font-weight: 800;
	height: 3rem;
	justify-content: center;
	letter-spacing: 0.05em;
}

.ntst-gift-card-purchase__body {
	min-width: 0;
}

.ntst-gift-card-purchase h3 {
	color: var(--ntst-ink);
	font-size: 1rem;
	margin: 0 0 0.75rem;
}

.ntst-gift-card-purchase dl {
	font-size: 0.86rem;
	margin: 0;
}

.ntst-gift-card-purchase dl > div {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 5rem minmax(0, 1fr);
	margin-bottom: 0.35rem;
}

.ntst-gift-card-purchase dt {
	color: var(--ntst-muted);
	font-weight: 600;
}

.ntst-gift-card-purchase dd {
	margin: 0;
	overflow-wrap: anywhere;
}

.ntst-gift-card-email-note {
	border-top: 1px solid var(--ntst-line);
	color: var(--ntst-blue);
	font-size: 0.82rem;
	margin: 0.75rem 0 0;
	padding-top: 0.65rem;
}

.ntst-gift-card-empty h3 {
	margin-top: 0;
}

.ntst-gift-card-balance {
	border-top: 1px solid var(--ntst-line);
	margin-top: 2rem;
	padding-top: 1.5rem;
}

.ntst-lodge-card {
	background: #fff;
	border: 1px solid var(--ntst-line);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
	color: var(--ntst-ink);
	margin: 1rem auto;
	max-width: 680px;
	padding: 2rem 2.25rem;
	text-align: center;
}

.ntst-lodge-card.is-unlocked {
	background: linear-gradient(145deg, #f0fdfa, #fff);
	border-color: #99f6e4;
}

.ntst-lodge-emblem {
	font-size: 2.75rem;
	line-height: 1;
	margin-bottom: 0.8rem;
}

.ntst-lodge-card h3 {
	color: var(--ntst-ink);
	font-size: 1.45rem;
	margin: 0.65rem 0;
}

.ntst-lodge-card > p {
	color: #475569;
}

.ntst-lodge-progress {
	background: #e2e8f0;
	border-radius: 999px;
	height: 0.85rem;
	margin: 1.75rem 0 1.1rem;
	overflow: hidden;
}

.ntst-lodge-progress > span {
	background: linear-gradient(90deg, #0284c7, var(--ntst-blue));
	display: block;
	height: 100%;
	transition: width 500ms ease;
}

.ntst-lodge-totals {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 1rem 0 1.75rem;
}

.ntst-lodge-totals p {
	background: var(--ntst-soft);
	border: 1px solid var(--ntst-line);
	border-radius: 8px;
	margin: 0;
	padding: 0.85rem;
}

.ntst-lodge-totals span,
.ntst-lodge-totals strong {
	display: block;
}

.ntst-lodge-totals span {
	color: var(--ntst-muted);
	font-size: 0.75rem;
	margin-bottom: 0.25rem;
	text-transform: uppercase;
}

.ntst-lodge-totals strong {
	color: var(--ntst-ink);
}

.ntst-lodge-remaining {
	color: var(--ntst-blue) !important;
	font-weight: 700;
	margin: 0;
}

.ntst-lodge-button.button {
	background: var(--ntst-blue);
	border-color: var(--ntst-blue);
	color: #fff;
	font-weight: 800;
	margin-top: 0.75rem;
}

.ntst-lodge-intro {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid #ccfbf1;
	border-radius: 7px;
	margin: 1.25rem 0 0;
	padding: 0.85rem;
}

.ntst-lodge-preview-note {
	background: #fefce8;
	border: 1px solid #fde68a;
	border-radius: 7px;
	font-size: 0.8rem;
	padding: 0.7rem;
}

.ntst-status-pill {
	border-radius: 999px;
	font-size: 0.72rem !important;
	font-weight: 800;
	letter-spacing: 0.05em;
	padding: 0.35rem 0.7rem;
	text-transform: uppercase;
}

.ntst-status-pill.is-locked {
	background: #f1f5f9;
	color: #64748b;
}

.ntst-status-pill.is-unlocked {
	background: #ccfbf1;
	color: #0f766e;
}

.ntst-playlist-notice.is-success {
	background: #ecfdf5;
	border-color: #a7f3d0;
}

.ntst-playlist-notice.is-error {
	background: #fef2f2;
	border-color: #fecaca;
}

.ntst-playlist-notice p {
	margin: 0;
}

.ntst-playlist-stats {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 1.25rem;
}

.ntst-playlist-stats > div {
	background: var(--ntst-soft);
	border: 1px solid var(--ntst-line);
	border-radius: 9px;
	padding: 1rem;
}

.ntst-playlist-stats strong,
.ntst-playlist-stats span {
	display: block;
}

.ntst-playlist-stats strong {
	color: var(--ntst-blue);
	font-size: 1.7rem;
	line-height: 1;
}

.ntst-playlist-stats span {
	color: var(--ntst-muted);
	font-size: 0.82rem;
	margin-top: 0.4rem;
}

.ntst-playlist-option {
	background: #fff;
	border: 1px solid var(--ntst-line);
	border-radius: 10px;
	margin-bottom: 1.25rem;
	padding: 1.3rem;
}

.ntst-playlist-option.is-recommended {
	background: linear-gradient(135deg, var(--ntst-blue-soft), #fff);
	border-color: #bae6fd;
}

.ntst-playlist-option h3 {
	color: var(--ntst-ink);
	margin: 0 0 0.55rem;
}

.ntst-playlist-option > p:not(.ntst-playlist-option-label) {
	color: #475569;
}

.ntst-playlist-option-label {
	color: var(--ntst-blue);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 0.35rem;
	text-transform: uppercase;
}

.ntst-playlist-copy-row {
	align-items: stretch;
	display: flex;
	gap: 0.6rem;
	margin-top: 1rem;
}

.ntst-playlist-copy-row input {
	background: #fff;
	border: 1px solid #94a3b8;
	border-radius: 5px;
	box-sizing: border-box;
	flex: 1;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 0.78rem;
	min-width: 0;
	padding: 0.65rem;
}

.ntst-playlist-copy.button,
.ntst-playlist-download.button {
	background: var(--ntst-blue);
	border-color: var(--ntst-blue);
	color: #fff;
	font-weight: 700;
}

.ntst-playlist-copy-status {
	color: var(--ntst-green) !important;
	font-size: 0.78rem;
	font-weight: 700;
	min-height: 1em;
}

.ntst-playlist-library {
	border-top: 1px solid var(--ntst-line);
	margin-top: 2rem;
	padding-top: 1.5rem;
}

.ntst-playlist-library > h3 {
	color: var(--ntst-ink);
	margin-top: 0;
}

.ntst-playlist-tunes {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ntst-playlist-tunes article {
	background: var(--ntst-soft);
	border: 1px solid var(--ntst-line);
	border-radius: 8px;
	padding: 1rem;
}

.ntst-playlist-tunes article > strong {
	color: var(--ntst-ink);
}

.ntst-playlist-tunes ul {
	color: #475569;
	font-size: 0.84rem;
	margin: 0.55rem 0 0;
	padding-left: 1.15rem;
}

.ntst-playlist-tunes li + li {
	margin-top: 0.25rem;
}

.ntst-playlist-help,
.ntst-playlist-security {
	background: #fff;
	border: 1px solid var(--ntst-line);
	border-radius: 8px;
	margin-top: 1rem;
	padding: 0;
}

.ntst-playlist-help summary,
.ntst-playlist-security summary {
	color: var(--ntst-ink);
	cursor: pointer;
	font-weight: 700;
	padding: 1rem;
}

.ntst-playlist-help > div,
.ntst-playlist-security > p,
.ntst-playlist-security > form {
	border-top: 1px solid var(--ntst-line);
	margin: 0;
	padding: 1rem;
}

.ntst-playlist-help h4:first-child {
	margin-top: 0;
}

.ntst-playlist-security > form {
	padding-top: 0;
}

.ntst-sheet-music-hero {
	align-items: center;
	background: #f9f4e8;
	border-left: 4px solid #d4af37;
	border-radius: 6px;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	padding: 1.4rem 1.5rem;
}

.ntst-sheet-music-hero h2 {
	color: var(--ntst-ink);
	margin: 0 0 0.45rem;
}

.ntst-sheet-music-hero p:last-child {
	color: #475569;
	margin: 0;
	max-width: 42rem;
}

.ntst-sheet-music-download.button {
	background: #b48a13;
	border-color: #b48a13;
	color: #fff;
	flex: 0 0 auto;
	font-weight: 700;
	white-space: nowrap;
}

.ntst-sheet-music-download.button:hover,
.ntst-sheet-music-download.button:focus-visible {
	background: #8f6c0c;
	border-color: #8f6c0c;
	color: #fff;
}

.ntst-sheet-music-stats {
	display: grid;
	gap: 0.8rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 1.25rem 0;
}

.ntst-sheet-music-stats span {
	background: var(--ntst-soft);
	border: 1px solid var(--ntst-line);
	border-radius: 8px;
	color: var(--ntst-muted);
	padding: 0.85rem 1rem;
}

.ntst-sheet-music-stats strong {
	color: var(--ntst-ink);
	font-size: 1.15rem;
	margin-right: 0.25rem;
}

.ntst-sheet-music-list {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ntst-sheet-music-list article {
	background: #fff;
	border: 1px solid var(--ntst-line);
	border-radius: 8px;
	padding: 1rem;
}

.ntst-sheet-music-list article > strong {
	color: var(--ntst-ink);
}

.ntst-sheet-music-list ul {
	color: var(--ntst-muted);
	font-size: 0.86rem;
	margin: 0.5rem 0 0;
	padding-left: 1.15rem;
}

.ntst-sheet-music-list li + li {
	margin-top: 0.25rem;
}

.ntst-sheet-music-note {
	color: var(--ntst-muted);
	font-size: 0.84rem;
	margin: 1rem 0 0;
}

.ntst-sheet-music-empty {
	margin-top: 1.25rem;
}

.ntst-reward-section > h3 {
	color: var(--ntst-ink);
	margin-bottom: 0.35rem;
}

.ntst-reward-section > p {
	color: var(--ntst-muted);
	margin-top: 0;
}

.ntst-reward-grid {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 1.25rem;
}

.ntst-reward-card {
	background: #fff;
	border: 1px solid var(--ntst-line);
	border-radius: 9px;
	padding: 1rem;
}

.ntst-reward-card > div:first-child {
	align-items: baseline;
	display: flex;
	gap: 0.55rem;
	justify-content: space-between;
}

.ntst-reward-card > div:first-child strong {
	color: #9a7510;
	font-size: 1.2rem;
}

.ntst-reward-card > div:first-child span {
	color: var(--ntst-ink);
	font-weight: 700;
	text-align: right;
}

.ntst-reward-card > small {
	color: var(--ntst-muted);
	display: block;
	font-weight: 700;
	margin-top: 0.45rem;
}

.ntst-reward-card.is-complete {
	background: #f0fdf4;
	border-color: #86efac;
}

.ntst-reward-card.is-complete > small {
	color: var(--ntst-green);
}

.ntst-reward-progress {
	background: #e5e7eb;
	border-radius: 999px;
	height: 7px;
	margin-top: 0.9rem;
	overflow: hidden;
}

.ntst-reward-progress > span {
	background: #d4af37;
	border-radius: inherit;
	display: block;
	height: 100%;
}

.ntst-reward-card.is-complete .ntst-reward-progress > span {
	background: var(--ntst-green);
}

.ntst-reward-lodge > div:first-child strong {
	color: var(--ntst-blue);
}

.ntst-referral-card {
	background: #f0f7ff;
	border-left: 4px solid #0073aa;
	border-radius: 6px;
	margin-top: 2rem;
	padding: 1.35rem 1.5rem;
}

.ntst-referral-card h3 {
	color: var(--ntst-ink);
	margin: 0 0 0.5rem;
}

.ntst-referral-card > p:not(.ntst-kicker):not(.ntst-referral-copy-status) {
	color: #475569;
}

.ntst-referral-copy-row {
	align-items: stretch;
	display: flex;
	gap: 0.6rem;
	margin-top: 1rem;
}

.ntst-referral-copy-row input {
	background: #fff;
	border: 1px solid #94a3b8;
	border-radius: 5px;
	box-sizing: border-box;
	flex: 1;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 0.78rem;
	min-width: 0;
	padding: 0.65rem;
}

.ntst-referral-copy.button {
	background: var(--ntst-blue);
	border-color: var(--ntst-blue);
	color: #fff;
	font-weight: 700;
}

.ntst-referral-copy-status {
	color: var(--ntst-green) !important;
	font-size: 0.78rem;
	font-weight: 700;
	min-height: 1em;
}

.ntst-referral-summary {
	align-items: baseline;
	border-top: 1px solid #bfdbfe;
	display: flex;
	gap: 0.45rem;
	margin-top: 1rem;
	padding-top: 1rem;
}

.ntst-referral-summary strong {
	color: var(--ntst-blue);
	font-size: 1.35rem;
}

.ntst-referral-summary span {
	color: #475569;
	font-weight: 700;
}

.ntst-referral-history {
	background: #fff;
	border: 1px solid #bfdbfe;
	border-radius: 7px;
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

.ntst-referral-history li {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 0.75rem 0.9rem;
}

.ntst-referral-history li + li {
	border-top: 1px solid var(--ntst-line);
}

.ntst-referral-history span {
	color: var(--ntst-muted);
}

.ntst-referral-history .is-rewarded {
	color: var(--ntst-green);
}

.ntst-referral-history .is-pending {
	color: #9a7510;
}

.ntst-product-preview,
.ntst-whats-included,
.ntst-access-box,
.ntst-expansion-box {
	border-radius: 7px;
	margin: 0 0 1rem;
	padding: 1rem;
}

.ntst-product-preview,
.ntst-whats-included {
	background: #fff;
	border: 1px solid var(--ntst-line);
}

.ntst-product-preview h3,
.ntst-whats-included h3 {
	color: var(--ntst-muted);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
}

.ntst-level {
	align-items: center;
	border-bottom: 1px solid var(--ntst-line);
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.9rem;
	padding-bottom: 0.75rem;
}

.ntst-level strong {
	color: var(--ntst-green);
}

.ntst-included-list ul {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

.ntst-included-list li {
	padding-left: 1.4em;
	position: relative;
}

.ntst-included-list li::before {
	color: var(--ntst-green);
	content: "✓";
	font-weight: 800;
	left: 0;
	position: absolute;
}

.ntst-access-box {
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
}

.ntst-expansion-box {
	background: var(--ntst-blue-soft);
	border-left: 3px solid #3b82f6;
}

.ntst-access-box strong,
.ntst-expansion-box strong {
	color: var(--ntst-ink);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ntst-access-box p,
.ntst-expansion-box p {
	color: #475569;
	font-size: 0.88rem;
	margin: 0.35rem 0 0;
}

@media (max-width: 720px) {
	.ntst-gift-card-grid {
		grid-template-columns: 1fr;
	}

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

	.ntst-playlist-tunes {
		grid-template-columns: 1fr;
	}

	.ntst-sheet-music-hero {
		align-items: flex-start;
		flex-direction: column;
	}

	.ntst-sheet-music-list {
		grid-template-columns: 1fr;
	}

	.ntst-reward-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 460px) {
	.ntst-lodge-card {
		padding: 1.35rem 1rem;
	}

	.ntst-lodge-totals {
		grid-template-columns: 1fr;
	}

	.ntst-tune-grid {
		grid-template-columns: 1fr;
	}

	.ntst-playlist-stats {
		grid-template-columns: 1fr;
	}

	.ntst-sheet-music-stats {
		grid-template-columns: 1fr;
	}

	.ntst-sheet-music-download.button {
		box-sizing: border-box;
		text-align: center;
		white-space: normal;
		width: 100%;
	}

	.ntst-referral-copy-row {
		flex-direction: column;
	}

	.ntst-referral-copy.button {
		width: 100%;
	}

	.ntst-referral-history li {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.2rem;
	}

	.ntst-playlist-copy-row {
		align-items: stretch;
		flex-direction: column;
	}

	.ntst-library-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.5rem;
	}
}
