/*
Theme Name: Drum and Bass Proper Custom Theme
Author: Brian Crigler
Author URI:
Theme URI:
Description: A custom theme designed and developed for DNB Proper
Version: 0.0.1
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.3
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dnb-proper
Tags: custom
*/

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
	--color-bg:          #1a1a1a;
	--color-bg-alt:      #222222;
	--color-bg-section:  #2a2a2a;
	--color-accent:      #feff02;
	--color-accent-dark: #d4d400;
	--color-text:        #ffffff;
	--color-text-muted:  #999999;
	--color-border:      #333333;
	--color-overlay:     rgba(0, 0, 0, 0.6);

	--font-base:    'Roboto Condensed', 'Arial Narrow', sans-serif;
	--font-display: 'Roboto Condensed', 'Impact', 'Arial Black', sans-serif;

	--radius:    4px;
	--max-width: 1200px;
	--gap:       2rem;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-base);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-bg);
}

a {
	color: var(--color-accent);
	text-decoration: none;
}

a:hover {
	color: var(--color-accent-dark);
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	line-height: 1.2;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border: 2px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
	text-decoration: none;
}

.btn--yellow {
	background-color: var(--color-accent);
	color: #000;
	border-color: var(--color-accent);
}

.btn--yellow:hover {
	background-color: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	color: #000;
	text-decoration: none;
}

.btn--outline {
	background-color: transparent;
	color: var(--color-accent);
	border-color: var(--color-accent);
}

.btn--outline:hover {
	background-color: var(--color-accent);
	color: #000;
	text-decoration: none;
}

.btn--sm {
	padding: 0.35rem 0.9rem;
	font-size: 0.75rem;
}

.btn--block {
	display: block;
	width: 100%;
	text-align: center;
}

/* ==========================================================================
   Site Layout
   ========================================================================== */

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#content.site-content {
	flex: 1;
	padding: 0;
	background-color: #3a3a3a;
	background-image: url('assets/images/backgrounds/events-bg-gradient.png');
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	color: var(--color-text);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	background-color: var(--color-bg);
	position: sticky;
	top: 0;
	z-index: 100;
}

/* ---- Top bar ---- */
.header-topbar {
	background-color: #1a1a1a;
	height: 49px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1rem;
	border-bottom: 1px solid #333;
}

.header-topbar__social {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.topbar-social-link {
	color: #fff;
	display: flex;
	align-items: center;
	opacity: 0.85;
	transition: opacity 0.2s;
}

.topbar-social-link:hover {
	opacity: 1;
	text-decoration: none;
}

/* Mix player (right side of topbar) */
.header-topbar__player {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.player-info {
	display: flex;
	flex-direction: column;
	text-align: right;
	line-height: 1.3;
}

.player-track {
	font-size: 0.7rem;
	color: var(--color-accent);
	font-weight: 600;
}

.player-artist {
	font-size: 0.7rem;
	color: #fff;
}

.player-thumb {
	width: 40px;
	height: 40px;
	background-color: #333;
	border-radius: 2px;
	flex-shrink: 0;
}

.player-controls {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.player-timeline {
	width: 120px;
}

.player-timeline__bar {
	position: relative;
	height: 4px;
	background-color: #444;
	border-radius: 2px;
}

.player-timeline__progress {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background-color: var(--color-accent);
	border-radius: 2px;
}

.player-timeline__marker {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	background-color: var(--color-accent);
	border-radius: 50%;
}

.player-btn {
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 0.25rem;
	display: flex;
	align-items: center;
}

/* ---- Main nav: logo centered, items split left/right ---- */
.main-navigation {
	background-color: #222222;
	display: flex;
	align-items: stretch;
	height: 97px;
	border-bottom: 1px solid #333;
}

.main-nav__left,
.main-nav__right {
	flex: 1;
	display: flex;
	align-items: stretch;
}

.main-nav__logo {
	flex: 0 0 281px;
	width: 281px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
	border-left: 1px solid #333;
	border-right: 1px solid #333;
	position: relative;
	padding: 0;
}

/* Yellow bottom accent on logo cell */
.main-nav__logo::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--color-accent);
}

/* When not on home page, remove yellow accent but keep black background */
.main-nav__logo--inactive::after {
	display: none;
}

/* custom_logo() outputs its own <a> — force it to fill and center */
.main-nav__logo a,
.main-nav__logo .custom-logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.main-nav__logo img {
	display: block;
	max-height: 80px;
	width: auto;
	margin: 0 auto;
}

/* Mobile bar — hidden on desktop, shown at ≤768px */
.main-nav__mobile-bar {
	display: none;
}

/* Nav items — flex:1 so all items share space equally */
.nav-item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: -0.05em;
	line-height: 1;
	text-decoration: none;
	transition: color 0.15s;
	white-space: nowrap;
	position: relative;
	text-align: center;
	border-right: 1px solid #333;
}

