/* ============================================
   EDITORIAL MAGAZINE THEME
   ============================================ */
:root {
    --editorial-dark: #0a0a0a;
    --editorial-light: #fafafa;
    --editorial-gray: #6b6b6b;
    --editorial-accent: #c9a961;
    --editorial-gold: #d4af37;
    --primary-gold: #b8960c;
    --editorial-transition: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
}
       
body {
    background: var(--editorial-light);
    color: var(--editorial-dark);
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
       
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.index-hero {
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--editorial-dark) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.index-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(184, 150, 12, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.index-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--editorial-accent), transparent);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px;
}

.hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--editorial-accent);
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--editorial-light);
    margin: 0;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title span {
    font-style: italic;
    background: linear-gradient(135deg, var(--editorial-gold) 0%, var(--editorial-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
       
/* ============================================
   LAYOUT
   ============================================ */
.three-cols {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    gap: 30px;
    align-items: start;
}
       
.three-cols.category-page {
    grid-template-columns: 1fr !important;
}
       
.three-cols-body {
    min-width: 0;
}
       
.three-cols-aside {
    position: sticky;
    top: 20px;
}
       
/* ============================================
   SIDEBAR - Editorial Style
   ============================================ */
.inner-aside {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 22px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--editorial-transition);
    position: relative;
    overflow: hidden;
}

.inner-aside::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--editorial-accent));
    transform: scaleX(0);
    transition: transform 0.4s var(--editorial-transition);
}
       
.inner-aside:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.inner-aside:hover::before {
    transform: scaleX(1);
}
       
.inner-aside .heading .title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--editorial-dark);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}
       
.inner-aside .heading .title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
       
.inner-aside .heading .title a:hover {
    color: var(--primary-gold);
}
       
.aside-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
       
.aside-list .item {
    margin: 0 0 4px;
}
       
.aside-list .item a {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    color: var(--editorial-gray);
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
       
.aside-list .item a:hover {
    background: rgba(184, 150, 12, 0.06);
    color: var(--primary-gold);
    border-left-color: var(--primary-gold);
    padding-left: 18px;
}
       
.aside-list.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
       
.aside-list.tags li {
    margin: 0 !important;
}
       
.aside-list.tags li a {
    display: inline-block !important;
    padding: 6px 14px !important;
    background: rgba(184, 150, 12, 0.05);
    border-radius: 20px;
    font-size: 12px;
    color: var(--editorial-gray) !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 500;
}
       
.aside-list.tags li a:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--editorial-accent)) !important;
    color: white !important;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 150, 12, 0.3);
}
       
.item-post.small {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--editorial-transition);
    display: block;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
       
.item-post.small:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
       
.item-post.small .wrap_image {
    display: block;
    position: relative;
    overflow: hidden;
}
       
.item-post.small .wrap_image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
       
.item-post.small:hover .wrap_image img {
    transform: scale(1.1);
}
       
.item-post.small .wrap_desc {
    padding: 14px;
}
       
.item-post.small h3 {
    font-family: 'Playfair Display', serif;
    font-size: 14px !important;
    margin: 0 !important;
    line-height: 1.4;
    font-weight: 600;
    color: var(--editorial-dark);
}

/* Sidebar Blog Post Date Styling */
.item-post.small .stat {
    display: block;
    margin-top: 8px;
}

.item-post.small .stat .item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.item-post.small .stat .icon {
    font-size: 12px;
    color: var(--editorial-accent);
}

.item-post.small .stat .value {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--editorial-gray);
    letter-spacing: 0.5px;
}

.item-post.small:hover .stat .value {
    color: var(--primary-gold);
}

/* Top Rated This Week - No rank numbers, just titles */
.compact-item .rank-number {
    display: none;
}

.compact-item .compact-rating {
    display: none;
}
       
.compact-gallery-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
       
.compact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(184, 150, 12, 0.03);
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
       
.compact-item:hover {
    background: rgba(184, 150, 12, 0.08);
    border-left-color: var(--primary-gold);
}
       
.rank-number {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--editorial-accent);
    min-width: 30px;
    text-align: center;
}
       
.compact-link {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
    flex: 1;
}
       
