/**
 * Gospel Waves skin for RareRadio.
 * Loaded after every parent stylesheet (priority 2000), so it wins without
 * needing !important except where the parent itself uses it.
 *
 * Sections: 1 base · 2 header · 3 page hero · 4 footer · 5 blog archive
 *           6 single post · 7 comments/forms · 8 floating player · 9 responsive
 */

/* ------------------------------------------------------------------ 1 base */

body.gw-theme {
	background: var(--gw-bg);
	color: var(--gw-text-60);
	font-family: var(--gw-font-body);
	font-size: 16px;
	line-height: 1.7;
}

body.gw-theme .page_content_wrap {
	background: var(--gw-bg);
}

body.gw-theme.single .page_content_wrap,
body.gw-theme.page:not(.elementor-page) .page_content_wrap,
body.gw-theme.error404 .page_content_wrap {
	padding-top: 110px;
}

body.gw-theme.elementor-page .page_content_wrap,
body.gw-theme.blog .page_content_wrap,
body.gw-theme.archive .page_content_wrap,
body.gw-theme.search .page_content_wrap {
	padding-top: 0;
}

body.gw-theme.blog .content_wrap,
body.gw-theme.archive .content_wrap,
body.gw-theme.search .content_wrap,
body.gw-theme.elementor-page .content_wrap {
	width: 100%;
	max-width: none;
	margin: 0;
}

body.gw-theme .gw-ic {
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: -0.125em;
	flex-shrink: 0;
}

.gw-btn-gradient {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 9px 22px;
	border-radius: 9999px;
	background: var(--gw-gradient);
	color: #fff !important;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.gw-btn-gradient:hover,
.gw-btn-gradient:focus {
	opacity: 0.9;
	color: #fff !important;
}

/* ---------------------------------------------------------------- 2 header */

.gw-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.gw-header.is-scrolled {
	background: var(--gw-glass-strong);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom-color: var(--gw-line);
}

.gw-header__wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.gw-header__logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--gw-lime) !important;
	text-decoration: none;
	flex-shrink: 0;
}

.gw-header__logo .gw-ic {
	width: 24px;
	height: 24px;
}

.gw-header__logo img,
.gw-header__logo .custom-logo {
	max-height: 44px;
	width: auto;
}

.gw-header__name {
	font-family: var(--gw-font-head);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--gw-text);
	text-transform: uppercase;
	white-space: nowrap;
}

.gw-header__name em {
	font-style: normal;
	color: var(--gw-lime);
}

.gw-header__nav {
	display: flex;
	flex: 1;
	justify-content: center;
	min-width: 0;
}

ul.gw-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.gw-menu li {
	position: relative;
	margin: 0;
}

ul.gw-menu > li > a {
	display: block;
	padding: 8px 12px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gw-text-70);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease, background 0.2s ease;
}

ul.gw-menu > li > a:hover {
	color: var(--gw-text);
	background: rgba(255, 255, 255, 0.05);
}

ul.gw-menu > li.current-menu-item > a,
ul.gw-menu > li.current_page_item > a,
ul.gw-menu > li.current-menu-ancestor > a {
	color: var(--gw-lime);
	background: rgba(255, 255, 255, 0.05);
}

/* dropdowns */
ul.gw-menu ul.sub-menu,
ul.gw-menu ul.children {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	margin: 6px 0 0;
	padding: 8px;
	list-style: none;
	background: var(--gw-glass-strong);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border: 1px solid var(--gw-line);
	border-radius: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 1001;
}