.main-nav__left .nav-item:first-child {
	border-left: 1px solid #333;
}

.main-nav__right .nav-item:last-child {
	border-right: 1px solid #333;
}

.nav-item:hover,
.nav-item--active {
	color: var(--color-accent);
	text-decoration: none;
}

/* Active indicator — yellow underline */
.nav-item--active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--color-accent);
}

.main-nav__left {
	border-right: none;
}

.main-nav__right {
	border-left: none;
}

/* ==========================================================================
   Section Shared Styles
   ========================================================================== */

.home-section {
	padding: 30px 0;
	background-color: #1a1a1a;
	color: var(--color-text);
	position: relative;
}

/* Section separator — yellow/dark stylized line from Figma, rendered as img in PHP */
.home-section:first-child {
	border-top: none;
}

/* Section separator image — full width between sections */
.section-separator {
	display: block;
	width: 100%;
	height: 4px;
	line-height: 0;
	font-size: 0;
	border: 2px solid #ffff00;
}

.section-separator img {
	display: block;
	width: 100%;
	height: 4px;
}

/* Interviews + Twitch */
.home-section--two-col {
	background-color: #2a2a2a;
	background-image: url('assets/images/backgrounds/bg-interviews.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: top center;
}

/* Blog + Recent Posts */
.home-section--blog {
	min-height: 450px;
	background-color: #1a1a1a;
	background-image: url('assets/images/backgrounds/bg-global.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: top center;
}

/* Events */
.home-section--events {
	min-height: 698px;
	/* Layer 44 (flat dark #1e1e1e) as base color, Layer 46 (radial gradient) on top,
	   then the world map (Layer 33, 60% opacity) centered over it all.
	   background-color extends the terminal dark below the images. */
	background-color: #1e1e1e;
	background-image:
		url('assets/images/backgrounds/events-worldmap.png'),
		url('assets/images/backgrounds/events-bg-gradient.png');
	background-repeat: no-repeat, no-repeat;
	background-size: auto 100%, 100% 100%;
	background-position: center 80px, center center;
	position: relative;
}

/* Resident DJs */
.home-section--djs {
	min-height: auto;
	background-color: #1a1a1a;
	background-image: url('assets/images/backgrounds/bg-global.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: top center;
}

/* Shop */
.home-section--shop {
	min-height: 459px;
	background-color: #1a1a1a;
	background-image: url('assets/images/backgrounds/bg-shop.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: top center;
}

.home-section__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 40px;
}

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

.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;
}

.section-title::after {
	display: none;
}

/* Under-header separator — SVG image below title */
.section-title-wrap {
	margin-bottom: 1.5rem;
}

.section-title-wrap .sep-header {
	display: block;
	width: 100%;
	height: 2px;
	margin-top: 0.5rem;
}

.no-content {
	color: var(--color-text-muted);
	font-style: italic;
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */

.hero-slider {
	position: relative;
	overflow: hidden;
	background-color: #000;
	height: 700px;
}

.hero-slider__track {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease;
}

.hero-slide {
	min-width: 100%;
	position: relative;
	display: flex;
	align-items: flex-end;
}

.hero-slide__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

/* Gradient only on left side so right side artwork shows clearly */
.hero-slide__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 45%, transparent 65%);
}

.hero-slide--placeholder {
	background: linear-gradient(135deg, #111 0%, #1a1a00 100%);
	align-items: center;
}

.hero-slide__content {
	position: relative;
	z-index: 1;
	padding: 2.5rem 3rem 3rem;
	max-width: 420px;
}

.hero-slide__title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	color: #fff;
	margin-bottom: 1rem;
	font-weight: 400;
	line-height: 1.4;
}

/* "Read More" is a plain yellow text link, not a button */
.hero-read-more {
	color: var(--color-accent);
	font-size: 1rem;
	font-family: 'Roboto Condensed', var(--font-base);
	text-decoration: none;
	display: inline-block;
	margin-top: 0.5rem;
}

.hero-read-more:hover {
	text-decoration: underline;
	color: var(--color-accent);
}

/* Progress bar at bottom of hero */
.hero-slider__progress {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 6px;
	background-color: rgba(255,255,255,0.15);
	z-index: 5;
}

.hero-slider__progress-bar {
	height: 100%;
	background-color: var(--color-accent);
	width: 0%;
	transition: width 0.1s linear;
}

/* Arrow buttons — circular, on the sides */
.hero-slider__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(200, 230, 0, 0.15);
	color: var(--color-accent);
	border: 2px solid var(--color-accent);
	width: 45px;
	height: 48px;
	font-size: 1.1rem;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.2s;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-slider__btn:hover {
	background: var(--color-accent);
	color: #000;
}

.hero-slider__btn--prev { left: 12px; }
.hero-slider__btn--next { right: 12px; }

/* ==========================================================================
   Two-Column: Interviews + Twitch
   ========================================================================== */

.home-section--two-col .home-section__inner {
	display: grid;
	grid-template-columns: 68% 32%;
	gap: 0;
}

/* Vertical divider between Interviews and Twitch columns */
.home-col--interviews {
	padding-right: 2rem;
}

.home-col--twitch {
	padding-left: 2rem;
}

/* Interviews */
.interview-featured {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.interview-featured__thumb img {
	width: 200px;
	height: 140px;
	object-fit: cover;
	border-radius: var(--radius);
}

.interview-featured__title {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.interview-featured__title a {
	color: var(--color-text);
}

.interview-featured__title a:hover {
	color: var(--color-accent);
}

.interview-featured__excerpt {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	margin-bottom: 0.75rem;
}
.interview-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.interview-list__item {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.interview-list__thumb img {
	width: 70px;
	height: 50px;
	object-fit: cover;
	border-radius: var(--radius);
}

.interview-list__body h4 {
	font-size: 0.85rem;
	margin: 0 0 0.2rem;
}

.interview-list__body h4 a {
	color: var(--color-text);
}

.interview-list__body h4 a:hover {
	color: var(--color-accent);
}

.interview-list__body time {
	font-size: 0.75rem;
	color: var(--color-text-muted);
}

/* Twitch */
.twitch-item {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--color-border);
}

.twitch-item:last-child {
	border-bottom: none;
}

.twitch-item__thumb img {
	width: 80px;
	height: 60px;
	object-fit: cover;
	border-radius: var(--radius);
}

.twitch-item__title {
	font-size: 0.9rem;
	margin: 0 0 0.25rem;
}

.twitch-item__title a {
	color: var(--color-text);
}

.twitch-item__title a:hover {
	color: var(--color-accent);
}

.twitch-item__meta {
	font-size: 0.8rem;
	color: var(--color-text-muted);
	margin: 0;
}

/* ==========================================================================
   Blog + Recent Posts
   ========================================================================== */

.home-section--blog .home-section__inner {
	display: grid;
	grid-template-columns: 69% 31%;
	gap: 0;
}

/* Vertical divider between Blog and Recent Posts */
.home-col--blog {
	padding-right: 2rem;
}

.home-col--recent {
	padding-left: 2rem;
}

.blog-featured {
	display: block;
}

.blog-featured__inner {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
}

.blog-featured__thumb {
	flex-shrink: 0;
	width: 250px;
	height: 250px;
}

.blog-featured__thumb img {
	width: 250px;
	height: 250px;
	object-fit: cover;
	display: block;
}

.blog-featured__body {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.blog-featured__body .btn {
	align-self: flex-end;
	margin-top: 0.75rem;
}

.blog-featured__btn-wrap {
	text-align: right;
	margin-top: 0.75rem;
}

.blog-featured__title {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.blog-featured__title a {
	color: var(--color-text);
}

.blog-featured__title a:hover {
	color: var(--color-accent);
}

.recent-posts-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.recent-posts-list__item {
	display: flex;
	flex-direction: column;
	padding: 0.6rem 0;
	border-bottom: 1px solid var(--color-border);
}

.recent-posts-list__item:last-child {
	border-bottom: none;
}

.recent-posts-list__item a {
	color: var(--color-text);
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.15rem;
}

.recent-posts-list__item a:hover {
	color: var(--color-accent);
}

.recent-posts-list__item time {
	font-size: 0.75rem;
	color: var(--color-accent);
}

/* ==========================================================================
   Upcoming Events
   ========================================================================== */

/* Events section background handled above in Section Shared Styles */

.events-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.event-row {
	display: grid;
	grid-template-columns: 80px 1fr auto;
	gap: 1.5rem;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid var(--color-border);
}

.event-row:last-child {
	border-bottom: none;
}

.event-row__date time {
	display: block;
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--color-accent);
	text-transform: uppercase;
	line-height: 1.2;
}

.event-row__title {
	font-size: 0.95rem;
	margin: 0 0 0.25rem;
}

.event-row__title a {
	color: var(--color-text);
}

.event-row__title a:hover {
	color: var(--color-accent);
}

.event-row__venue {
	font-size: 0.8rem;
	color: var(--color-text-muted);
	margin: 0;
}

/* ==========================================================================
   Resident DJs
   ========================================================================== */

.dj-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.dj-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	background-color: var(--color-bg-alt);
}

.dj-card__link {
	display: block;
	text-decoration: none;
}

.dj-card__thumb img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.dj-card:hover .dj-card__thumb img {
	transform: scale(1.05);
}

.dj-card__thumb--placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	background-color: var(--color-border);
}

.dj-card__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.75rem;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.dj-card__name {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-text);
	margin: 0 0 0.15rem;
	text-transform: uppercase;
}

.dj-card__label {
	font-size: 0.75rem;
	color: var(--color-accent);
	margin: 0;
}

/* ==========================================================================
   Shop
   ========================================================================== */

.home-section--shop {
	background-color: var(--color-bg-alt);
	position: relative;
}

.shop-slider {
	overflow: hidden;
	position: relative;
}

.shop-slider__track {
	display: flex;
	gap: 1rem;
	transition: transform 0.4s ease;
}

.shop-card {
	min-width: calc(33.333% - 0.67rem);
	background-color: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.shop-card__thumb img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.shop-card__body {
	padding: 0.75rem;
	flex: 1;
}

.shop-card__title {
	font-size: 0.85rem;
	margin: 0 0 0.4rem;
	color: var(--color-text);
}

.shop-card__price {
	font-size: 0.9rem;
	color: var(--color-accent);
	font-weight: 700;
	margin: 0;
}

.shop-card .btn--yellow {
	margin: 0.75rem;
	margin-top: 0;
}

.shop-slider__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.7);
	color: var(--color-accent);
	border: 1px solid var(--color-accent);
	width: 36px;
	height: 36px;
	font-size: 0.9rem;
	cursor: pointer;
	z-index: 10;
	border-radius: var(--radius);
	transition: background-color 0.2s;
}

