/*
Theme Name: Black Soul Experience
Theme URI: https://example.com/
Author: Custom build
Description: A bold, responsive podcast theme inspired by the supplied Black Soul Music Experience concept.
Version: 1.2.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: black-soul
*/

:root {
	--gold: #d59a24;
	--gold-light: #e3ae3d;
	--black: #050606;
	--panel: #0d0e0e;
	--white: #f8f6f2;
	--muted: #b9b8b5;
	--content: 1420px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--black);
	color: var(--white);
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 18px;
	line-height: 1.5;
}

a {
	color: inherit;
	text-decoration: none;
}

img,
svg {
	display: block;
	max-width: 100%;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--white);
	color: var(--black);
	font-weight: 700;
}

:focus-visible {
	outline: 3px solid #f2b942;
	outline-offset: 4px;
}

.site-header {
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	width: 100%;
	padding: 38px 4vw 0;
}

.header-inner {
	display: grid;
	grid-template-columns: 390px 1fr auto;
	align-items: start;
	gap: 46px;
	max-width: var(--content);
	margin: 0 auto;
}

.brand {
	width: max-content;
	text-transform: uppercase;
	line-height: 0.92;
	letter-spacing: 0.025em;
}

.brand-the {
	display: block;
	margin: 0 0 3px 3px;
	color: var(--gold-light);
	font-size: 20px;
	letter-spacing: 0.16em;
}

.brand-main {
	display: block;
	font-family: Impact, "Arial Narrow", sans-serif;
	font-size: clamp(54px, 4.35vw, 72px);
	font-stretch: condensed;
	letter-spacing: 0.015em;
}

.brand-sub {
	display: block;
	margin-top: 7px;
	color: var(--gold-light);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0.035em;
}

.brand-podcast {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 10px;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: 0.16em;
}

.brand-podcast::before,
.brand-podcast::after {
	width: 72px;
	height: 2px;
	background: var(--gold);
	content: "";
}

.primary-nav {
	padding-top: 44px;
}

