/**
 * Events Custom Styles
 * 
 * Styling for events archive, cards, and single pages
 */

/* Import Jost Font */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;500;500;600;500&display=swap');

:root {
    --nav-height: 185px;
}

html {
    scroll-padding-top: var(--nav-height);
}

/* Apply Jost font to events */
.events-hero-section,
.featured-events-section,
.all-events-header-section,
.event-card,
.event-card-carousel,
.single-event {
    font-family: 'Jost', sans-serif;
}

/* Hero Section */
.events-hero-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 60px;
}

.events-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.events-hero-section .uncont {
    position: relative;
    z-index: 2;
}

.events-hero-title {
    color: #fff !important;
    font-size: 70px !important;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.events-hero-subtitle {
    color: #4AA1AE;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}
h3.featured-event-title {
    margin-top: 0;
    font-size: 32px;
}
@media (max-width: 767px) {
    .events-hero-section {
        padding: 80px 0;
    }

    h3.featured-event-title {
    font-size: 26px;
}

    .events-hero-title {
    font-size: 46px !important;
}
    
    .events-hero-title {
        font-size: 32px;
    }
    
    .events-hero-subtitle {
        font-size: 12px;
    }
}

/* Featured Events Section */
.featured-events-section {
    margin-bottom: 80px;
}

.featured-events-title {
    font-size: 48px !important;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
}

/* Featured Events Slider */
.featured-events-slider {
    position: relative;
    overflow: visible;
    min-height: 500px;
}

.featured-event-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.featured-event-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.featured-event-card {
    display: flex;
    background: #fff;
    min-height: 500px;
    position: relative;
}

.featured-event-content {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f8f8;
}

.event-category-featured {
    margin-bottom: 20px;
}

.event-category-featured span {
    color: #4AA1AE;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.featured-event-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.3;
}

.featured-event-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-event-title a:hover {
    color: #4AA1AE;
}

.featured-event-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-date-featured,
.event-location-featured {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-date-featured {
    padding-bottom: 12px;
    border-bottom: 1px solid #000;
}

.featured-event-image {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.featured-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.featured-event-image:hover .featured-image-bg {
    transform: scale(1.05);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 60px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: #4AA1AE;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow-prev {
    left: -80px;
}

.slider-arrow-next {
    right: -80px;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    stroke-width: 2;
}

/* All Events Section */
.all-events-header-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    margin-bottom: 60px;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.all-events-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.all-events-header-section .uncont {
    position: relative;
    z-index: 2;
}

.all-events-title {
    color: #fff !important;
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Filter Bars */
.news-filters {
    padding-top: 15px;
    padding-bottom: 15px;
    background: #fff;
}

.event-filters {
    padding-top: 15px;
    padding-bottom: 15px;
    background: #fff;
}

/* Smart Team Pro Popup — Nav Overlap Fix */
.mfp-wrap {
    padding-top: var(--nav-height);
}

/* Event Filters */
.event-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.event-filter-btn {
    background: none !important;
    color: #333 !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.event-filter-btn:hover,
.event-filter-btn.active {
    color: #4AA1AE !important;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:50px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Event Card */
.event-card,
.event-card-carousel {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.event-card .t-entry-visual-cont,
.event-card-carousel .t-entry-visual-cont {
    position: relative;
    overflow: hidden;
}

.event-card .pushed,
.event-card-carousel .pushed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.event-card:hover .pushed,
.event-card-carousel:hover .pushed {
    transform: scale(1.08);
}

.event-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.event-category {
    margin-bottom: 12px;
}

.event-category-badge {
    color: #4AA1AE;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.event-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.3;
}

.event-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-title a:hover {
    color: #4AA1AE;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    justify-content: space-between;
    margin-top: 15px;
    border-bottom: 1px solid #000;
    transition: border-color 0.3s ease;
}

.event-card:hover .event-meta,
.event-card-carousel:hover .event-meta {
    border-bottom-color: #4AA1AE;
}

.event-date,
.event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.event-card .t-entry-text,
.event-card-carousel .t-entry-text {
    padding: 25px 0px;
}

/* Loading Spinner */
.events-loading {
    text-align: center;
    padding: 40px 0;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-events {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: #666;
}

/* Override theme defaults for single event */
.single-events .page-body {
    padding: 0;
}

.single-events .post-wrapper {
    padding: 0;
}

.single-events .post-body {
    padding: 0;
}

.single-events .box-wrapper {
    overflow: initial !important;
}

/* Single Event Page - Sticky Layout */
.single-event-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.single-event-image-column {
    width: 40%;
    position: relative;
}

.single-event-image-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.event-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.single-event-content-column {
    width: 60%;
    background: #fff;
}

.single-event-content-inner {
    padding: 80px 60px;
}

/* Event Header */
.single-event-header {
    margin-bottom: 0;
    padding: 40px 0;
    border-top: 1px solid lightgrey;
    border-bottom: none;
}

.event-category-single {
    margin-bottom: 15px;
}

.event-category-single span {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.single-event-title {
    font-size: 56px !important;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #4aa1ae;
    margin-top: 0;
}
.single-event-meta-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 36px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0;
    margin-bottom: 10px;
    font-family: 'Jost';
}
.meta-separator {
    color: #4AA1AE;
    padding: 0 5px;
}

span.meta-time {
    text-transform: uppercase !important;
}

.meta-location {
    font-size: 36px;
    font-weight: 500;
    font-family: 'Jost';
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease-in-out !important;
}

.meta-location:hover {
    text-decoration: none;
    color: #4AA1AE !important;
}

.event-buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.buy-tickets-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 9999px;
    letter-spacing: 2px !important;
    font-family: jost;
    transition: background 0.3s ease;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.buy-tickets-btn:hover {
    background: transparent;
    color: #000;
}

/* Event Description */
.single-event-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.single-event-description p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
}

/* Page Builder Content (the_content at bottom) */
.page-builder-content {
    font-size: 16px;
    line-height: 1.8;
}

.page-builder-content p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
}

/* Event Sections */
.single-event-section {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Event Dividers */
hr.event-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 40px 0;
}

.section-title {
    font-size: 32px !important;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #4aa1ae;
    margin-top: 0;
}



/* Venue Section */
.venue-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.venue-map {
    margin-top: 20px;
}

.venue-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 4px;
    max-width: 450px;
}

.venue-url a {
    color: #4AA1AE;
    text-decoration: none;
    transition: opacity 0.3s ease;
    word-break: break-all;
}

.venue-url a:hover {
    opacity: 0.7;
}

/* Repertoire Section */
.repertoire-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    cursor: pointer;
    gap: 30px;
    padding-bottom: 0;
}

.repertoire-header .section-title {
    margin: 0;
}

.repertoire-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.repertoire-toggle .toggle-icon {
    width: 40px;
    height: 40px;
    stroke: #000;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.repertoire-toggle.active .horizontal-line {
    opacity: 0;
}

.repertoire-content {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 1;
}

.repertoire-content.collapsed {
    max-height: 0;
    opacity: 0;
}

.repertoire-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 40px 0;
}

.repertoire-composer-block {
    margin-bottom: 30px;
}

.repertoire-composer-block:last-child {
    margin-bottom: 0;
}

.repertoire-composer {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4AA1AE;
    margin: 0 0 8px 0;
}

.repertoire-piece {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
}

.repertoire-movements {
    padding-left: 50px;
    margin-bottom: 4px;
}

.repertoire-movement {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
}

/* Performing Artists Section */
.artists-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.artist-item {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background: whitesmoke;
}
.artist-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-content {
    flex: 1;
}

.artist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.artist-name {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    color: #000;
}

.artist-bio-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.artist-bio-toggle .toggle-icon {
    width: 30px;
    height: 30px;
    stroke: #000;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.artist-bio-toggle.active .horizontal-line {
    opacity: 0;
}

.artist-bio-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.artist-bio-wrapper.expanded {
    max-height: 2000px;
    opacity: 1;
    margin-top: 15px;
}

.artist-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.artist-bio p {
    margin-top:0;
    margin-bottom: 15px;
}

/* Section-Level Collapsible (Artists & Contestants) */
.section-collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 40px 0;
    padding-bottom: 0;
}

.section-collapse-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.section-collapse-toggle .toggle-icon {
    width: 40px;
    height: 40px;
    stroke: #000;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.section-collapse-toggle.active .horizontal-line {
    opacity: 0;
}

.section-collapsible-content {
    max-height: 5000px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 1;
}

.section-collapsible-content.collapsed {
    max-height: 0;
    opacity: 0;
}

/* Contestants Section */
.contestants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.contestant-card {
    text-align: center;
    background: whitesmoke;
    padding: 30px;
}

.contestant-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 15px;
}

.contestant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contestant-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #000;
}

.contestant-country {
    font-size: 14px;
    color: #666;
    margin: 0 0 3px;
}

.contestant-division {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #4aa1ae;
    margin: 0;
}

@media (max-width: 991px) {
    .contestants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .repertoire-movements {
        padding-left: 30px;
    }
}

/* Events Shortcode */
.pno-events-shortcode {
    margin-bottom: 40px;
    position: relative;
}

/* Namespaced grid (avoids Uncode .row conflicts) */
.pno-events-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .pno-events-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Events Shortcode Slider (> 3 events) */
.pno-events-slider-viewport {
    overflow: hidden;
}

.pno-events-slider-track {
    position: relative;
}

.pno-events-slide {
    display: none;
}

.pno-events-slide.active {
    display: block;
}

.pno-events-slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0 0 50px;
}