ul.gw-menu li:hover > ul.sub-menu,
ul.gw-menu li:focus-within > ul.sub-menu,
ul.gw-menu li:hover > ul.children,
ul.gw-menu li:focus-within > ul.children {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

ul.gw-menu ul.sub-menu a,
ul.gw-menu ul.children a {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 14px;
	color: var(--gw-text-70);
	text-decoration: none;
}

ul.gw-menu ul.sub-menu a:hover,
ul.gw-menu ul.children a:hover {
	color: var(--gw-text);
	background: rgba(255, 255, 255, 0.05);
}

.gw-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

/* CSS-only hamburger */
.gw-nav-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.gw-burger {
	display: none;
	padding: 8px;
	border-radius: 10px;
	color: var(--gw-text);
	cursor: pointer;
	line-height: 0;
}

.gw-burger:hover {
	background: rgba(255, 255, 255, 0.05);
}

.gw-burger .gw-ic {
	width: 24px;
	height: 24px;
}

.gw-burger__close {
	display: none;
}

.gw-nav-toggle:checked ~ .gw-burger .gw-burger__open {
	display: none;
}

.gw-nav-toggle:checked ~ .gw-burger .gw-burger__close {
	display: inline;
}

.gw-mobile-menu {
	display: none;
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	background: rgba(15, 10, 30, 0.95);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 32px 24px;
	overflow-y: auto;
}

.gw-nav-toggle:checked ~ .gw-mobile-menu {
	display: flex;
}

ul.gw-mobile-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

ul.gw-mobile-menu__list li {
	margin: 0;
}

ul.gw-mobile-menu__list a {
	display: block;
	padding: 10px 16px;
	font-size: 24px;
	font-weight: 500;
	color: var(--gw-text-70);
	text-decoration: none;
}

ul.gw-mobile-menu__list a:hover {
	color: var(--gw-text);
}

ul.gw-mobile-menu__list li.current-menu-item > a,
ul.gw-mobile-menu__list li.current_page_item > a {
	color: var(--gw-lime);
}

.gw-mobile-menu__listen {
	margin-top: 24px;
	padding: 13px 32px;
	font-size: 17px;
}

/* ------------------------------------------------------------- 3 page hero */

.gw-pagehero {
	padding: 160px 0 64px;
	background: linear-gradient(180deg, var(--gw-bg-soft) 0%, var(--gw-bg) 100%);
}

.gw-pagehero__wrap,
.gw-arch__wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.gw-pagehero__title {
	margin: 0;
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--gw-text);
}

/* ---------------------------------------------------------------- 4 footer */

.gw-footer {
	background: var(--gw-bg);
	border-top: 1px solid var(--gw-line);
	padding: 64px 0 32px;
}

.gw-footer__wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.gw-footer__cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 48px;
	margin-bottom: 48px;
}

.gw-footer__tagline {
	margin: 16px 0 24px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--gw-text-50);
}

.gw-footer__socials {
	display: flex;
	gap: 12px;
}

.gw-footer__social {
	width: 36px;
	height: 36px;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--gw-glass);
	border: 1px solid var(--gw-line);
	color: var(--gw-text-60) !important;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.gw-footer__social:hover {
	color: var(--gw-pink) !important;
	border-color: rgba(255, 76, 152, 0.3);
}

.gw-footer__social .gw-ic {
	width: 16px;
	height: 16px;
}

.gw-footer__head {
	margin: 0 0 16px;
	font-family: var(--gw-font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gw-text-40);
}

ul.gw-footer__links,
ul.gw-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

ul.gw-footer__links li,
ul.gw-footer__contact li {
	margin: 0;
}

ul.gw-footer__links a {
	font-size: 14px;
	color: var(--gw-text-60);
	text-decoration: none;
	transition: color 0.2s ease;
}

ul.gw-footer__links a:hover {
	color: var(--gw-pink);
}

ul.gw-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: var(--gw-text-60);
}

ul.gw-footer__contact .gw-ic {
	width: 16px;
	height: 16px;
	margin-top: 4px;
	color: var(--gw-pink);
}

ul.gw-footer__contact a {
	color: var(--gw-text-60);
	text-decoration: none;
}

ul.gw-footer__contact a:hover {
	color: var(--gw-pink);
}