.primary-nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(25px, 3.1vw, 48px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a {
	position: relative;
	display: block;
	padding: 0 0 17px;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.primary-nav .current-menu-item a,
.primary-nav a:hover,
.primary-nav a:focus-visible {
	color: var(--gold-light);
}

.primary-nav .current-menu-item a::after,
.primary-nav a:hover::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: var(--gold);
	content: "";
}

.social-links {
	display: flex;
	gap: 22px;
	padding-top: 38px;
}

.social-links a {
	display: grid;
	width: 34px;
	height: 34px;
	color: var(--gold-light);
	place-items: center;
	transition: transform 160ms ease, color 160ms ease;
}

.social-links a:hover {
	color: #ffd16a;
	transform: translateY(-2px);
}

.social-links svg {
	width: 29px;
	height: 29px;
	fill: currentColor;
}

.menu-toggle {
	display: none;
}

.hero {
	position: relative;
	min-height: 732px;
	overflow: hidden;
	background:
		radial-gradient(circle at 76% 48%, rgba(203, 139, 25, 0.12), transparent 29%),
		#030404;
}

.hero-art {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 45%;
	overflow: hidden;
}

.hero-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.hero-art::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 145px;
	background: linear-gradient(#040505 58%, rgba(4, 5, 5, 0));
	content: "";
}

.hero-art::after {
	position: absolute;
	inset: 0 auto 0 0;
	width: 170px;
	background: linear-gradient(90deg, #030404 0%, rgba(3, 4, 4, 0) 100%);
	content: "";
}

.hero-inner {
	position: relative;
	z-index: 2;
	max-width: var(--content);
	min-height: 732px;
	margin: 0 auto;
	padding: 220px 4vw 48px;
}

.hero-copy {
	width: min(565px, 45%);
	margin-left: 76px;
}

.hero h1 {
	margin: 0;
	font-family: Impact, "Arial Narrow", sans-serif;
	font-size: clamp(58px, 5.1vw, 82px);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.hero h1 span {
	display: block;
}

.hero h1 .gold {
	color: var(--gold);
}

.gold-stroke {
	width: 95px;
	height: 5px;
	margin: 20px 0 24px;
	border-radius: 100%;
	background: var(--gold);
	transform: rotate(-3deg);
}

.hero-copy p {
	max-width: 560px;
	margin: 0 0 21px;
	font-size: 20px;
	line-height: 1.48;
}

.button {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	min-height: 57px;
	padding: 10px 24px;
	border: 2px solid var(--gold);
	border-radius: 8px;
	color: var(--gold-light);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	transition: background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
	background: var(--gold);
	color: #080808;
}

.play {
	display: grid;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--gold);
	color: #111;
	font-size: 13px;
	line-height: 1;
	place-items: center;
}

.button:hover .play {
	background: #111;
	color: var(--gold);
}

.feature-strip {
	position: relative;
	z-index: 3;
	background: linear-gradient(90deg, #0a0b0b, #111212 55%, #080909);
	border-top: 1px solid #171818;
	border-bottom: 1px solid #252525;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	max-width: 1280px;
	margin: 0 auto;
	padding: 25px 28px;
}

.feature {
	display: grid;
	grid-template-columns: 67px 1fr;
	gap: 22px;
	align-items: center;
	min-height: 84px;
	padding: 0 50px;
	border-right: 1px solid #393939;
}

.feature:first-child {
	padding-left: 0;
}

.feature:last-child {
	padding-right: 0;
	border-right: 0;
}

.feature-icon {
	width: 55px;
	height: 55px;
	color: var(--gold);
}

.feature-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.4;
}

.feature h2 {
	margin: 0 0 2px;
	color: var(--gold-light);
	font-size: 18px;
	line-height: 1.25;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.feature p {
	margin: 0;
	font-size: 16px;
	line-height: 1.45;
}

.latest {
	background:
		radial-gradient(circle at 12% 20%, rgba(215, 164, 73, 0.08), transparent 20%),
		#f2f0ed;
	color: #0c0c0c;
	content-visibility: auto;
	contain-intrinsic-size: 320px;
}

.latest-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 85px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 30px 28px 56px;
}

.eyebrow {
	margin: 6px 0 4px;
	color: #bc7f18;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.latest h2 {
	margin: 0;
	font-family: Impact, "Arial Narrow", sans-serif;
	font-size: 37px;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.latest-copy > p:last-child {
	margin: 3px 0 0;
	font-size: 17px;
}

.subscribe-card {
	align-self: start;
	padding: 23px 38px 29px;
	background: linear-gradient(135deg, #111, #070808);
	color: #fff;
}

.subscribe-card h2 {
	margin: 0 0 19px;
	color: var(--gold-light);
	font-family: inherit;
	font-size: 20px;
	letter-spacing: 0.04em;
}

.platforms {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
}

.platforms a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 15px;
}

.platform-dot {
	display: grid;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: var(--gold);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	place-items: center;
}

.platform-dot.spotify {
	border-radius: 50%;
	background: #24c65a;
	color: #0b0b0b;
}

.platform-dot.youtube {
	width: 36px;
	height: 25px;
	border-radius: 7px;
	background: #f10b0b;
}

.site-footer {
	padding: 25px 4vw;
	border-top: 1px solid #252525;
	background: #050606;
	color: #9e9e9e;
	font-size: 14px;
	text-align: center;
}

.blog-preview {
	padding: 70px max(28px, 4vw) 86px;
	background: #f2f0ed;
	color: #111;
	content-visibility: auto;
	contain-intrinsic-size: 700px;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	max-width: 1280px;
	margin: 0 auto 30px;
}

.section-heading h2,
.page-masthead h1 {
	margin: 0;
	font-family: Impact, "Arial Narrow", sans-serif;
	font-size: clamp(42px, 5vw, 68px);
	line-height: 1;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.text-link,
.read-more {
	color: #9b6510;
	font-weight: 800;
	text-transform: uppercase;
}

.text-link:hover,
.read-more:hover {
	color: #523400;
	text-decoration: underline;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	max-width: 1280px;
	margin: 0 auto;
}

.post-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #d7d2cb;
	background: #fff;
	box-shadow: 0 13px 35px rgba(21, 18, 12, 0.07);
}

.post-card-image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #090a0a;
}

.post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.post-card:hover .post-card-image img {
	transform: scale(1.025);
}

.post-card-placeholder {
	display: grid;
	background:
		radial-gradient(circle at 70% 50%, rgba(213, 154, 36, 0.45), transparent 30%),
		linear-gradient(135deg, #070808, #1e1608);
	color: var(--gold-light);
	font-family: Impact, "Arial Narrow", sans-serif;
	font-size: 32px;
	letter-spacing: 0.04em;
	place-items: center;
	text-transform: uppercase;
}

.post-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
	color: #8e6218;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.post-card h3 {
	margin: 11px 0 10px;
	font-size: 25px;
	line-height: 1.14;
}

.post-card h3 a:hover {
	color: #9b6510;
}

.post-excerpt {
	flex: 1;
	color: #4c4b48;
	font-size: 16px;
}

.post-excerpt p {
	margin: 0 0 20px;
}

.read-more {
	align-self: flex-start;
	font-size: 14px;
}

.blog-main,
.content-main {
	min-height: 70vh;
	padding: 235px max(24px, 4vw) 90px;
	background: #f2f0ed;
	color: #111;
}

.blog-main::before,
.content-main::before {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	left: 0;
	height: 205px;
	background:
		radial-gradient(circle at 75% 20%, rgba(205, 147, 36, 0.15), transparent 25%),
		#050606;
	content: "";
}

.page-masthead,
.archive-layout,
.single-article,
.content-wrap {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}

.page-masthead {
	margin-bottom: 45px;
}

.page-masthead > p:last-child,
.archive-description {
	max-width: 720px;
	margin: 15px 0 0;
	color: #55524e;
	font-size: 18px;
}

.archive-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 45px;
	align-items: start;
}

.archive-posts .post-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 25px;
}