.pno-events-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pno-events-arrow:hover {
    background: #000;
}

.pno-events-arrow svg {
    width: 22px;
    height: 22px;
    stroke: #000;
    transition: stroke 0.3s ease;
}

.pno-events-arrow:hover svg {
    stroke: #fff;
}

/* Related Events Section */
.related-events-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.related-events-title {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
}

.related-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-filters {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .related-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Responsive */
@media (max-width: 991px) {
    .featured-event-card {
        flex-direction: column;
    }
    
    .featured-event-content,
    .featured-event-image {
        width: 100%;
    }
    
    .featured-event-content {
        padding: 40px;
    }
    
    .featured-event-image {
        min-height: 500px;
    }
}

@media (max-width: 1200px) {
    .single-event-content-inner {
        padding: 60px 40px;
    }
}

@media (max-width: 991px) {
    .single-event-container {
        flex-direction: column;
    }
    
    .single-event-image-column {
        width: 100%;
    }
    
    .single-event-image-sticky {
        position: relative;
        height: 60vh;
    }
    
    .single-event-content-column {
        width: 100%;
    }
    
    .single-event-content-inner {
        padding: 50px 30px;
    }
    
    .artist-item {
        flex-direction: column;
    }
    
    .artist-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    .featured-event-content {
        padding: 30px;
    }
    
    .featured-events-title {
        font-size: 24px;
    }
    
    .all-events-title {
        font-size: 28px;
    }
    
    .featured-event-title {
        font-size: 24px;
    }
    
    .slider-nav {
        left: 30px;
        bottom: 20px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow-prev {
        left: 15px;
    }
    
    .slider-arrow-next {
        right: 15px;
    }
    
    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .event-filters {
        gap: 10px;
    }
    
    .event-filter-btn {
        padding: 8px 15px;
        font-size: 11px;
    }
    
    .all-events-header-section {
        padding: 60px 0;
    }
    
    .single-event-title {
        font-size: 28px;
    }

    .single-event-content-inner {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 24px;
    }
    
    .related-events-title {
        font-size: 28px;
    }
}

/* ========================================
   Laureates
   ======================================== */

.pno-laureates-wrap {
    font-family: 'Jost', sans-serif;
}

/* Tabs */
.pno-laureates-tabs {
    display: inline-flex;
    margin: 0 auto 50px;
    background: #ebebeb;
    border-radius: 40px;
    padding: 5px;
    max-width: 560px;
    width: 100%;
}

/* center the pill row */
.pno-laureates-wrap {
    text-align: center;
}

.pno-laureates-panel {
    text-align: left;
}

.pno-laureates-tab {
    flex: 1;
    padding: 12px 28px;
    background: transparent;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #333;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.25s ease;
}

.pno-laureates-tab.active {
    color: #4aa1ae;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* Panels */
.pno-laureates-panel {
    display: none;
}

.pno-laureates-panel.active {
    display: block;
}

/* ----------------------------------------
   Medalists — 3-column card grid
   ---------------------------------------- */

.pno-medalists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pno-medalist-card {
    background: #f5f5f5;
    padding: 30px;
    text-align: center;
}

.pno-medalist-photo {
    margin-bottom: 20px;
}

.pno-medalist-photo img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.pno-medalist-year {
    font-size: 36px;
    font-weight: 400;
    color: #4aa1ae;
    margin-bottom: 20px;
}

.pno-medalist-winners {
    display: flex;
    flex-direction: column;
}

.pno-medalist-winner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.pno-medalist-winner:last-child {
    border-bottom: none;
}

.pno-medalist-award {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4aa1ae;
    margin-bottom: 4px;
}

.pno-medalist-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.pno-medalist-country {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    margin-top: 2px;
}

/* ----------------------------------------
   Young Artists — division cards
   ---------------------------------------- */

.pno-laureates-year-group {
    margin-bottom: 60px;
}

.pno-laureates-year {
    font-size: 30px;
    font-weight: 400;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}

.pno-divisions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pno-division {
    padding: 40px;
}

.pno-division--senior {
    background: #e9f5f7;
}

.pno-division--junior {
    background: #f2f2f2;
}

.pno-division-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    text-align: center;
    margin: 0 0 30px 0;
}

.pno-division-list {
    display: flex;
    flex-direction: column;
}

.pno-division-winner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pno-division-winner:last-child {
    border-bottom: none;
}

.pno-division-award {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4aa1ae;
    margin-bottom: 6px;
}

.pno-division-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* ----------------------------------------
   Laureates responsive
   ---------------------------------------- */

@media (max-width: 991px) {
    .pno-medalists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pno-laureates-tabs {
        max-width: 100%;
    }

    .pno-laureates-tab {
        font-size: 11px;
        letter-spacing: 1px;
        padding: 12px 10px;
    }

    .pno-medalists-grid {
        grid-template-columns: 1fr;
    }

    .pno-medalist-year {
        font-size: 28px;
    }

    .pno-laureates-year {
        font-size: 24px;
    }

    .pno-divisions {
        grid-template-columns: 1fr;
    }

    .pno-division {
        padding: 30px 20px;
    }
}

/* ========================================
   News / Press Releases — Archive Grid
   ======================================== */

.pno-news-archive {
    font-family: 'Jost', sans-serif;
}

/* News Filters */
.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.news-filter-btn {
    background: none !important;
    border: none;
    color: #000 !important;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 5px;
    text-transform: capitalize;
}

.news-filter-btn:hover,
.news-filter-btn.active {
    color: #C4C4C4 !important;
}

/* Injected category tabs on tag/category filtered pages */
.pno-cat-tab {
    background: none;
    border: none;
    color: #000;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 5px;
    text-transform: capitalize;
    text-decoration: none;
}

.pno-cat-tab:hover,
.pno-cat-tab.active {
    color: #C4C4C4;
}

/* News Card Grid */
.news-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .news-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .news-card-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-filters {
        gap: 10px;
    }

    .news-filter-btn {
        font-size: 11px;
        padding: 6px 3px;
    }
}

/* News Card */
.news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 30px;
}