.gw-footer__bottom {
	border-top: 1px solid var(--gw-line);
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.gw-footer__bottom p {
	margin: 0;
	font-size: 14px;
	color: var(--gw-text-40);
}

.gw-footer__top {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	border: none;
	background: var(--gw-gradient);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.gw-footer__top:hover {
	opacity: 0.9;
}

.gw-footer__top .gw-ic {
	width: 20px;
	height: 20px;
}

/* ---------------------------------------------------------- 5 blog archive */

.gw-arch__hero {
	padding: 128px 0 64px;
	background: linear-gradient(180deg, var(--gw-bg-soft) 0%, var(--gw-bg) 100%);
}

.gw-arch__title {
	margin: 0 0 16px;
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--gw-text);
}

.gw-arch__subtitle {
	margin: 0;
	font-size: 18px;
	color: var(--gw-text-60);
	max-width: 640px;
}

.gw-arch__tabs {
	padding: 32px 0 0;
}

.gw-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gw-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gw-text-60);
	background: rgba(255, 255, 255, 0.05);
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.gw-tab:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--gw-text);
}

.gw-tab.is-active {
	background: var(--gw-gradient);
	color: #fff;
}

.gw-arch__grid-sec {
	padding: 32px 0 96px;
}

.gw-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.gw-card {
	background: var(--gw-glass);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border: 1px solid var(--gw-line);
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.25s ease;
}

.gw-card:hover {
	transform: translateY(-4px);
}

.gw-card__media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255, 76, 152, 0.25), rgba(255, 140, 66, 0.25));
}

.gw-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.gw-card:hover .gw-card__media img {
	transform: scale(1.05);
}

.gw-card__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.45);
}

.gw-card__placeholder .gw-ic {
	width: 48px;
	height: 48px;
}

.gw-card__body {
	padding: 20px;
}

.gw-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 9999px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: none;
	margin-bottom: 12px;
	transition: opacity 0.2s ease;
}

.gw-badge:hover {
	opacity: 0.8;
}

.gw-badge--pink {
	background: rgba(255, 76, 152, 0.1);
	color: var(--gw-pink) !important;
}

.gw-badge--blue {
	background: rgba(96, 165, 250, 0.1);
	color: var(--gw-blue) !important;
}

.gw-badge--lime {
	background: rgba(232, 255, 84, 0.1);
	color: var(--gw-lime) !important;
}

.gw-card__title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gw-card__title a {
	color: var(--gw-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.gw-card__title a:hover {
	color: var(--gw-pink);
}

.gw-card__excerpt {
	font-size: 14px;
	color: var(--gw-text-40);
	margin-bottom: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gw-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.gw-card__author {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--gw-text-50);
	min-width: 0;
}

.gw-card__author img {
	width: 24px;
	height: 24px;
	border-radius: 9999px;
	object-fit: cover;
}

.gw-card__date {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--gw-text-30);
	white-space: nowrap;
}

.gw-card__date .gw-ic {
	width: 12px;
	height: 12px;
}

/* pagination */
.gw-arch .pagination,
.gw-arch .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
	border: none;
}

.gw-arch .nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 16px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--gw-line);
	color: var(--gw-text-60);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.gw-arch .nav-links .page-numbers:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--gw-text);
}

.gw-arch .nav-links .page-numbers.current {
	background: var(--gw-gradient);
	border-color: transparent;
	color: #fff;
}

.gw-arch .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.gw-none {
	text-align: center;
	padding: 64px 0;
}

.gw-none h3 {
	color: var(--gw-text);
	margin-bottom: 8px;
}

/* ----------------------------------------------------------- 6 single post */

body.gw-theme.single-post .header_content_wrap {
	padding: 0 0 8px;
	background: transparent;
}