.shop-slider__btn:hover {
	background: var(--color-accent);
	color: #000;
}

.shop-slider__btn--prev { left: -18px; }
.shop-slider__btn--next { right: -18px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background-color: #1a1a1a;
	border-top: 1px solid #333;
	padding: 2.5rem 1.5rem 1.5rem;
	text-align: center;
	min-height: 300px;
}

.site-footer__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

/* Logo */
.footer-logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo .custom-logo {
	max-height: 80px;
	width: auto;
}

.footer-logo__text {
	font-family: var(--font-display);
	font-size: 1.8rem;
	color: var(--color-accent);
	text-decoration: none;
	line-height: 1;
	text-align: center;
}

/* Social icons */
.footer-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.footer-social__link {
	color: #fff;
	display: flex;
	align-items: center;
	transition: color 0.2s;
}

.footer-social__link:hover {
	color: var(--color-accent);
	text-decoration: none;
}

/* About text — Roboto Condensed Italic, #b7b7b7, 12px, centered */
.footer-about {
	font-family: 'Roboto Condensed', sans-serif;
	font-style: italic;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	letter-spacing: -0.12px;
	color: #b7b7b7;
	text-align: center;
	margin: 0;
	max-width: 700px;
}

/* Copyright line — Roboto Condensed, white, 12px */
.footer-copyright {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 12px;
	letter-spacing: -0.12px;
	color: #fff;
	text-align: center;
	margin: 0;
}