.news-card-date {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #4AA1AE;
    margin-bottom: 10px;
}

.news-card-image-link {
    display: block;
}

.news-card-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.news-card-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image-bg {
    transform: scale(1.05);
}

.news-card-body {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}

.news-card-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: #4AA1AE;
}

.news-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 15px;
    flex: 1;
}

.news-card-readmore {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #000;
    text-decoration: none;
    text-align: right;
    display: block;
    transition: color 0.3s ease;
}

.news-card-readmore:hover {
    color: #4AA1AE;
}

/* News Loading / Load More */
.news-loading {
    text-align: center;
    padding: 40px 0;
}

.news-load-more-wrap {
    text-align: center;
    padding: 20px 0 40px;
}

.news-load-more-btn {
    display: inline-block;
    background: transparent;
    color: #000;
    padding: 14px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #000;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-load-more-btn:hover {
    background: #000;
    color: #fff;
}

.no-news {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: #666;
    grid-column: 1 / -1;
}

/* ========================================
   News — Archive Page Hero
   ======================================== */

.news-archive-hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
}

.news-archive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #4AA1AE;
    opacity: 0.9;
    z-index: 1;
}

.news-archive-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.news-archive-hero-subtitle {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 15px;
    font-family: 'Jost', sans-serif;
}

.news-archive-hero-title {
    font-size: 56px !important;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    color: #fff !important;
    margin: 0;
    font-family: 'Jost', sans-serif;
}

