/* DRMF Artist Series — gallery + roster styles.
   Neutral, cache-friendly, mobile-first. Uses non-<button> elements so the
   Salient button-radius override (body[data-button-style] button{...}) never
   touches these cards. */

.das-artist-series {
	margin: 2.5rem 0;
}
.das-artist-series__heading {
	text-align: center;
	margin: 0 0 1.5rem;
}
.das-tier {
	margin: 0 0 2rem;
}
.das-tier__label {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	font-weight: 700;
	opacity: 0.7;
	margin: 0 0 1rem;
}

/* Card grid. Featured tiers (xl/large) get bigger min cells. */
.das-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 1.25rem;
}
.das-tier--xl .das-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.das-tier--large .das-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.das-tier--small .das-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

.das-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.das-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.das-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: #f5f2ea; /* map "paper" tone */
	display: flex;
	align-items: center;
	justify-content: center;
}
.das-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.das-card__ribbon {
	position: absolute;
	top: 0.6rem;
	left: 0.6rem;
	background: #111;
	color: #b6e34a; /* neon-green accent */
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
}
.das-card__body {
	padding: 0.75rem 0.9rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.das-card__title {
	font-weight: 700;
	line-height: 1.2;
}
.das-card__artist {
	font-size: 0.85rem;
	opacity: 0.7;
}
.das-empty {
	text-align: center;
	opacity: 0.6;
	padding: 2rem 0;
}

/* --- Voting --- */
/* Card link + vote control are siblings; the card is a flex column so the
   control sits below the body and fills the row. */
.das-card__link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}
.das-vote {
	margin: auto 0.9rem 0.9rem; /* pin to the bottom */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.5rem 0.9rem;
	border: 2px solid #111;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
	cursor: pointer;
	user-select: none;
	background: #fff;
	color: #111;
	transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.das-vote:hover { background: #111; color: #b6e34a; }
.das-vote:active { transform: scale(0.97); }
.das-vote:focus-visible { outline: 3px solid #b6e34a; outline-offset: 2px; }
.das-vote.is-voted {
	background: #111;
	color: #b6e34a;
	border-color: #111;
	cursor: default;
	pointer-events: none;
}
.das-vote-count {
	margin: 0 0.9rem 0.9rem;
	font-size: 0.8rem;
	font-weight: 600;
	opacity: 0.65;
	text-align: center;
}

/* Email gate */
.das-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	padding: 1rem;
}
.das-modal[hidden] { display: none; }
.das-modal__box {
	background: #fff;
	color: #111;
	border-radius: 12px;
	padding: 1.5rem;
	width: 100%;
	max-width: 360px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.das-modal__title { margin: 0 0 0.9rem; font-weight: 700; }
.das-modal__email {
	width: 100%;
	box-sizing: border-box;
	padding: 0.6rem 0.75rem;
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 8px;
	font-size: 1rem;
}
.das-modal__email.is-invalid { border-color: #c0392b; }
/* honeypot: kept in the DOM, out of sight and off the tab order */
.das-modal__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.das-modal__actions {
	display: flex;
	gap: 0.6rem;
	margin-top: 1rem;
}
.das-modal__go,
.das-modal__cancel {
	flex: 1;
	text-align: center;
	padding: 0.6rem 0.9rem;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
	user-select: none;
}
.das-modal__go { background: #111; color: #b6e34a; }
.das-modal__cancel { background: #eee; color: #333; }
.das-modal__go:focus-visible,
.das-modal__cancel:focus-visible { outline: 3px solid #b6e34a; outline-offset: 2px; }