/* ==========================================================================
   Inner Pages (non-front-page)
   ========================================================================== */

.content-area {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 2rem 1.5rem;
	width: 100%;
}

.entry-title {
	margin-top: 0;
	color: var(--color-text);
}

.entry-title a {
	color: var(--color-text);
}

.entry-title a:hover {
	color: var(--color-accent);
}

.entry-meta {
	font-size: 0.875rem;
	color: var(--color-text-muted);
	margin-bottom: 1rem;
}

.entry-content {
	line-height: 1.8;
	color: var(--color-text);
}

.post {
	/* margin-bottom: 2.5rem; */
	padding-bottom: 2.5rem;
	/* border-bottom: 1px solid var(--color-border); */
}

.post:last-of-type {
	border-bottom: none;
}
/* ==========================================================================
   404
   ========================================================================== */

.error-404 .page-title {
	font-size: 2rem;
	color: var(--color-accent);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ==========================================================================
   Responsive — Desktop > 768px | Mobile ≤ 768px
   ========================================================================== */

/* Tablet/mid-size content adjustments (not nav) */
@media (max-width: 900px) {
	.home-section--two-col .home-section__inner,
	.home-section--blog .home-section__inner {
		grid-template-columns: 1fr;
	}

	/* Both columns go full width, equal, no side padding offset */
	.home-col--interviews,
	.home-col--twitch,
	.home-col--blog,
	.home-col--recent {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		border: none;
		overflow: hidden;
	}

	/* Stack blog featured post on mobile */
	.blog-featured__inner {
		flex-direction: row !important;
		gap: 1rem;
		align-items: flex-start;
	}

	.blog-featured__thumb {
		width: 80px !important;
		height: 80px !important;
		flex-shrink: 0;
	}

	.blog-featured__thumb img {
		width: 80px !important;
		height: 80px !important;
		object-fit: cover;
	}

	.blog-featured__body {
		flex: 1;
		min-width: 0;
	}

	.blog-featured__btn-wrap {
		text-align: left;
	}

	/* Reduce inner padding on smaller screens */
	.home-section__inner {
		padding: 0 1rem;
	}

	.dj-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-card {
		min-width: calc(50% - 0.5rem);
	}

	.hero-slider {
		height: 320px;
	}
}

/* ---- Mobile: 768px and under ---- */
@media (max-width: 768px) {

	/* Show mobile bar, hide desktop nav groups and desktop logo cell */
	.main-nav__mobile-bar {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 60px;
		width: 100%;
		position: relative;
		background-color: #222;
	}

	/* Home page blog featured image - smaller on mobile */
	.blog-featured__thumb {
		width: 80px !important;
		height: 80px !important;
		flex-shrink: 0;
	}

	.blog-featured__thumb img {
		width: 80px !important;
		height: 80px !important;
		object-fit: cover;
	}

	.blog-featured__btn-wrap {
		text-align: right;
		margin-bottom: 1rem;
	}

	.main-nav__mobile-bar .main-nav__logo {
		display: flex;
		flex: 0 0 auto;
		width: auto;
		height: 60px;
		align-items: center;
		justify-content: center;
		background-color: transparent;
		border: none;
		padding: 8px 0;
	}

	.main-nav__mobile-bar .main-nav__logo img {
		max-height: 44px;
		width: auto;
	}

	/* No yellow underline on mobile */
	.main-nav__mobile-bar .main-nav__logo::after {
		display: none;
	}

	/* Hide the desktop logo cell (sits between left/right groups) */
	.main-navigation > .main-nav__logo {
		display: none;
	}

	/* Nav becomes a column layout */
	.main-navigation {
		flex-direction: column;
		height: auto;
		position: relative;
	}

	/* Hamburger button — pinned to far right */
	.nav-hamburger {
		position: absolute;
		right: 1rem;
		top: 50%;
		transform: translateY(-50%);
		background: none;
		border: none;
		cursor: pointer;
		padding: 0.5rem;
		display: flex;
		flex-direction: column;
		gap: 5px;
		z-index: 200;
	}

	.nav-hamburger__bar {
		display: block;
		width: 26px;
		height: 2px;
		background-color: #fff;
		border-radius: 2px;
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	/* Hamburger animates to X when open */
	.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(2) {
		opacity: 0;
	}
	.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	/* Left/right groups collapse into a hidden dropdown */
	.main-nav__left,
	.main-nav__right {
		display: flex;
		flex-direction: column;
		width: 100%;
		background-color: #1a1a1a;
		border-top: 1px solid #333;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	/* Slide open when .is-open is toggled */
	.main-navigation.is-open .main-nav__left,
	.main-navigation.is-open .main-nav__right {
		max-height: 300px;
	}

	.main-nav__left {
		border-right: none;
	}

	.main-nav__right {
		border-left: none;
		border-top: 1px solid #333;
	}

	/* Nav items stack full width */
	.nav-item {
		flex: none;
		width: 100%;
		height: 50px;
		border-right: none;
		border-bottom: 1px solid #2a2a2a;
		justify-content: center;
		font-size: 16px;
	}

	.main-nav__left .nav-item:first-child {
		border-left: none;
	}

	.main-nav__right .nav-item:last-child {
		border-right: none;
		border-bottom: none;
	}

	/* Content adjustments */
	.header-topbar__player {
		display: none;
	}

	.hero-slider {
		height: 260px;
	}

	.hero-slide__content {
		padding: 1rem 1.5rem;
	}

	.dj-grid {
		grid-template-columns: 1fr 1fr;
	}

	.shop-card {
		min-width: calc(80% - 0.5rem);
	}

	.event-row {
		grid-template-columns: 60px 1fr;
	}

	.event-row__action {
		grid-column: 2;
	}
}

/* ==========================================================================
   Blog Archive
   ========================================================================== */

.blog-category-menu {
	background-color: #222222;
	border-bottom: 1px solid #333333;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-category-menu__inner {
	max-width: 1280px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 2rem;
	gap: 3rem;
}

.category-menu-item {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	letter-spacing: -0.7px;
	color: #aeaeae;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s;
}

.category-menu-item:hover {
	color: #ffffff;
	text-decoration: none;
}

.category-menu-item--active {
	color: #ffffff;
	position: relative;
}

.category-menu-item--active::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #feff02;
}

.blog-archive-wrap {
	display: flex;
	gap: 0;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
	align-items: flex-start;
}

.blog-archive__main {
	flex: 1 1 0;
	min-width: 0;
	padding: 2rem 2.5rem;
}

.blog-archive__sidebar {
	flex: 0 0 418px;
	width: 418px;
	background-color: #1a1a1a;
	background-image: url('assets/images/backgrounds/blog-sidebar-bg.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 2rem 2.5rem;
	min-height: 600px;
	position: relative;
}

/* Blog post cards - used by Events plugin AJAX */
.dnb-post-card {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2rem 0;
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}

.dnb-post-card:first-child {
	border-top: none;
	padding-top: 0;
}

.dnb-post-thumb {
	flex: 0 0 250px;
	width: 250px;
	height: 250px;
	display: block;
	overflow: hidden;
}

.dnb-post-thumb img,
.dnb-post-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dnb-post-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.dnb-post-body .entry-title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	line-height: 1.2;
	letter-spacing: -1.2px;
}

.dnb-post-body .entry-title a {
	color: #ffff02;
	text-decoration: none;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 200;
}

.dnb-post-body .entry-title a:hover {
	text-decoration: underline;
}

.dnb-post-body .entry-meta {
	font-size: 0.875rem;
	color: #ffffff;
	margin-bottom: 1rem;
	letter-spacing: -0.7px;
	font-family: 'Roboto Condensed', sans-serif;
}

.dnb-post-body .entry-content {
	font-size: 0.875rem;
	color: #ffffff;
	line-height: 1.6;
	margin-bottom: 1rem;
	letter-spacing: -0.7px;
	font-family: 'Roboto Condensed', sans-serif;
}

.dnb-post-body .entry-content p {
	margin: 0;
}

.dnb-post-body .entry-footer {
	text-align: right;
	margin-top: 0.5rem;
}

/* Legacy blog-card classes (if needed) */
.blog-card {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2rem 0;
}

.blog-card:first-child {
	border-top: none;
	padding-top: 0;
}

.blog-card__inner {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	align-items: flex-start;
}

.blog-card__thumb {
	flex: 0 0 250px;
	width: 250px;
	height: 250px;
	display: block;
	overflow: hidden;
}

.blog-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.blog-card__body--no-thumb {
	max-width: 100%;
}

.blog-card__title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	line-height: 1.2;
	letter-spacing: -0.075rem;
}

.blog-card__title a {
	color: #ffff02;
	text-decoration: none;
	text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.15);
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	letter-spacing: -1.2px;
}