@media (max-width: 767px) {
    .news-archive-hero {
        padding: 60px 0;
    }

    .news-archive-hero-title {
        font-size: 34px !important;
    }
}

/* ========================================
   News — Archive Sidebar Layout
   ======================================== */

.news-archive-layout {
    display: flex;
    gap: 50px;
    font-family: 'Jost', sans-serif;
}

.news-archive-main {
    flex: 1;
    min-width: 0;
}

.news-archive-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--nav-height) + 20px);
    align-self: flex-start;
}

.news-sidebar-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-sidebar-category-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.news-sidebar-category-list li:last-child {
    border-bottom: none;
}

.news-sidebar-category-list a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-sidebar-category-list a:hover {
    color: #4AA1AE;
}

@media (max-width: 991px) {
    .news-archive-layout {
        flex-direction: column;
        gap: 40px;
    }

    .news-archive-sidebar {
        width: 100%;
        position: static;
    }
}

/* ========================================
   News — Single Page
   ======================================== */

.single-news .page-body {
    padding: 0;
}

.single-news .post-wrapper {
    padding: 0;
}

.single-news .post-body {
    padding: 0;
}

.single-news .box-wrapper {
    overflow: initial !important;
}

/* News Header — hero with background image + teal overlay */
.single-news-header {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.single-news-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #4AA1AE;
    opacity: 0.9;
    z-index: 1;
}

