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

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
}

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

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

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

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-main {
    min-height: 60vh;
    padding: 2rem 0 0 0;
}

/* ========================================
   Sale Banner
   ======================================== */

.sale-banner {
    background: #FE670A;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.sale-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.sale-banner__btn {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: #fff;
    color: #FE670A;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.sale-banner__btn:hover {
    opacity: 0.85;
}

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

.site-header {
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-branding img {
    height: 60px;
}

.site-header a {
    color: #fff;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: #FE670A;
}

/* ========================================
   Social Icons
   ======================================== */

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* ========================================
   Content
   ======================================== */

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    font-size: 2rem;
    line-height: 1.2;
}

.entry-meta {
    font-size: 0.875rem;
    color: #aaa;
    margin-top: 0.5rem;
    display: flex;
    gap: 1rem;
}

.entry-content {
    max-width: 75ch;
}

.entry-content p {
    margin-bottom: 1rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.entry-thumbnail {
    margin-bottom: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.entry-excerpt {
    color: #aaa;
}

/* ========================================
   Single Post Layout
   ======================================== */

.single-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.single-layout__content .entry-content {
    max-width: 100%;
}

.single-layout__sidebar {
    border-left: 1px solid #ffffff1a;
    padding-left: 2.5rem;
}

.single-layout__sidebar .widget {
    margin-bottom: 2rem;
}

.single-layout__sidebar .widget-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.single-layout__sidebar .widget * {
    color: #ccc;
}

.single-layout__sidebar .widget a:hover {
    color: #FE670A;
}

/* ========================================
   Posts Grid
   ======================================== */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* ========================================
   Homepage - Hero
   ======================================== */

.hero {
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 1) 100%
    ), url(/wp-content/uploads/2024/10/f822b8cd60be45fa15f16798ad4b0cd5.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 5rem 0;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 120px;
    text-align: left;
}

.hero__subtitle {
    margin-top: 0.75rem;
    margin-bottom: 180px;
    color: #aaa;
    font-size: 1.1rem;
    text-align: left;
}

.hero__browse {
    display: flex;
    align-items: center;
    gap: 10%;
    margin-top: 2rem;
}

.hero__browse-title {
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ========================================
   Homepage - Sections
   ======================================== */

.section {
    padding: 3.5rem 0;
    color: #fff;
}

.section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section__header .section__title {
    margin-bottom: 0;
}

.section__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* ========================================
   Homepage - Categories
   ======================================== */

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
}

.category-list__item a {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: solid 1px rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.category-list__item a:hover {
    border: solid 1px #FE670A;
    color: #fff;
}

/* ========================================
   Homepage - Interim CTA
   ======================================== */

.section--interim-cta {
    color: #fff;

}

.section--interim-cta .container {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background-image: linear-gradient(225deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%), url(/wp-content/uploads/2026/02/numark.png);
    border: solid 1px #fe670a;
    border-radius: 5px;
}

.section--interim-cta p {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.section--interim-cta .btn {
    background: #FE670A;
    color: black;
    font-weight: 700;
}

/* ========================================
   Homepage - Carousel
   ======================================== */

.carousel {
    position: relative;
}

.carousel__track {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.carousel__slide {
    flex: 0 0 calc(25% - 1.125rem);
    scroll-snap-align: start;
    min-width: 280px;
    display: flex;
}

.carousel__slide article {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.carousel__slide .entry-excerpt {
    flex: 1;
}

.carousel__controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.carousel__btn:hover {
    background: #fff;
    color: #111;
}

/* ========================================
   Homepage - DJ Videos
   ======================================== */

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

.video-grid__item {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 5px;
    overflow: hidden;
}

.video-grid__item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   Homepage - CTA
   ======================================== */

.section--cta {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.section--cta .section__title {
    font-size: 2rem;
}

.section--cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #ccc;
    line-height: 1.7;
}

.btn--white {
    background: #fff;
    color: #111;
}

.btn--white:hover {
    background: #ddd;
}

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

.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #FE670A;
    color: black;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.2s, border-color 0.2s;
}

.btn:hover {
    background: #e55a00;
}

.btn--outline {
    background: transparent;
    border: 1px solid #FE670A;
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 0.4rem 1.25rem;
}

.btn--outline:hover {
    background: #FE670A;
    color: #fff;
}

/* ========================================
   DJ Videos Archive
   ======================================== */

.hero--short {
    padding: 3rem 0;
}

.hero--short .hero__title {
    margin-top: 40px;
}

.hero--short .hero__subtitle {
    margin-bottom: 40px;
}

.section--video-filters {
    padding-top: 0;
    padding-bottom: 0;
}

.video-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.video-filter {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: solid 1px rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.video-filter:hover {
    border-color: #FE670A;
}

.video-filter.active {
    background: #FE670A;
    border-color: #FE670A;
    color: #fff;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.video-card {
    transition: opacity 0.3s;
}

.video-card.hidden {
    display: none;
}

.video-card__embed {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.video-card__embed img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.video-card__embed:hover img {
    opacity: 0.8;
}

.video-card__embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 2;
}

.video-card__embed:hover .video-card__play {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.75rem;
    color: #fff;
}


/* ========================================
   Comments
   ======================================== */

.comments-area {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #ffffff1a;
}

.comments-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .comment {
    margin-bottom: 1.5rem;
}

.comment-body {
    background: linear-gradient(225deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid #ffffff15;
    border-radius: 5px;
    padding: 1.25rem;
}

.comment-list .children {
    list-style: none;
    padding-left: 2rem;
    margin-top: 1rem;
}

.comment-author.vcard {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comment-author .avatar {
    border-radius: 50%;
}

.comment-author .fn {
    color: #fff;
    font-size: 0.95rem;
}

.comment-author .says {
    display: none;
}

.comment-metadata {
    margin-top: 0.25rem;
}

.comment-metadata a {
    font-size: 0.8rem;
    color: #666;
    transition: color 0.2s;
}

.comment-metadata a:hover {
    color: #FE670A;
}

.comment-metadata .edit-link {
    margin-left: 0.75rem;
}

.comment-metadata .edit-link a {
    color: #FE670A;
    font-size: 0.75rem;
}

.comment-content {
    margin-top: 0.75rem;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.reply {
    margin-top: 0.75rem;
}

.comment-reply-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FE670A;
    transition: opacity 0.2s;
}

.comment-reply-link:hover {
    opacity: 0.7;
}

/* Comment Form */

.comment-respond {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #ffffff1a;
}

.comment-reply-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}

.comment-reply-title small a {
    font-size: 0.8rem;
    color: #FE670A;
    font-weight: 400;
    margin-left: 0.5rem;
}

.logged-in-as {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

.logged-in-as a {
    color: #FE670A;
}

.comment-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #aaa;
    margin-bottom: 0.4rem;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #ffffff20;
    border-radius: 5px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    resize: vertical;
}

.comment-form textarea:focus,
.comment-form input:focus {
    outline: none;
    border-color: #FE670A;
}

.comment-form .form-submit {
    margin-top: 1rem;
}

.comment-form .submit {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #FE670A;
    color: #000;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.comment-form .submit:hover {
    background: #e55a00;
}


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

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #aaa;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

/* ========================================
   404
   ======================================== */

.error-404 {
    text-align: center;
    padding: 4rem 0;
}

.error-404 p {
    margin: 1rem 0 2rem;
    color: #666;
}

/* ========================================
   Pagination
   ======================================== */

.pagination,
.nav-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
}

/* ========================================
   WordPress Core
   ======================================== */

.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: #aaa; }
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ========================================
   Responsive
   ======================================== */
   
   @media (max-width:980px) {
       
       .main-nav,
    .social-icons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .site-header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .site-header .site-branding {
        z-index: 1001;
    }
    

   }

@media (max-width: 768px) {
    

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

    .single-layout__sidebar {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #ffffff1a;
        padding-top: 2rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__browse {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section--interim-cta .container {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

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

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

    .carousel__slide {
        flex: 0 0 85%;
    }
}

/* ========================================
   Custom Overrides
   ======================================== */

main.site-main {
    background: black;
}

.posts-grid article,
.carousel__slide article {
    border: solid 1px #ffffff26;
    border-radius: 5px;
    overflow: hidden;
    background: linear-gradient(225deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    position: relative;
}

.posts-grid article *,
.carousel__slide article * {
    color: white;
}

.posts-grid article h2,
.carousel__slide article h2 {
    font-size: 25px;
}

.posts-grid header.entry-header,
.carousel__slide header.entry-header {
    padding: 20px 20px 0px 20px;
}

.posts-grid .entry-excerpt,
.carousel__slide .entry-excerpt {
    padding: 0px 20px 20px 20px;
}

header.site-header {
    border-bottom: 0 !important;
}

header.site-header .container {
    border-bottom: solid 1px #ffffff2b;
}

h1.entry-title {
    color: white;
}

.entry-meta {
    color: white;
}

.entry-content {
    color: white;
}

.entry-content iframe {
    width: 100%;
}

.entry-thumbnail,
.entry-thumbnail img {
    width: 100%;
}

.lwptoc.lwptoc-autoWidth.lwptoc-baseItems.lwptoc-inherit {
    border-radius: 5px;
    border: solid 1px #ffffff45;
    background: linear-gradient(225deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
}

nav.main-nav a {
    font-weight: bold;
}

.nav-links {
    background: linear-gradient(225deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: solid 1px #ffffff26;
    border-radius: 5px;
    padding: 5px 15px;
}

h1 {
    color: white;
}

.nav-links * {
    color: white;
}

span.page-numbers.current {
    color: #FE670A;
}

nav.navigation.pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

footer.site-footer {
    background: black;
    margin-top: 0;
}

.site-footer {
    border-top: 1px solid #eeeeee42;
    padding: 2rem 0;
    margin-top: 3rem;
}

.category h1 {
    margin-bottom: 40px;
    text-align: center;
}

span.sale-banner__text {
    color: black;
    font-weight: bold;
}

.sale-banner__btn {
    background: black;
    color: white;
}

section.section.section--videos {padding-bottom:6em;}


article.dj-courses__single.dj-courses__single--active.show-single-courses.course-holder,
article.dj-courses__single.dj-courses__single--active.course-holder {
	border: solid 1px #ffffff3d;
	padding: 10px;
	border-radius:10px;
	    background: linear-gradient(225deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
}


article.dj-courses__single.dj-courses__single--active.show-single-courses.course-holder {
	max-width: 290px;
	position:relative;
}


.dj-courses__single {
	padding: 0;
	box-shadow: none;
	margin: 0;
	border-radius: 0;
}

.tile-image {
	margin-bottom: 10px;
}

.tile-image img {
	height: 220px;
	object-fit: cover;
	border-radius: 10px;
}


article.dj-courses__single.dj-courses__single--active.show-single-courses.course-holder:hover img {
	transform: scale(1.2)rotate(5deg);
}

.tile-image {
	overflow: hidden;
	border-radius: 10px
}

.tile-image img {
	margin-bottom: 0 !important;
	display: block;
	transition: 600ms;
}

.dj-courses.dj-courses-updated {
	grid-gap: 32px;
}

.dj-courses.dj-courses-updated .dj-courses__single a {
	color: #fff;
}

.tile-rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.tile-rating p {
	margin: 0;
	padding: 0;
}

.tile-rating__stars {
	position: relative;
}

.tile-rating__stars>div {

	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.tile-rating__rating {
	font-weight: bold;
}

.tile-blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 14px;
	margin-bottom:15px;
}

.tile-blocks__single {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border-radius: 4px;
}

.tile-blocks__single p {
	font-weight: bold;
	margin-bottom:0;
}

.tile-price.price-wrap {
	position: relative;
	left: auto;
	top: auto;
	margin-top: 12px;
	background: transparent;
	padding: 0;
	border-radius: 0;
}

.dj-courses-updated article.course-holder h2 {
	font-size: 22px !important;
}

.tile-blocks p {
	font-size: 12px;
}

p.tile-rating__review-count {
	font-size: 14px;
}

.course-tile-fix article.course-holder {
	width: 100% !important;
}

div#respond {margin-bottom:60px;}

.nav-links {justify-content:space-between;}

.logo-wrap {
    height: 50px;
    width: 50px;
    top: 20px;
	position: absolute;
    left: 20px;
	background-size: cover !important;
    background-position: center !important;
}


	article.dj-courses__single.dj-courses__single--active.course-holder.its-dj-package, .sale-is-on {
		border-color: #FE6809;
	}

	article.dj-courses__single.dj-courses__single--active.course-holder.its-dj-package:after {
		content: 'BEST VALUE';
		position: absolute;
		top: 190px;
		left: 20px;
		right: unset;
		font-size: 12px;
		color: black;
		background: #FE6809;
		border-radius: 5px;
		padding: 0px 10px;
		font-weight: bold;
	}
	
.sale-badge {
    color: #fff;
    font-weight: 700;
    position: absolute;
    padding: 5px 20px;
    right: 20px;
    top: 20px;
    border-radius: 5px;
	 background-color: #fe6809;
	text-transform:uppercase;
}

.sale-price {
    text-decoration: line-through;
}

.sale-is-on .tile-price {
    color: #FE670A;
}

.sale-is-on {border-color:#FE670A !important;}

.discount-tag {
    color: #fff;
    opacity: 0.5;
}

	@media (max-width:600px) {

		article.dj-courses__single.dj-courses__single--active.course-holder.its-dj-package:after {
			content: 'BEST VALUE';
			position: absolute;
			top: 250px;
			left: 20px;
			right: unset;
			font-size: 12px;
			color: black;
			background: #FE6809;
			border-radius: 5px;
			padding: 0px 10px;
			font-weight: bold;
		}
	}

h2.course-title {margin-top:10px;line-height:1.3em}

.course-holder-wrap.category-pages {display:flex; flex-wrap:wrap;gap:30px;margin-top:30px;}



/* DJ Reviews
   ========================================================================== */

.section--review-filters {
    padding-top: 0;
    padding-bottom: 0;
}

.review-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.review-filters__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-filter {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s, border-color 0.2s;
}

.review-filter:hover {
    border-color: #FE670A;
}

.review-filter.active {
    background: #FE670A;
    border-color: #FE670A;
    color: #fff;
}

.review-filters__search {
    flex-shrink: 0;
}

.review-search {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #fff;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    width: 250px;
    outline: none;
    transition: border-color 0.2s;
}

.review-search::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.review-search:focus {
    border-color: #FE670A;
}

.posts-grid--reviews article.hidden {
    display: none;
}

.no-results {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 2rem 0;
}

.no-results.hidden {
    display: none;
}

@media (max-width: 768px) {
    .review-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .review-search {
        width: 100%;
    }
}

.post-author {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.post-author__image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author__content h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FE670A;
    margin: 0.75rem 0 0.25rem;
}

.post-author__content h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.post-author__content p {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Menu
   ========================================================================== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 1000;
    padding: 100px 2rem 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu__list li {
    margin-bottom: 1.5rem;
}

.mobile-menu__list a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu__list a:hover {
    color: #FE670A;
}

.mobile-menu__list .current-menu-item > a,
.mobile-menu__list .current_page_item > a {
    color: #FE670A;
}

.mobile-menu__social {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
}

.mobile-menu__social a {
    color: #fff;
    display: flex;
    transition: opacity 0.2s;
}

.mobile-menu__social a:hover {
    opacity: 0.7;
}