/* Spin or Bin Custom Elementor Grid Styling (Radio 538 Look) */

.sob-posts-grid-container {
	margin-top: 20px;
	margin-bottom: 20px;
}

.sob-post-card {
	background: transparent;
	margin-bottom: 30px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
}

/* Thumbnail and Image Link */
.sob-thumbnail-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 8px;
	background-color: #1a1a1a;
	margin-bottom: 12px;
}

.sob-img-link {
	display: block;
	width: 100%;
	height: 100%;
}

.sob-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(35%);
	transition: filter 0.4s ease, transform 0.4s ease;
}

/* Grayscale to color transition on card hover */
.sob-post-card:hover .sob-thumbnail {
	filter: saturate(100%);
	transform: scale(1.02);
}

.sob-thumbnail-placeholder {
	width: 100%;
	height: 100%;
	background: #222;
}

/* Typography & Titles (Radio 538 inspired) */
.sob-content-wrapper {
	padding: 5px 0;
}

.sob-post-title {
	font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: -0.2px;
}

.sob-post-title a {
	color: #000000;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sob-post-title a:hover {
	color: #000000;
	text-decoration: underline;
}

/* Verdict Label Prefixes */
.sob-verdict-label {
	font-weight: 900;
	margin-right: 4px;
}

.sob-verdict-label.spinned {
	color: #2ecc71; /* Green for Spinned */
}

.sob-verdict-label.binned {
	color: #e74c3c; /* Red for Binned */
}

.sob-verdict-label.tie {
	color: #95a5a6; /* Grey for TIE */
}

.sob-verdict-label.vote {
	color: #b89000; /* Gold/yellow for Vote */
}

/* Subtle Play Overlay Button */
.sob-play-btn-wrapper {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: rgba(0, 0, 0, 0.75);
	border-radius: 50%;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
	z-index: 10;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.sob-play-btn-wrapper:hover {
	background: #fbeb04;
	color: #000000;
	transform: scale(1.1);
}

.sob-play-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sob-play-icon svg {
	display: block;
}

/* Yellow Vote Link CTA Overlay on image */
.sob-vote-link-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.85);
	color: #fbeb04 !important;
	padding: 12px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 11px;
	letter-spacing: 0.5px;
	text-decoration: none !important;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 15;
	transition: background 0.2s, color 0.2s;
	box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
	animation: sobSlideUp 0.3s ease forwards;
}

.sob-vote-link-overlay:hover {
	background: #fbeb04;
	color: #000000 !important;
}

@keyframes sobSlideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

/* Full-Screen Modal Player Overlay */
.sob-player-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
	backdrop-filter: blur(8px);
}

.sob-player-modal-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.sob-player-modal-content {
	background: #121212;
	border: 1px solid #282828;
	padding: 40px 30px;
	border-radius: 16px;
	max-width: 550px;
	width: 90%;
	text-align: center;
	color: #ffffff;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
	transform: scale(0.9);
	transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
	position: relative;
}

.sob-player-modal-overlay.is-open .sob-player-modal-content {
	transform: scale(1);
}

/* Close Button */
.sob-player-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 28px;
	line-height: 1;
	color: #888888;
	cursor: pointer;
	border: none;
	background: transparent;
	padding: 0;
	transition: color 0.2s;
}

.sob-player-modal-close:hover {
	color: #ffffff;
}

/* Modal Inside Elements */
.sob-modal-title {
	font-size: 13px;
	font-weight: 700;
	color: #888888;
	text-transform: uppercase;
	margin-bottom: 8px;
	letter-spacing: 1px;
}

.sob-modal-track-name {
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 25px;
	line-height: 1.3;
	color: #ffffff;
}

.sob-modal-media-container {
	margin: 20px 0;
	width: 100%;
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Force standard iframe embeds (e.g. SoundCloud, YouTube) to look tidy */
.sob-modal-media-container iframe {
	width: 100%;
	border: none;
	border-radius: 8px;
}

/* HTML5 Audio inside modal */
.sob-modal-media-container audio {
	width: 100%;
	margin-top: 10px;
	outline: none;
}

/* Countdown Styles */
.sob-modal-timer {
	font-family: monospace;
	font-size: 14px;
	font-weight: 700;
	color: #fbeb04;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.sob-timer-pulse {
	width: 8px;
	height: 8px;
	background: #fbeb04;
	border-radius: 50%;
	animation: sobPulse 1s infinite alternate;
}

@keyframes sobPulse {
	from { opacity: 0.3; transform: scale(0.8); }
	to { opacity: 1; transform: scale(1.2); }
}