.single-news-header-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.single-news-title {
    font-size: 42px !important;
    font-weight: 700;
    font-style: italic;
    line-height: 1.25;
    margin: 0 0 25px;
    color: #fff !important;
    font-family: 'Jost', sans-serif;
}

.single-news-meta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    font-family: 'Jost', sans-serif;
}

.single-news-meta-item {
    color: #fff;
}

/* News Content Layout */
.single-news-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 30px;
    gap: 60px;
    font-family: 'Jost', sans-serif;
}

.single-news-content-column {
    flex: 1;
    min-width: 0;
}

.single-news-featured-image {
    margin-bottom: 30px;
}

.single-news-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-news-body {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.single-news-body p {
    margin-bottom: 20px;
}

.single-news-body img {
    max-width: 100%;
    height: auto;
}

/* External Link Button */
.single-news-external-link {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.news-external-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 14px 35px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.news-external-btn:hover {
    background: transparent;
    color: #000;
}

.news-external-btn svg {
    flex-shrink: 0;
}

/* Sidebar */
.single-news-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.news-sidebar-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.news-sidebar-section:last-child {
    border-bottom: none;
}

.news-sidebar-heading {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: #000;
}

.news-sidebar-about {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    font-weight: 300;
}

.news-sidebar-about a {
    color: #4AA1AE;
    transition: opacity 0.3s ease;
}

.news-sidebar-about a:hover {
    opacity: 0.8;
}

.news-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-sidebar-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #333;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.news-sidebar-tag:hover,
.news-sidebar-tag.active {
    background: #4AA1AE;
    color: #fff;
}

.news-sidebar-category-list a.active {
    color: #4AA1AE;
}

.news-sidebar-source {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Back to News */
.single-news-back {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px 60px;
}

.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-back-link:hover {
    color: #4AA1AE;
}

.single-event-description p a {
    color: #4aa1ae;
    font-weight: 500;
}

/* News Single Responsive */
@media (max-width: 991px) {
    .single-news-container {
        flex-direction: column;
        gap: 40px;
    }

    .single-news-sidebar {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .single-news-header {
        padding: 60px 0;
    }

    .single-news-title {
        font-size: 26px !important;
    }

    .single-news-meta-bar {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 11px;
    }

    .single-news-container {
        padding: 40px 20px;
    }

    .single-news-back {
        padding: 0 20px 40px;
    }
}