.compact-title {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--editorial-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
       
.compact-item:hover .compact-title {
    color: var(--primary-gold);
}

/* ============================================
   GUIDES LIST - Sidebar
   ============================================ */
.guide-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.guide-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(184, 150, 12, 0.03);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.guide-list a:hover {
    background: rgba(184, 150, 12, 0.08);
    border-left-color: var(--primary-gold);
    transform: translateX(4px);
}

.guide-list .guide-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--editorial-accent));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.guide-list .guide-title {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--editorial-gray);
    line-height: 1.4;
}

.guide-list a:hover .guide-title {
    color: var(--primary-gold);
}

.guide-section-badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, var(--primary-gold), var(--editorial-accent));
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    margin-left: 8px;
}

.inner-aside .heading .title.guide-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin: 35px 0 !important;
}
       
.category-page .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 30px !important;
}
       
.item-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s var(--editorial-transition);
    max-width: 350px !important;
    margin: 0 auto !important;
    width: 100% !important;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.item-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--editorial-accent));
    transform: scaleX(0);
    transition: transform 0.4s var(--editorial-transition);
    z-index: 5;
}
       
.item-post:hover {
    box-shadow: 0 25px 60px rgba(184, 150, 12, 0.25);
    transform: translateY(-12px);
    border-color: rgba(184, 150, 12, 0.3);
}

.item-post:hover::before {
    transform: scaleX(1);
}
       
.wrap_image {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

/* Shimmer sweep effect */
.wrap_image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    z-index: 15;
    transition: none;
    pointer-events: none;
}

.item-post:hover .wrap_image::before {
    animation: shimmerSweep 0.8s ease forwards;
}

@keyframes shimmerSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Elegant overlay */
.wrap_image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.6) 30%,
        rgba(10, 10, 10, 0.2) 60%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 8;
    pointer-events: none;
}

.item-post:hover .wrap_image::after {
    opacity: 1;
}
       
.wrap_image a {
    display: block;
    cursor: pointer;
    position: relative;
}
       
.wrap_image img {
    width: 100%;
    height: auto;
    max-height: 525px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}
       
.item-post:hover .wrap_image img {
    transform: scale(1.1);
    filter: brightness(1.05);
}
       
.image-count-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-gold), var(--editorial-accent));
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 12;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.item-post:hover .image-count-badge {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 30px rgba(184, 150, 12, 0.5);
}
       
.hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    z-index: 10;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}
       
.item-post:hover .hover-info {
    opacity: 1;
    transform: translateY(0);
}

/* View Gallery Button */
.hover-info::before {
    content: 'VIEW GALLERY';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, var(--primary-gold), var(--editorial-accent));
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.1s;
    box-shadow: 0 4px 20px rgba(184, 150, 12, 0.4);
    pointer-events: none;
}

.item-post:hover .hover-info::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
       
.hover-info h2 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 14px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hover-info h2 a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hover-info h2 a:hover {
    color: var(--editorial-accent);
}
       
.hover-info .stat-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
       
.hover-info .stat-list .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.item-post:hover .hover-info .stat-list .item {
    transform: translateX(0);
    opacity: 1;
}

.item-post:hover .hover-info .stat-list .item:nth-child(1) { transition-delay: 0.15s; }
.item-post:hover .hover-info .stat-list .item:nth-child(2) { transition-delay: 0.2s; }
.item-post:hover .hover-info .stat-list .item:nth-child(3) { transition-delay: 0.25s; }
.item-post:hover .hover-info .stat-list .item:nth-child(4) { transition-delay: 0.3s; }
       
.hover-info .stat-list .item .icon {
    font-size: 14px;
    min-width: 20px;
    color: var(--editorial-accent);
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}
       
.hover-info .stat-list .item .value,
.hover-info .stat-list .item a.value {
    color: white !important;
    text-decoration: none;
}
       
.hover-info .stat-list .item a.value:hover {
    color: var(--editorial-accent) !important;
    text-decoration: underline;
}
       
/* Description Preview - Simple inline display */
.description-preview {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 16px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
       
.description-preview .value {
    font-family: 'Cormorant Garamond', serif;
    color: var(--editorial-gray);
    line-height: 1.5;
    font-size: 14px;
    flex: 1;
}
       
.description-preview .more-link {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-gold) !important;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.description-preview .more-link:hover {
    color: var(--editorial-accent) !important;
    text-decoration: underline;
}

/* ============================================
   SEO CONTENT
   ============================================ */
.seo-content {
    background: white;
    padding: 35px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-gold);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.seo-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.05), transparent);
}
       