.blog-card__title a:hover {
	text-decoration: underline;
}

.blog-card__meta {
	font-size: 0.875rem;
	color: #ffffff;
	margin-bottom: 1rem;
	letter-spacing: -0.7px;
	font-family: 'Roboto Condensed', sans-serif;
}

.blog-card__excerpt {
	font-size: 0.875rem;
	color: #ffffff;
	line-height: 1.6;
	margin-bottom: 1rem;
	letter-spacing: -0.7px;
	font-family: 'Roboto Condensed', sans-serif;
}

.blog-card__btn-wrap {
	text-align: right;
	margin-top: 0.5rem;
}

.recent-posts-list__item a {
	color: #ffff02;
	font-size: 0.875rem;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.7px;
	text-decoration: none;
}

.recent-posts-list__item a:hover {
	text-decoration: underline;
}

.recent-posts-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.recent-posts-list__item {
	margin-bottom: 1.5rem;
}

.dnb-posts-spinner {
	display: none;
	text-align: center;
	padding: 1.5rem;
	color: var(--color-accent);
	font-size: 1.5rem;
	letter-spacing: 0.25rem;
}

.dnb-posts-spinner.active {
	display: block;
}

/* ==========================================================================
   Sticky footer — blog index only
   ========================================================================== */

.blog .blog-archive-wrap {
	padding-bottom: calc(var(--footer-height, 220px) + 2rem);
}