.blog-sidebar {
	display: grid;
	gap: 22px;
}

.sidebar-card {
	padding: 25px;
	border: 1px solid #d7d2cb;
	background: #fff;
}

.sidebar-card h2 {
	margin: 0 0 15px;
	font-size: 21px;
	text-transform: uppercase;
}

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

.sidebar-card li {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #e7e2dc;
	font-size: 15px;
}

.sidebar-card li:last-child {
	border-bottom: 0;
}

.sidebar-card a:hover {
	color: #9b6510;
}

.search-form {
	display: flex;
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	min-height: 45px;
	padding: 9px 11px;
	border: 1px solid #aaa49b;
	border-radius: 0;
	font: inherit;
}

.search-submit {
	min-height: 45px;
	padding: 8px 13px;
	border: 0;
	background: var(--gold);
	color: #080808;
	font-weight: 800;
	cursor: pointer;
}

.subscribe-sidebar {
	background: #0b0c0c;
	color: #fff;
}

.subscribe-sidebar .button {
	min-height: 45px;
	padding: 8px 16px;
	font-size: 14px;
}

.navigation.pagination {
	margin-top: 45px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	border: 1px solid #b8b1a7;
	place-items: center;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: #111;
	background: #111;
	color: var(--gold-light);
}

.single-article {
	max-width: 920px;
}

.article-header {
	margin-bottom: 33px;
}

.article-header h1,
.content-wrap h1 {
	max-width: 1000px;
	margin: 12px 0 0;
	font-family: Impact, "Arial Narrow", sans-serif;
	font-size: clamp(42px, 6vw, 72px);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.article-featured {
	margin: 0 0 40px;
}

.article-featured img {
	width: 100%;
	height: auto;
}

.entry-content {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 19px;
	line-height: 1.75;
}

.entry-content > * {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
}

.entry-content > .wp-block-image,
.entry-content > figure,
.entry-content > .wp-block-gallery,
.entry-content > .wp-block-embed {
	max-width: 920px;
}

.entry-content h2,
.entry-content h3 {
	font-family: "Trebuchet MS", Arial, sans-serif;
	line-height: 1.2;
}

.entry-content a {
	color: #85560d;
	text-decoration: underline;
}

.entry-content img {
	height: auto;
}

.entry-content blockquote {
	padding: 5px 0 5px 25px;
	border-left: 5px solid var(--gold);
	font-size: 1.15em;
	font-style: italic;
}

.article-footer,
.post-navigation {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
}

.article-footer {
	margin-top: 40px;
	padding-top: 25px;
	border-top: 1px solid #cec8bf;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 14px;
}

.tag-list a {
	padding: 5px 9px;
	background: #dfd9d1;
}

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin-top: 40px;
	padding-top: 25px;
	border-top: 1px solid #cec8bf;
	font-weight: 800;
}

