/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/
Description: Child theme for Hello Elementor.
Author: Genki Massage Club
Author URI: https://example.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Add your custom styles below this line. */

.empty-shell-template {
	display: block;
	min-height: 78vh;
	padding: 52px 0 88px;
	background:
		linear-gradient(180deg, rgba(15, 0, 7, 0.6) 0%, rgba(15, 0, 7, 0.75) 100%),
		var(--roster-main-bg-image),
		radial-gradient(120% 70% at 88% 4%, rgba(151, 18, 118, 0.32) 0%, rgba(151, 18, 118, 0) 44%),
		radial-gradient(80% 95% at 78% 118%, rgba(120, 0, 32, 0.3) 0%, rgba(120, 0, 32, 0) 52%),
		linear-gradient(130deg, rgba(255, 33, 172, 0.16) 0%, rgba(255, 33, 172, 0) 40%),
		linear-gradient(180deg, #2a0013 0%, #0f0007 100%);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.roster-hero {
	width: min(1000px, 100%);
	margin: 0 auto;
	padding: 0 32px;
	text-align: center;
	color: #d9b15f;
}

.roster-hero__title {
	margin: 0 0 12px;
	font-family: "Times New Roman", Sans-serif;
	font-style: italic;
	font-size: 45px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 1.6px;
	color: #d7be83;
}

.roster-hero__date {
	margin: 0;
	font-family: "Lato", Sans-serif;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #E1B97E;
}

.roster-hero__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 22px;
}

.roster-hero__line {
	width: min(170px, 28vw);
	height: 3px;
	background: linear-gradient(90deg, transparent 0%, #dcb86a 18%, #f0d58b 50%, #dcb86a 82%, transparent 100%);
}

.roster-hero__hearts {
	font-size: clamp(18px, 2.6vw, 28px);
	line-height: 1;
	letter-spacing: 2px;
	color: #e5c676;
}

.roster-list {
	width: min(1000px, 100%);
	margin: 28px auto 0;
	padding: 0 48px;
}

.roster-list__items {
	margin: 0;
	padding: 0;
	list-style: none;
}

.roster-list__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 11px 0;
	color: #e5c676;
	font-family: "Times New Roman", Sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.35;
}

.roster-list__name {
	font-family: "Times New Roman", Times, serif;
}

.roster-list__content {
	display: flex;
	flex-direction: column;
}

.roster-list__line {
	margin: 0;
}

.roster-list__hours {
	color: #dcb86a;
	font-size: 1em;
}

.roster-list__meta {
	display: flex;
	gap: 20px;
	margin: 3px 0 0;
	color: #d7be83;
	font-size: clamp(16px, 2.1vw, 30px);
	line-height: 1.25;
}

.roster-list__meta--cup {
	margin-top: 0;
}

.roster-list__empty {
	margin: 0;
	color: #dcb86a;
	text-align: left;
	font-size: clamp(20px, 2.7vw, 26px);
}

.roster-cards {
	width: min(1100px, 100%);
	margin: 42px auto 0;
	padding: 0 48px;
}

.roster-cards__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px 24px;
}

.roster-card {
	text-align: center;
}

.roster-card__image,
.roster-card__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	background: rgba(0, 0, 0, 0.35);
}

.roster-card__name {
	margin: 14px 0 6px;
	font-family: "Times New Roman", Times, serif;
	font-size: 20px;
	font-weight: 600;
	color: #E1B97E;
	line-height: 1.1;
}

.roster-card__name a,
.roster-card__name a:visited,
.roster-card__name a:hover,
.roster-card__name a:focus,
.roster-card__name a:active {
	color: inherit;
	text-decoration: none;
}

.roster-card__meta,
.roster-card__cup {
	margin: 0;
	font-family: "Roboto", Sans-serif;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.3;
	color: #d7be83;
}

.roster-card__meta {
	display: flex;
	justify-content: center;
	gap: 18px;
}

.roster-debug {
	width: min(1000px, 100%);
	margin: 28px auto 0;
	padding: 22px 48px;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(229, 198, 118, 0.28);
	color: #f0dca0;
}

.roster-debug h2,
.roster-debug h3 {
	margin: 0 0 10px;
}

.roster-debug__item {
	padding: 12px 0;
	border-top: 1px solid rgba(229, 198, 118, 0.18);
}

.roster-debug pre {
	overflow-x: auto;
	padding: 10px;
	background: rgba(0, 0, 0, 0.25);
	color: #f7e8bd;
	font-size: 13px;
	line-height: 1.35;
}

@media (max-width: 767px) {
	.roster-cards,
	.roster-list {
		padding: 0 20px;
	}

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

@media (max-width: 520px) {
	.roster-cards__grid {
		grid-template-columns: 1fr;
	}
}