/* ==========================================================================
   Blog Archive - Mobile Responsive
   ========================================================================== */

@media (max-width: 768px) {
	/* Remove sticky footer on mobile */
	.blog #colophon {
		position: static;
	}

	.blog .blog-archive-wrap {
		padding-bottom: 0;
	}

	/* Stack blog layout vertically */
	.blog-archive-wrap {
		flex-direction: column;
	}

	.blog-archive__main,
	.blog-archive__sidebar {
		width: 100%;
		flex: none;
		padding: 1.5rem 1rem;
	}

	/* Stack blog post cards vertically */
	.dnb-post-card {
		flex-direction: column;
		gap: 1rem;
	}

	.dnb-post-thumb {
		flex: none;
		width: 100%;
		height: auto;
		max-width: 250px;
		margin: 0 auto;
	}

	.dnb-post-body {
		width: 100%;
	}

	/* Adjust category menu for mobile */
	.blog-category-menu__inner {
		padding: 0 1rem;
		gap: 1.5rem;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.category-menu-item {
		font-size: 12px;
	}
}

/* ==========================================================================
   Page Templates
   ========================================================================== */

/* Apply background to #page #content wrapper for page templates */
body.page #page #content {
	background-color: #3a3a3a;
	background-image: url('assets/images/backgrounds/events-bg-gradient.png');
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