body.gw-theme.single-post .header_content_wrap .content_wrap,
body.gw-theme.single-post .content_wrap {
	max-width: 880px;
	width: 100%;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

body.gw-theme.single-post .post_title,
body.gw-theme.single-post h1.post_title,
body.gw-theme.single-post .entry-title {
	color: var(--gw-text);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-top: 0;
}

body.gw-theme.single-post .post_meta,
body.gw-theme.single-post .post_meta_item,
body.gw-theme.single-post .post_meta a,
body.gw-theme.single-post .post_date,
body.gw-theme.single-post .post_author {
	color: var(--gw-text-40);
	font-size: 14px;
}

body.gw-theme.single-post .post_meta a:hover {
	color: var(--gw-pink);
}

body.gw-theme.single-post .post_meta_item.post_categories a,
body.gw-theme.single-post .post_category a {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 9999px;
	background: rgba(255, 76, 152, 0.1);
	color: var(--gw-pink);
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	margin-right: 6px;
}

body.gw-theme.single-post .post_featured,
body.gw-theme.single-post .post_featured img {
	border-radius: 16px;
	overflow: hidden;
}

body.gw-theme .post_item_single {
	background: transparent;
	color: var(--gw-text-60);
}

body.gw-theme .post_content,
body.gw-theme .post_content p,
body.gw-theme .post_content li,
body.gw-theme .entry-content,
body.gw-theme .entry-content p {
	color: var(--gw-text-70);
	font-size: 1.06rem;
	line-height: 1.85;
}

body.gw-theme .post_content h1,
body.gw-theme .post_content h2,
body.gw-theme .post_content h3,
body.gw-theme .post_content h4,
body.gw-theme .post_content h5,
body.gw-theme .post_content h6 {
	color: var(--gw-text);
}

body.gw-theme .post_content a:not(.theme_button) {
	color: var(--gw-pink);
}

body.gw-theme .post_content a:not(.theme_button):hover {
	color: var(--gw-orange);
}

body.gw-theme .post_content blockquote,
body.gw-theme blockquote {
	background: var(--gw-glass);
	border-left: 4px solid var(--gw-pink);
	border-radius: 0 12px 12px 0;
	color: var(--gw-text);
	padding: 20px 24px;
	margin: 28px 0;
}

body.gw-theme .post_content blockquote p {
	color: var(--gw-text);
}

body.gw-theme .post_content code,
body.gw-theme .post_content pre {
	background: rgba(255, 255, 255, 0.08);
	color: var(--gw-lime);
	border-radius: 6px;
}

body.gw-theme .post_tags a,
body.gw-theme .tags_list a {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--gw-line);
	color: var(--gw-text-60);
	font-size: 13px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

body.gw-theme .post_tags a:hover,
body.gw-theme .tags_list a:hover {
	background: var(--gw-gradient);
	border-color: transparent;
	color: #fff;
}

/* author bio + related posts */
body.gw-theme .author_info,
body.gw-theme .related_wrap .related_item,
body.gw-theme .comments_wrap {
	background: var(--gw-glass);
	border: 1px solid var(--gw-line);
	border-radius: 16px;
}

body.gw-theme .author_info {
	padding: 28px;
}

body.gw-theme .author_info .author_title,
body.gw-theme .related_wrap .post_title,
body.gw-theme .related_wrap .post_title a {
	color: var(--gw-text);
}

body.gw-theme .related_wrap .post_title a:hover {
	color: var(--gw-pink);
}

body.gw-theme .related_wrap {
	border: none;
	background: transparent;
}

body.gw-theme .related_wrap .related_item {
	overflow: hidden;
	transition: transform 0.25s ease;
}

body.gw-theme .related_wrap .related_item:hover {
	transform: translateY(-4px);
}

/* prev / next navigation */
body.gw-theme .nav-links-single .nav-links a,
body.gw-theme .nav-links a {
	color: var(--gw-text-60);
}

body.gw-theme .nav-links-single .nav-links a:hover,
body.gw-theme .nav-links a:hover {
	color: var(--gw-pink);
}

/* theme buttons */
body.gw-theme .theme_button,
body.gw-theme button[type="submit"],
body.gw-theme input[type="submit"],
body.gw-theme .wp-block-button__link {
	background: var(--gw-gradient) !important;
	border: none !important;
	border-radius: 9999px !important;
	color: #fff !important;
	transition: opacity 0.2s ease;
}

body.gw-theme .theme_button:hover,
body.gw-theme button[type="submit"]:hover,
body.gw-theme input[type="submit"]:hover {
	opacity: 0.9;
}

/* --------------------------------------------------------- 7 comments/forms */

body.gw-theme .comments_wrap {
	padding: 28px;
}

body.gw-theme .comments_wrap .comments_title,
body.gw-theme .comments_wrap .comments_form_title,
body.gw-theme #reply-title {
	color: var(--gw-text);
}

