/* ==========================================================================
   DNB DJ Pages — Single DJ Profile Styles
   ========================================================================== */

/* Container — two-column layout */
.dnb-dj-single {
	background-color: #3a3a3a;
	background-image: url('../../../../../../wp-content/themes/dnb-proper/assets/images/backgrounds/blog-main-bg.png');
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	color: #ffffff;
	padding: 0;
	margin: 0;
}

.dnb-dj-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 2rem 2.5rem;
	display: grid;
	grid-template-columns: 1fr 418px;
	gap: 0;
	align-items: start;
}

/* ==========================================================================
   Main Content Area (Left)
   ========================================================================== */

.dnb-dj-main {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-right: 2.5rem;
}

.dnb-dj-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dnb-dj-body {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.dnb-dj-image {
	flex: 0 0 250px;
	width: 250px;
	height: 250px;
	overflow: hidden;
	border-radius: 4px;
}

.dnb-dj-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.dnb-dj-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dnb-dj-name {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 200;
	font-size: 36px;
	line-height: 36px;
	color: #ffff02;
	margin: 0 0 8px;
}

.dnb-dj-role {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-style: italic;
	font-size: 14px;
	color: #b7b7b7;
	margin: 0 0 16px;
	letter-spacing: -0.7px;
}

/* Header separator line */
.dnb-dj-role::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.1);
	margin-top: 16px;
}

.dnb-dj-bio {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #ffffff;
	letter-spacing: -0.7px;
	flex: 1;
	min-width: 0;
	margin-top: 0;
}

.dnb-dj-bio p {
	margin: 0 0 16px;
}

.dnb-dj-bio p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Sidebar (Right - 418px)
   ========================================================================== */

.dnb-dj-sidebar {
	background-color: #1a1a1a;
	background-image: url('../../../../../../wp-content/themes/dnb-proper/assets/images/backgrounds/blog-sidebar-bg.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 0;
	padding: 2rem 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-height: 600px;
	position: relative;
}

.dnb-dj-sidebar-section {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dnb-dj-sidebar-title {
	font-family: 'Roboto Condensed', sans-serif !important;
	font-weight: 100;
    font-size: 24px;
	color: #ffff02;
	margin: 0 0 1em 0;
	letter-spacing: -0.9px;
	text-transform: none;
	padding: 0 0 1em 0;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: none;
	line-height: 1.2;
}

/* Latest Mix embed */
.dnb-dj-embed {
	width: 100%;
	position: relative;
}

.dnb-dj-embed iframe {
	width: 100%;
	max-width: 100%;
	border: none;
	border-radius: 4px;
}

/* Latest Videos section */
.dnb-dj-latest-videos {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.dnb-dj-video {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dnb-dj-video-title {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #ffff02;
	margin: 0;
	letter-spacing: -0.8px;
	text-transform: none;
	padding: 0;
	border: none;
}

/* Style text */
.dnb-dj-text {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	white-space: pre-line;
}

/* Affiliations list */
.dnb-dj-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dnb-dj-list li {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	padding-left: 20px;
	position: relative;
	line-height: 1.4;
}

.dnb-dj-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #ffff02;
	font-weight: 700;
}

/* Events section */
.dnb-dj-events {
	margin-top: 24px;
}

.dnb-dj-events .dnb-dj-embed {
	width: 100%;
	position: relative;
}

.dnb-dj-events .dnb-dj-embed iframe {
	width: 100%;
	max-width: 100%;
	border: none;
	border-radius: 4px;
}

/* Social icons */
.dnb-dj-social-icons {
	display: flex;
	gap: 16px;
	align-items: center;
}

.dnb-dj-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: #ffffff;
	transition: color 0.2s ease;
	text-decoration: none;
}

.dnb-dj-social-icon:hover {
	color: #ffff02;
	text-decoration: none;
}

.dnb-dj-social-icon svg {
	width: 24px;
	height: 24px;
}

/* Buttons */
.dnb-dj-button {
	display: block;
	width: 100%;
	padding: 12px 20px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: -0.8px;
	background-color: #ffff02;
	color: #1a1a1a;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.dnb-dj-button:hover {
	background-color: #d4d400;
	color: #000000;
	text-decoration: none;
}

.dnb-dj-button-epk,
.dnb-dj-button-book {
	/* Same styles as base button */
}

/* ==========================================================================
   Responsive — Mobile
   ========================================================================== */

@media (max-width: 900px) {
	.dnb-dj-container {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 2rem 1.5rem;
	}

	.dnb-dj-main {
		padding-right: 0;
	}

	.dnb-dj-body {
		flex-direction: column;
	}

	.dnb-dj-image {
		flex: 0 0 auto;
	}

	.dnb-dj-sidebar {
		position: static;
	}

	.dnb-dj-name {
		font-size: 28px;
		line-height: 28px;
	}

	.dnb-dj-role {
		font-size: 13px;
	}
}

@media (max-width: 600px) {
	.dnb-dj-container {
		padding: 1.5rem 1rem;
	}

	.dnb-dj-name {
		font-size: 24px;
		line-height: 24px;
	}

	.dnb-dj-sidebar {
		padding: 1.5rem;
	}

	.dnb-dj-social-icons {
		gap: 12px;
	}

	.dnb-dj-social-icon {
		width: 36px;
		height: 36px;
	}
}

@media (max-width: 400px) {
	.dnb-dj-image {
		flex: 0 0 auto;
		width: 100%;
		height: auto;
		aspect-ratio: 1;
	}
}