.seo-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--editorial-dark);
    margin: 0 0 18px 0;
}
       
.seo-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: var(--editorial-gray);
    margin: 0 0 15px 0;
}
       
.seo-content strong {
    color: var(--primary-gold);
    font-weight: 600;
}
       
.description {
    background: white;
    padding: 22px 28px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--editorial-gray);
    box-shadow: var(--shadow-sm);
}

.description strong {
    color: var(--primary-gold);
}
       
/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 50px 0 40px;
    flex-wrap: wrap;
}
       
.pagination .item a,
.pagination .item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--editorial-dark);
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    transition: all 0.4s var(--editorial-transition);
}
       
.pagination .item a:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--editorial-accent));
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(184, 150, 12, 0.35);
}
       
.pagination .active a {
    background: linear-gradient(135deg, var(--primary-gold), var(--editorial-accent));
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(184, 150, 12, 0.3);
}
       
/* ============================================
   SPOT / CTA SECTION
   ============================================ */
.spot {
    background: linear-gradient(135deg, var(--editorial-dark) 0%, #1a1a1a 100%);
    padding: 55px;
    border-radius: 8px;
    color: white;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.spot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(184, 150, 12, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
}

.spot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--editorial-accent), var(--primary-gold));
}
       
.spot p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    color: rgba(250, 250, 250, 0.8);
}
       
.spot strong {
    font-weight: 600;
    color: var(--editorial-accent);
}
       
.spot h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    position: relative;
    z-index: 1;
    color: var(--editorial-accent);
}
       
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .three-cols { grid-template-columns: 1fr; }
    .aside-left, .aside-right { display: none; }
    .index-hero { display: none; }
}
       
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    .item-post { max-width: 100% !important; }
}
       
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}
       
@media (max-width: 768px) {
    .aside-right { display: none; }
    .spot { padding: 35px 25px; }
    .spot h2 { font-size: 1.6rem; }
}

/* ============================================
   SIDEBAR VIDEO GRID
   ============================================ */
.sidebar-video-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.sidebar-video-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    transition: all 0.4s var(--editorial-transition);
}

.sidebar-video-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(184, 150, 12, 0.2);
}

.sidebar-video-item a {
    display: block;
    text-decoration: none;
}

.sidebar-video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.sidebar-video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sidebar-video-item:hover img {
    transform: scale(1.05);
}

.sidebar-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 36px;
    height: 36px;
    background: rgba(184, 150, 12, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s var(--editorial-transition);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(184, 150, 12, 0.5);
}

.sidebar-video-play::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent white;
    margin-left: 2px;
}

.sidebar-video-item:hover .sidebar-video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.sidebar-video-info {
    padding: 10px 12px;
    background: white;
}

.sidebar-video-title {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--editorial-dark);
    line-height: 1.3;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.sidebar-video-item:hover .sidebar-video-title {
    color: var(--primary-gold);
}

.sidebar-video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.sidebar-video-model {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: var(--editorial-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar-video-model::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--editorial-accent);
    border-radius: 50%;
}

.sidebar-video-date {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    color: rgba(107, 107, 107, 0.7);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-video-date::before {
    content: '';
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.sidebar-video-cta {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--editorial-accent) 100%);
    color: white !important;
    text-decoration: none !important;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.4s var(--editorial-transition);
    box-shadow: 0 4px 15px rgba(184, 150, 12, 0.25);
}

.sidebar-video-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 150, 12, 0.4);
}

.sidebar-video-cta:visited {
    color: white !important;
}

/* Photographers Spotlight Card */
.photographers-spotlight {
    margin-bottom: 24px;
}

.photographers-card {
    display: block;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.photographers-card:hover {
    background: linear-gradient(135deg, #242424 0%, #181818 100%);
    border-color: var(--editorial-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.25);
}

.photographers-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--editorial-accent);
    margin-bottom: 0.75rem;
}

.photographers-card:hover .photographers-label {
    color: var(--editorial-gold);
}

.photographers-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fafafa;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.photographers-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: #888;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    font-style: italic;
}

.photographers-card:hover .photographers-desc {
    color: #aaa;
}

.photographers-cta {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--editorial-accent);
    letter-spacing: 0.05em;
}

.photographers-card:hover .photographers-cta {
    color: var(--editorial-gold);
}