/* Main content area */
.page-layout {
	color: #ffffff;
	padding: 0;
	margin: 0;
	max-width: 1280px;
	margin: 0 auto;
	padding: 2rem 2.5rem;
}

/* 2-column layout with sidebar */
.page-layout--2column {
	display: grid;
	grid-template-columns: 1fr 418px;
	gap: 0;
	align-items: start;
}

/* Full-width layout (no sidebar) */
.page-layout--fullwidth {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

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

/* Content wrapper: featured image + main content (allows text wrapping) */
.page-content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-right: 2.5rem;
}

/* Main content column - flows around featured image */
.page-main {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.page-main .entry-header {
	margin-bottom: 8px;
}

.page-main .entry-title {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 36px;
	line-height: 36px;
	color: #ffff02;
	margin: 0 0 16px;
	letter-spacing: -1.8px;
	text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.15);
}

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

/* Page body - contains featured image and content side by side */
.page-body {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

/* Featured image container - fixed width on left */
.page-featured {
	flex: 0 0 250px;
	width: 250px;
	height: 250px;
	overflow: hidden;
	border-radius: 4px;
}

.page-featured__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.page-main .entry-content {
	flex: 1;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #ffffff;
	letter-spacing: -0.7px;
	flex: 1;
	min-width: 0;
}

.page-main .entry-content p {
	margin: 0 0 16px;
}

.page-main .entry-content p:last-child {
	margin-bottom: 0;
}

.page-main .entry-content a {
	color: var(--color-accent);
	text-decoration: underline;
}

.page-main .entry-content a:hover {
	color: var(--color-accent-dark);
}

/* Block editor headings in content */
.page-main .entry-content h2,
.page-main .entry-content .wp-block-heading,
.page-main .entry-content h2.wp-block-heading {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.3;
	color: #ffff02;
	margin: 24px 0 16px 0;
	letter-spacing: -1.2px;
	text-transform: uppercase;
}

.page-main .entry-content h3,
.page-main .entry-content h3.wp-block-heading {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.3;
	color: #ffff02;
	margin: 20px 0 12px 0;
	letter-spacing: -1px;
	text-transform: uppercase;
}

.page-main .entry-content h4,
.page-main .entry-content h4.wp-block-heading {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3;
	color: #ffff02;
	margin: 16px 0 12px 0;
	letter-spacing: -0.9px;
}

/* Clearfix for content wrapper */
.page-content-wrapper::after {
	content: "";
	display: table;
	clear: both;
}

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

.page-sidebar {
	background-color: #1a1a1a;
	background-image: url('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;
}

.page-sidebar .widget-area {
	background-color: transparent;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.page-sidebar .widget,
.page-sidebar .widget_block {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 0;
}

/* Block widget groups */
.page-sidebar .wp-block-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.page-sidebar .wp-block-group__inner-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Widget titles - all variations */
.page-sidebar .widget-title,
.page-sidebar .widgettitle,
.page-sidebar h2.widget-title,
.page-sidebar h2.widgettitle,
.page-sidebar .wp-block-heading,
.page-sidebar h2.wp-block-heading,
.page-sidebar .wp-block-group h2,
.page-sidebar .wp-block-group h2.wp-block-heading,
.page-sidebar .wp-block-group__inner-container h2,
.page-sidebar .wp-block-group__inner-container h2.wp-block-heading,
.page-sidebar .widget_block h2,
.page-sidebar .widget_block h2.wp-block-heading,
#secondary.widget-area .wp-block-heading,
#secondary.widget-area h2.wp-block-heading,
#secondary.widget-area .wp-block-group h2,
.page-sidebar .wp-block-search__label {
	font-family: 'Roboto Condensed', sans-serif !important;
	font-weight: 100 !important;
	font-size: 24px !important;
	color: #ffff02 !important;
	margin: 0 0 12px 0 !important;
	letter-spacing: -0.9px !important;
	text-transform: none !important;
	padding: 0 0 12px 0 !important;
	border: none !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
	background: none !important;
	line-height: 1.2 !important;
}

/* Widget lists */
.page-sidebar .widget ul,
.page-sidebar .wp-block-latest-posts,
.page-sidebar .wp-block-archives-list,
.page-sidebar .wp-block-categories-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.page-sidebar .widget li,
.page-sidebar .wp-block-latest-posts li,
.page-sidebar .wp-block-archives-list li,
.page-sidebar .wp-block-categories-list li {
	font-family: 'Roboto Condensed', sans-serif !important;
	font-size: 14px !important;
	color: rgba(255, 255, 255, 0.85) !important;
	line-height: 1.4 !important;
	padding: 0 !important;
	margin: 0 !important;
}

.page-sidebar .widget li::before {
	display: none !important;
}

.page-sidebar .widget a,
.page-sidebar .wp-block-latest-posts a,
.page-sidebar .wp-block-archives-list a,
.page-sidebar .wp-block-categories-list a {
	color: rgba(255, 255, 255, 0.85) !important;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

.page-sidebar .widget a:hover,
.page-sidebar .wp-block-latest-posts a:hover,
.page-sidebar .wp-block-archives-list a:hover,
.page-sidebar .wp-block-categories-list a:hover {
	color: #ffff02 !important;
	text-decoration: none !important;
}

/* Search widget */
.page-sidebar .wp-block-search {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.page-sidebar .wp-block-search__inside-wrapper {
	display: flex;
	gap: 8px;
}

.page-sidebar .wp-block-search__input {
	flex: 1;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	padding: 8px 12px;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
}

.page-sidebar .wp-block-search__button {
	background-color: #ffff02;
	color: #1a1a1a;
	border: none;
	padding: 8px 16px;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
}

.page-sidebar .wp-block-search__button:hover {
	background-color: #d4d400;
}

/* Recent comments "no comments" message */
.page-sidebar .no-comments {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	font-style: italic;
}

/* Full-width template specific styles */
.page-layout--fullwidth .page-content-wrapper {
	max-width: 100%;
	padding-right: 0;
}

/* ==========================================================================
   Page Templates — Responsive
   ========================================================================== */

@media (max-width: 900px) {
	.page-layout--2column .content-area {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 2rem 1.5rem;
	}

	.page-content-wrapper {
		padding-right: 0;
	}

	.page-featured {
		float: none;
		width: 100%;
		height: auto;
		margin: 0 0 24px 0;
	}

	.page-main .entry-title {
		font-size: 28px;
		line-height: 28px;
	}
}

@media (max-width: 600px) {
	.page-layout--2column .content-area,
	.page-layout--fullwidth .content-area {
		padding: 1.5rem 1rem;
	}

	.page-main .entry-title {
		font-size: 24px;
		line-height: 24px;
	}

	.page-sidebar {
		padding: 1.5rem;
	}
}
