.ntta-dashboard.ntta-dashboard--full-width {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 1rem;
	box-sizing: border-box;
}

.ntta-dashboard__title {
	margin-bottom: 1.5rem;
}

.ntta-dashboard__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

@media (max-width: 480px) {
	.ntta-dashboard__grid {
		grid-template-columns: 1fr;
	}
}

.ntta-playcard {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	min-height: 180px;
}

.ntta-playcard--blocked {
	opacity: 0.75;
}

.ntta-playcard__header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.ntta-playcard__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	color: var(--wp--preset--color--primary, #0f766e);
}

.ntta-playcard--blocked .ntta-playcard__icon {
	color: #94a3b8;
}

.ntta-playcard__title {
	margin: 0;
	font-size: 1.25rem;
}

.ntta-playcard__desc {
	flex: 1;
	color: #555;
	font-size: 0.9rem;
}

.ntta-playcard__cta {
	margin-top: auto;
	align-self: flex-start;
}

.ntta-playcard__cta[aria-disabled="true"] {
	pointer-events: none;
	opacity: 0.5;
}

.ntta-preview-banner {
	background: #fff3cd;
	border: 1px solid #ffc107;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	border-radius: 4px;
}

.ntta-tabs {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.ntta-tabs a.active {
	font-weight: bold;
	text-decoration: underline;
}

.ntta-ineligible-list {
	color: #666;
	font-size: 0.9rem;
}

.ntta-event-cards {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.ntta-event-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
}

.ntta-event-card__link {
	display: block;
	padding: 1rem 1.25rem;
	text-decoration: none;
	color: inherit;
}

.ntta-event-card__link:hover {
	background: #f8fafc;
}

.ntta-event-card__title {
	margin: 0 0 0.35rem;
	font-size: 1.1rem;
}

.ntta-event-card__date,
.ntta-event-card__venue,
.ntta-event-card__fee {
	margin: 0.25rem 0;
	font-size: 0.9rem;
	color: #475569;
}

.ntta-event-card__fee {
	font-weight: 600;
	color: var(--wp--preset--color--primary, #0f766e);
}