body.gw-theme .comments_wrap input[type="text"],
body.gw-theme .comments_wrap input[type="email"],
body.gw-theme .comments_wrap input[type="url"],
body.gw-theme .comments_wrap textarea,
body.gw-theme .search_wrap input[type="text"],
body.gw-theme input.search_field,
body.gw-theme .wp-block-search__input {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--gw-line);
	border-radius: 12px;
	color: var(--gw-text);
}

body.gw-theme .comments_wrap input:focus,
body.gw-theme .comments_wrap textarea:focus {
	border-color: var(--gw-pink);
	outline: none;
}

body.gw-theme .comments_list_wrap .comment_text,
body.gw-theme .comments_list_wrap .comment_author {
	color: var(--gw-text-60);
}

body.gw-theme .comments_list_wrap .comment_author a {
	color: var(--gw-text);
}

/* -------------------------------------------------------- 8 floating player */

.gw-player {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 99999;
	width: 360px;
	max-width: calc(100vw - 48px);
	font-family: var(--gw-font-body);
}

.gw-player__card {
	background: rgba(26, 20, 46, 0.85);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border: 1px solid var(--gw-line);
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.gw-player.is-collapsed .gw-player__card {
	display: none;
}

.gw-player__pill {
	display: none;
	position: relative;
	width: 56px;
	height: 56px;
	margin-left: auto;
	border: none;
	border-radius: 9999px;
	background: var(--gw-gradient, linear-gradient(135deg, var(--gw-c1, #ff4c98), var(--gw-c2, #ff8c42)));
	color: #fff;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
	transition: transform 0.2s ease;
}

.gw-player__pill:hover {
	transform: scale(1.05);
}

.gw-player__pill .gw-ic {
	width: 24px;
	height: 24px;
}

.gw-player__pill-dot {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 10px;
	height: 10px;
	border-radius: 9999px;
	background: #ef4444;
	animation: gw-pulse 2s ease-in-out infinite;
}

.gw-player.is-collapsed .gw-player__pill {
	display: inline-flex;
}

.gw-player__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.gw-player__live {
	display: flex;
	align-items: center;
	gap: 8px;
}

.gw-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 9999px;
	background: #ef4444;
	animation: gw-pulse 2s ease-in-out infinite;
}

.gw-live-txt {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gw-red);
}

.gw-live-txt--plain {
	color: var(--gw-text-70);
	text-transform: none;
	letter-spacing: 0;
}

.gw-player__tools {
	display: flex;
	align-items: center;
	gap: 4px;
}

.gw-player__tool {
	background: transparent;
	border: none;
	padding: 6px;
	border-radius: 8px;
	color: var(--gw-text-40);
	cursor: pointer;
	line-height: 0;
	transition: color 0.2s ease, background 0.2s ease;
}

.gw-player__tool:hover {
	color: var(--gw-text);
	background: rgba(255, 255, 255, 0.05);
}

.gw-player__tool .gw-ic {
	width: 16px;
	height: 16px;
}

.gw-player__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.gw-player__info {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.gw-player__art {
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--gw-c1, #ff4c98), var(--gw-c2, #ff8c42));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
	overflow: hidden;
}

.gw-player.is-playing .gw-player__art {
	animation: gw-soft-pulse 2s ease-in-out infinite;
}

.gw-player__art img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gw-player__art img[hidden] {
	display: none;
}

.gw-player__art .gw-ic {
	width: 20px;
	height: 20px;
}

.gw-player__meta {
	min-width: 0;
}

.gw-player__title {
	font-size: 14px;
	font-weight: 600;
	color: var(--gw-text);
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gw-player__sub {
	font-size: 12px;
	color: var(--gw-text-50);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gw-player__listeners {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--gw-text-40);
}

.gw-player__listeners .gw-ic {
	width: 12px;
	height: 12px;
	color: var(--gw-lime);
}

.gw-player__play {
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 9999px;
	background: linear-gradient(135deg, var(--gw-c1, #ff4c98), var(--gw-c2, #ff8c42));
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	transition: transform 0.2s ease;
}

.gw-player__play:hover {
	transform: scale(1.05);
}

.gw-player__play .gw-ic {
	width: 20px;
	height: 20px;
}

.gw-play-ic {
	margin-left: 2px;
	line-height: 0;
}

.gw-pause-ic {
	display: none;
	line-height: 0;
}

.gw-player.is-playing .gw-play-ic {
	display: none;
}

.gw-player.is-playing .gw-pause-ic {
	display: inline;
}

.gw-player.is-loading .gw-player__play {
	opacity: 0.7;
}

/* visualizer bars */
.gw-player__bars {
	display: none;
	align-items: flex-end;
	justify-content: center;
	gap: 2px;
	height: 20px;
	margin-bottom: 12px;
}

.gw-player.is-playing .gw-player__bars {
	display: flex;
}

.gw-player__bars span {
	width: 3px;
	border-radius: 9999px;
	height: 6px;
	opacity: 0.7;
	background: var(--gw-c1, #ff4c98);
	animation: gw-bar 0.5s ease-in-out infinite alternate;
}

.gw-player__bars span:nth-child(even) {
	background: var(--gw-lime);
}

.gw-player__bars span:nth-child(2n) { animation-duration: 0.42s; animation-delay: 0.1s; }
.gw-player__bars span:nth-child(3n) { animation-duration: 0.55s; animation-delay: 0.2s; }
.gw-player__bars span:nth-child(4n) { animation-duration: 0.38s; animation-delay: 0.05s; }
.gw-player__bars span:nth-child(5n) { animation-duration: 0.6s; animation-delay: 0.15s; }
.gw-player__bars span:nth-child(7n) { animation-duration: 0.47s; animation-delay: 0.25s; }

/* volume */
.gw-player__volume {
	display: flex;
	align-items: center;
	gap: 8px;
}

.gw-player__vol {
	flex: 1;
	height: 4px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.2);
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	outline: none;
}

.gw-player__vol::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 12px;
	height: 12px;
	border-radius: 9999px;
	background: var(--gw-c1, #ff4c98);
	border: none;
}

.gw-player__vol::-moz-range-thumb {
	width: 12px;
	height: 12px;
	border-radius: 9999px;
	background: var(--gw-c1, #ff4c98);
	border: none;
}

[hidden] {
	display: none !important;
}

@keyframes gw-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes gw-soft-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.65; }
}

@keyframes gw-bar {
	0% { height: 4px; }
	100% { height: 20px; }
}

/* ------------------------------------------------------------ 9 responsive */

@media (max-width: 1024px) {
	.gw-header__nav,
	.gw-header__listen {
		display: none;
	}

	.gw-burger {
		display: inline-flex;
	}

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

	.gw-footer__cols {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media (max-width: 767px) {
	.gw-grid {
		grid-template-columns: 1fr;
	}

	.gw-footer__cols {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.gw-footer__bottom {
		flex-direction: column-reverse;
		text-align: center;
	}

	.gw-arch__hero {
		padding: 112px 0 48px;
	}

	.gw-pagehero {
		padding: 128px 0 48px;
	}

	body.gw-theme.single .page_content_wrap,
	body.gw-theme.page:not(.elementor-page) .page_content_wrap {
		padding-top: 96px;
	}

	.gw-player {
		bottom: 16px;
		right: 16px;
		width: calc(100vw - 32px);
		max-width: 360px;
	}
}