.post-navigation > div:last-child {
	text-align: right;
}

@media (max-width: 1180px) {
	.header-inner {
		grid-template-columns: 320px 1fr;
	}

	.social-links {
		display: none;
	}

	.hero-copy {
		margin-left: 2vw;
	}

	.feature {
		padding: 0 25px;
	}

	.archive-layout {
		grid-template-columns: minmax(0, 1fr) 260px;
		gap: 30px;
	}
}

@media (max-width: 900px) {
	.site-header {
		position: relative;
		padding: 22px 22px 20px;
		background: #040505;
	}

	.header-inner {
		grid-template-columns: 1fr auto;
		align-items: center;
	}

	.brand-main {
		font-size: 45px;
	}

	.brand-sub {
		font-size: 19px;
	}

	.brand-the,
	.brand-podcast {
		font-size: 14px;
	}

	.brand-podcast::before,
	.brand-podcast::after {
		width: 45px;
	}

	.menu-toggle {
		display: block;
		padding: 9px 12px;
		border: 1px solid var(--gold);
		background: transparent;
		color: var(--gold);
		font: inherit;
		font-weight: 800;
	}

	.primary-nav {
		display: none;
		grid-column: 1 / -1;
		padding-top: 18px;
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav ul {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 13px 25px;
	}

	.hero,
	.hero-inner {
		min-height: 720px;
	}

	.hero-art {
		left: 30%;
		opacity: 0.63;
	}

	.hero-art::after {
		width: 72%;
		background: linear-gradient(90deg, #030404 20%, rgba(3, 4, 4, 0.15));
	}

	.hero-inner {
		padding: 75px 28px 45px;
	}

	.hero-copy {
		width: min(580px, 84%);
		margin-left: 0;
	}

	.feature-grid {
		grid-template-columns: 1fr;
		padding: 10px 28px;
	}

	.feature,
	.feature:first-child,
	.feature:last-child {
		padding: 20px 0;
		border-right: 0;
		border-bottom: 1px solid #393939;
	}

	.feature:last-child {
		border-bottom: 0;
	}

	.latest-inner {
		grid-template-columns: 1fr;
		gap: 25px;
	}

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

	.blog-main,
	.content-main {
		padding-top: 70px;
	}

	.blog-main::before,
	.content-main::before {
		display: none;
	}

	.archive-layout {
		grid-template-columns: 1fr;
	}

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

	.subscribe-sidebar {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	body {
		font-size: 16px;
	}

	.brand-main {
		font-size: 37px;
	}

	.brand-sub {
		font-size: 15px;
	}

	.brand-podcast {
		letter-spacing: 0.1em;
	}

	.hero,
	.hero-inner {
		min-height: 650px;
	}

	.hero-art {
		left: 0;
	}

	.hero-art img {
		object-position: 60% top;
	}

	.hero-inner {
		padding-top: 60px;
	}

	.hero-copy {
		width: 100%;
	}

	.hero h1 {
		font-size: clamp(49px, 15vw, 68px);
	}

	.hero-copy p {
		font-size: 17px;
	}

	.feature {
		grid-template-columns: 55px 1fr;
		gap: 14px;
	}

	.latest-inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.subscribe-card {
		padding: 23px;
	}

	.section-heading {
		display: block;
	}

	.section-heading .text-link {
		display: inline-block;
		margin-top: 18px;
	}

	.post-grid,
	.archive-posts .post-grid,
	.blog-sidebar {
		grid-template-columns: 1fr;
	}

	.blog-preview {
		padding-right: 20px;
		padding-left: 20px;
	}

	.blog-main,
	.content-main {
		padding: 55px 20px 70px;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.post-navigation > div:last-child {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
