:root {
    --ls-bg: #09090b;
    --ls-text: #f4f4f5;
    --ls-text-muted: #a1a1aa;
    --ls-primary: #00ff88;
    --ls-primary-dim: rgba(0, 255, 136, 0.15);
    --ls-secondary: #e11d48;
    --ls-card: rgba(24, 24, 27, 0.7);
    --ls-card-solid: #18181b;
    --ls-border: rgba(255, 255, 255, 0.07);
    --ls-header: rgba(9, 9, 11, 0.92);
    --ls-font: 'Outfit', sans-serif;
    --ls-sidebar-w: 320px;
}

[data-theme="light"] {
    --ls-bg: #f1f5f9;
    --ls-text: #0f172a;
    --ls-text-muted: #64748b;
    --ls-primary: #6366f1;
    --ls-primary-dim: rgba(99, 102, 241, 0.12);
    --ls-secondary: #e11d48;
    --ls-card: rgba(255, 255, 255, 0.9);
    --ls-card-solid: #ffffff;
    --ls-border: rgba(0, 0, 0, 0.07);
    --ls-header: rgba(255, 255, 255, 0.92);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: var(--ls-bg);
    color: var(--ls-text);
    line-height: 1.65;
    transition: background 0.3s, color 0.3s;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.ls-title,
.ls-section-heading {
    font-family: 'Outfit', sans-serif;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

.ls-container {
    width: 92%;
    max-width: 1260px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.ls-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ls-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 64px;
}

.ls-logo-img img,
.custom-logo-link img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 45px;
    width: auto;
}

.ls-footer-logo-customizer .custom-logo-link img {
    margin-bottom: 0.01rem;
}

.ls-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.ls-site-tagline {
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 3px;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0.3px;
}

.ls-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.ls-title a {
    color: #fff;
}

.ls-title span {
    color: var(--ls-primary);
}

.ls-nav {
    flex: 1;
}

.ls-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0;
}

.ls-nav>ul>li {
    position: relative;
}

.ls-nav a {
    display: block;
    padding: 0 1rem;
    line-height: 64px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.ls-nav a:hover {
    color: var(--ls-primary);
}

.ls-nav>ul>li:hover>a {
    color: var(--ls-primary);
}

/* Dropdown */
.ls-nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    z-index: 300;
    padding: 0.5rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ls-nav ul ul a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    text-transform: none;
}

.ls-nav>ul>li:hover>ul {
    display: block;
}

.ls-header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ls-theme-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}

.ls-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ls-primary);
}

.ls-theme-toggle .ls-icon-sun {
    display: none;
}

[data-theme="light"] .ls-theme-toggle .ls-icon-sun {
    display: block;
}

[data-theme="light"] .ls-theme-toggle .ls-icon-moon {
    display: none;
}

.ls-cart-btn {
    position: relative;
    color: #fff;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.ls-cart-btn:hover {
    color: var(--ls-primary);
}

.ls-neon-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--ls-secondary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border-radius: 10px;
    line-height: 1;
}

.ls-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.ls-icon-bar {
    width: 24px;
    height: 2px;
    background: #f4f4f5;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO SLIDER ===== */
.ls-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.ls-hero-slider {
    position: relative;
    width: 100%;
    height: 520px;
}

.ls-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.ls-hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.ls-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.ls-hero-slide.active .ls-hero-img {
    transform: scale(1.05);
}

.ls-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.ls-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 2;
}

.ls-hero-cat {
    display: inline-block;
    background: var(--ls-secondary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.ls-hero-title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 0.75rem;
    line-height: 1.2;
    max-width: 700px;
    letter-spacing: -0.5px;
}

.ls-hero-title a {
    color: #fff;
}

.ls-hero-title a:hover {
    color: var(--ls-primary);
}

.ls-hero-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    gap: 1rem;
}

.ls-hero-controls {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.ls-hero-prev,
.ls-hero-next {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
}

.ls-hero-prev:hover,
.ls-hero-next:hover {
    background: var(--ls-primary);
    border-color: var(--ls-primary);
    color: #000;
}

.ls-hero-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.ls-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.ls-dot.active {
    background: var(--ls-primary);
    width: 22px;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--ls-primary);
}

/* ===== TICKER ===== */
.ls-ticker-bar {
    background: var(--ls-secondary);
    overflow: hidden;
    height: 38px;
    display: flex;
    align-items: center;
}

.ls-ticker-inner {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    width: 100%;
}

.ls-ticker-label {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 1.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.ls-ticker-track {
    overflow: hidden;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.ls-ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
    animation: ls-ticker 35s linear infinite;
    white-space: nowrap;
}

.ls-ticker-content:hover {
    animation-play-state: paused;
}

.ls-ticker-item {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 2.5rem;
    position: relative;
    flex-shrink: 0;
}

.ls-ticker-item::after {
    content: '•';
    position: absolute;
    right: 0.75rem;
    opacity: 0.5;
}

.ls-ticker-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes ls-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== CATEGORY BAR ===== */
.ls-cat-bar {
    background: var(--ls-card-solid);
    border-bottom: 1px solid var(--ls-border);
    position: sticky;
    top: 64px;
    z-index: 100;
}

.ls-cat-scroll {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ls-cat-scroll::-webkit-scrollbar {
    display: none;
}

.ls-cat-pill {
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ls-text-muted);
    white-space: nowrap;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.ls-cat-pill:hover,
.ls-cat-pill.active {
    background: var(--ls-primary);
    color: #000;
    border-color: var(--ls-primary);
    box-shadow: 0 0 12px var(--ls-primary-dim);
}

/* ===== HOME LAYOUT ===== */
.ls-home-layout {
    display: grid;
    grid-template-columns: 1fr var(--ls-sidebar-w);
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.ls-home-main {
    min-width: 0;
}

/* ===== 3-COLUMN MAGAZINE LAYOUT ===== */
.ls-mag-layout {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 0;
    margin: 2rem 0;
    border: 1px solid var(--ls-border);
    border-radius: 16px;
    background: var(--ls-card);
}

/* Left Column */
.ls-mag-left {
    position: sticky;
    top: 80px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--ls-border);
}

/* Right Column */
.ls-mag-right {
    position: sticky;
    top: 80px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--ls-border);
}

.ls-compact-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--ls-border);
    transition: background 0.2s;
    align-items: start;
    color: inherit;
}

.ls-compact-item:last-child {
    border-bottom: none;
}

.ls-compact-item:hover {
    background: var(--ls-primary-dim);
}

.ls-compact-thumb {
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.ls-compact-thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    transition: transform 0.4s;
}

.ls-compact-item:hover .ls-compact-thumb img {
    transform: scale(1.08);
}

.ls-compact-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.ls-compact-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.ls-compact-meta .ls-cat-tag {
    font-size: 0.6rem !important;
    padding: 0.1rem 0.45rem !important;
    flex-shrink: 0;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ls-compact-meta .ls-date {
    font-size: 0.68rem;
    flex-shrink: 0;
}

.ls-compact-body h4 {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ls-text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ls-compact-item:hover .ls-compact-body h4 {
    color: var(--ls-primary);
}

/* Center column — Carousel of 3 Featured Posts */
.ls-mag-center {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.ls-mag-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.ls-mag-feature {
    display: block;
    position: absolute;
    inset: 0;
    color: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.ls-mag-feature.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.ls-mag-feature-img {
    position: absolute;
    inset: 0;
}

.ls-mag-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 7s ease;
}

.ls-mag-feature.active .ls-mag-feature-img img {
    transform: scale(1.04);
}

.ls-mag-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 55%, transparent 100%);
}

.ls-mag-feature-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem 1.5rem 3.5rem;
    z-index: 2;
}

.ls-mag-feature-body h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 900;
    color: #fff;
    margin: 0.6rem 0 0.75rem;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.ls-mag-feature:hover .ls-mag-feature-body h2 {
    color: var(--ls-primary);
}

.ls-mag-feature-body p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0 0 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ls-mag-feature-body .ls-hero-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Carousel dots */
.ls-mag-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.ls-mag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.ls-mag-dot.active {
    background: var(--ls-primary);
    width: 22px;
    border-radius: 4px;
}

/* Right column - no scrollbar, just 4 posts */
.ls-mag-right {
    position: sticky;
    top: 80px;
    align-self: flex-start;
    border-left: 1px solid var(--ls-border);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* No scrollbar */
}

.ls-mag-right .ls-widget {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    flex: 1;
}

.ls-mag-right .ls-widget-title {
    margin-bottom: 0.85rem;
    padding-bottom: 0.6rem;
}

.ls-mag-right .ls-sidebar-post {
    grid-template-columns: 58px 1fr;
    gap: 0.65rem;
    padding: 0.6rem 0;
}

.ls-mag-right .ls-sidebar-thumb img {
    width: 58px;
    height: 46px;
}

.ls-mag-right .ls-sidebar-info h5 {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
}

/* ===== MORE POSTS FEED ===== */
.ls-feed-section {
    margin: 3rem 0;
}

.ls-section-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ls-text-muted);
    margin-bottom: 1.5rem;
}

.ls-section-heading span {
    color: var(--ls-primary);
}

.ls-section-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ls-border);
}

.ls-feed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--ls-border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--ls-card);
}

.ls-feed-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0;
    border-bottom: 1px solid var(--ls-border);
    transition: background 0.2s;
}

.ls-feed-grid>.ls-feed-card:nth-child(odd) {
    border-right: 1px solid var(--ls-border);
}

.ls-feed-grid>.ls-feed-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.ls-feed-card:hover {
    background: var(--ls-primary-dim);
}

.ls-feed-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.ls-feed-thumb img {
    width: 130px;
    height: 100%;
    min-height: 90px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.ls-feed-card:hover .ls-feed-thumb img {
    transform: scale(1.07);
}

.ls-thumb-cat {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.62rem !important;
    padding: 0.15rem 0.5rem !important;
}

.ls-feed-body {
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
}

.ls-feed-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
}

.ls-feed-title a {
    color: var(--ls-text);
}

.ls-feed-card:hover .ls-feed-title a {
    color: var(--ls-primary);
}

/* ===== FEATURED POST ===== */
.ls-featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background: var(--ls-card);
    border: 1px solid var(--ls-border);
    border-radius: 16px;
    overflow: hidden;
}

.ls-featured-thumb {
    position: relative;
    overflow: hidden;
    display: block;
}

.ls-featured-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ls-featured-post:hover .ls-featured-thumb img {
    transform: scale(1.05);
}

.ls-featured-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--ls-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.ls-featured-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ls-featured-title {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin: 0.75rem 0 1rem;
    line-height: 1.25;
}

.ls-featured-title a {
    color: var(--ls-text);
}

.ls-featured-title a:hover {
    color: var(--ls-primary);
}

.ls-featured-excerpt {
    color: var(--ls-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.ls-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--ls-primary);
    color: #000;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    transition: all 0.25s;
    align-self: flex-start;
}

.ls-read-more:hover {
    background: var(--ls-text);
    color: var(--ls-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ===== POST LIST ===== */
.ls-post-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ls-list-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--ls-border);
    align-items: start;
}

.ls-list-item:first-child {
    border-top: 1px solid var(--ls-border);
}

.ls-list-thumb {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
}

.ls-list-thumb img {
    width: 160px;
    height: 110px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.ls-list-item:hover .ls-list-thumb img {
    transform: scale(1.06);
}

.ls-list-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ls-list-title {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0.4rem 0 0.5rem;
}

.ls-list-title a {
    color: var(--ls-text);
}

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

.ls-list-excerpt {
    font-size: 0.88rem;
    color: var(--ls-text-muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ls-entry-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.ls-cat-tag {
    background: var(--ls-secondary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.15rem 0.6rem;
    border-radius: 3px;
    display: inline-block;
    align-self: flex-start;
    width: fit-content;
}

.ls-cat-tag:hover {
    background: var(--ls-primary);
    color: #000;
}

.ls-date {
    font-size: 0.78rem;
    color: var(--ls-text-muted);
    font-weight: 500;
}

/* ===== PAGINATION ===== */
.ls-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.ls-pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.ls-pagination a,
.ls-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid var(--ls-border);
    color: var(--ls-text-muted);
    transition: all 0.2s;
}

.ls-pagination a:hover,
.ls-pagination .current {
    background: var(--ls-primary);
    color: #000;
    border-color: var(--ls-primary);
}

/* ===== SIDEBAR ===== */
.ls-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ls-widget {
    background: var(--ls-card);
    border: 1px solid var(--ls-border);
    border-radius: 14px;
    padding: 1.5rem;
}

.ls-widget-title {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ls-text-muted);
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--ls-border);
}

.ls-widget-title span {
    color: var(--ls-primary);
}

.ls-sidebar-post {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--ls-border);
    align-items: start;
}

.ls-sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ls-sidebar-thumb img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.ls-sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ls-sidebar-date {
    font-size: 0.72rem;
    color: var(--ls-text-muted);
    font-weight: 500;
}

.ls-sidebar-info h5 {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ls-text);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ls-sidebar-post:hover .ls-sidebar-info h5 {
    color: var(--ls-primary);
}

/* Tags Cloud */
.ls-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ls-tags-cloud a {
    font-size: 0.78rem !important;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    background: var(--ls-bg);
    border: 1px solid var(--ls-border);
    color: var(--ls-text-muted) !important;
    transition: all 0.2s;
    line-height: 1 !important;
    display: inline-block !important;
}

.ls-tags-cloud a:hover {
    background: var(--ls-primary);
    color: #000 !important;
    border-color: var(--ls-primary);
}

/* ===== ARCHIVE ===== */
.ls-archive-header {
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--ls-border);
    margin-bottom: 2.5rem;
}

.ls-archive-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.ls-archive-header h1 span {
    color: var(--ls-primary);
}

.ls-archive-description {
    color: var(--ls-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.ls-page-header {
    padding: 2rem 0 1.5rem;
}

.ls-page-title {
    font-size: 2rem;
    font-weight: 900;
}

/* ===== SINGLE POST ===== */
.ls-single-main {
    display: grid;
    grid-template-columns: 1fr var(--ls-sidebar-w);
    gap: 3rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.ls-single-content {
    min-width: 0;
}

.ls-single-content .ls-entry {
    background: transparent;
    border: none;
    border-radius: 0;
}

.ls-single-content .ls-entry:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.ls-single-content .ls-thumbnail img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.ls-single-content .ls-entry-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--ls-text);
    margin: 1rem 0 1.25rem;
}

.ls-single-content .ls-entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--ls-text);
}

.ls-single-content .ls-entry-content p {
    margin-bottom: 1.5rem;
}

.ls-single-content .ls-entry-content img {
    border-radius: 12px;
    margin: 1.5rem 0;
}

.ls-single-content .ls-entry-content h2,
.ls-single-content .ls-entry-content h3 {
    margin: 2rem 0 1rem;
    font-weight: 800;
}

/* Related */
.ls-related {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--ls-border);
}

.ls-related>h3 {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ls-text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--ls-border);
}

.ls-related>h3 span {
    color: var(--ls-primary);
}

.ls-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.ls-related-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: var(--ls-card);
    border: 1px solid var(--ls-border);
    transition: all 0.3s;
}

.ls-related-item:hover {
    transform: translateY(-4px);
    border-color: var(--ls-primary);
}

.ls-related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.4s;
}

.ls-related-item:hover img {
    transform: scale(1.05);
}

.ls-related-item h4 {
    color: var(--ls-text);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.85rem;
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Infinite scroll separator */
.ls-post-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
    color: var(--ls-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ls-post-separator::before,
.ls-post-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ls-border);
}

.ls-infinite-loader {
    text-align: center;
    padding: 3rem 0;
}

.ls-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--ls-border);
    border-top-color: var(--ls-primary);
    border-radius: 50%;
    animation: ls-spin 0.9s linear infinite;
    margin: 0 auto;
}

@keyframes ls-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== FOOTER ===== */
.ls-footer {
    position: relative;
    background: #09090b;
    color: #fff;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
}

.ls-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ls-primary), transparent);
}

[data-theme="light"] .ls-footer {
    background: #09090b;
    color: #fff;
}

.ls-footer-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.ls-footer-col h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ls-footer-about p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.ls-footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ls-footer-nav a {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
}

.ls-footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ls-primary);
    transition: width 0.3s ease;
}

.ls-footer-nav a:hover {
    color: #fff;
}

.ls-footer-nav a:hover::after {
    width: 100%;
}

.ls-social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ls-social-links li {
    display: inline-block;
}

.ls-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ls-social-links a:hover {
    color: #fff;
    background: var(--ls-primary);
    border-color: var(--ls-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.ls-social-links .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.ls-social-links .icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.ls-social-links .text {
    display: none;
}

.ls-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 900px) {
    .ls-footer-widgets {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Header Socials */
.ls-header-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 0.5rem;
}

.ls-header-socials a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.ls-header-socials a:hover {
    color: var(--ls-primary);
}

@media (max-width: 900px) {
    .ls-header-socials {
        display: none;
    }
}

/* ===== OFFCANVAS MOBILE MENU ===== */
.ls-offcanvas {
    position: fixed;
    top: 0;
    left: -90%;
    width: 90%;
    height: 100vh;
    background: #09090b;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 15px 0 30px rgba(0, 0, 0, 0.5);
}

.ls-offcanvas.open {
    left: 0;
}

.ls-offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

.ls-offcanvas-overlay.open {
    opacity: 1;
    visibility: visible;
}

.ls-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ls-offcanvas-logo-customizer .custom-logo-link img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 35px;
    width: auto;
}

.ls-offcanvas-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.ls-offcanvas-close:hover {
    color: var(--ls-primary);
}

.ls-offcanvas-body {
    padding: 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    gap: 2rem;
}

.ls-offcanvas-search {
    margin-bottom: 0.5rem;
}

.ls-offcanvas-search form {
    display: flex;
    width: 100%;
}

.ls-offcanvas-search input[type="search"] {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 8px 0 0 8px;
    outline: none;
    font-size: 0.9rem;
}

.ls-offcanvas-search input[type="submit"] {
    background: var(--ls-primary);
    border: none;
    color: #000;
    padding: 0 1.25rem;
    border-radius: 0 8px 8px 0;
    font-weight: 800;
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.ls-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ls-mobile-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    transition: color 0.2s;
}

.ls-mobile-menu a:hover {
    color: var(--ls-primary);
}

.ls-offcanvas-socials h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.ls-social-icons-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ls-social-icons-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.ls-social-icons-row a:hover {
    background: var(--ls-primary);
    color: #000;
    transform: translateY(-2px);
}

.ls-offcanvas-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ls-offcanvas-footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* Archive and Search Header Banner */
.ls-archive-header {
    text-align: center;
    padding: 3.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ls-border);
    border-radius: 16px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.ls-archive-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--ls-primary);
}

.ls-archive-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.ls-archive-title span {
    color: var(--ls-primary);
}

.ls-archive-description {
    color: var(--ls-text-muted);
    font-size: 0.95rem;
    margin-top: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .ls-home-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ls-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .ls-mag-layout {
        grid-template-columns: 220px 1fr;
    }

    .ls-feed-grid {
        grid-template-columns: 1fr;
    }

    .ls-feed-grid>.ls-feed-card:nth-child(odd) {
        border-right: none;
    }

    .ls-feed-grid>.ls-feed-card:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--ls-border);
    }

    .ls-feed-grid>.ls-feed-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    :root {
        --ls-sidebar-w: 100%;
    }

    .ls-branding {
        max-width: 200px;
    }

    .ls-nav>ul {
        display: none !important;
    }

    .ls-menu-toggle {
        display: flex;
    }

    .ls-hero-slider {
        height: 380px;
    }

    .ls-hero-content {
        padding: 1.5rem;
    }

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

    .ls-featured-thumb img {
        height: 220px;
    }

    .ls-list-item {
        grid-template-columns: 120px 1fr;
    }

    .ls-list-thumb img {
        width: 120px;
        height: 90px;
    }

    .ls-related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .ls-sidebar {
        grid-template-columns: 1fr;
    }

    .ls-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .ls-mag-left,
    .ls-mag-right {
        position: static !important;
        align-self: auto !important;
        border-left: none !important;
        border-right: none !important;
    }

    .ls-mag-left {
        border-bottom: 1px solid var(--ls-border);
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .ls-ad-slot {
        position: sticky !important;
        top: 64px;
        z-index: 100;
        background: var(--ls-card-solid);
        border: 1px solid var(--ls-border);
        border-radius: 8px;
        padding: 0.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    }

    .ls-compact-item:last-child,
    .ls-compact-item:nth-last-child(2) {
        border-bottom: none;
    }

    .ls-mag-center {
        height: 320px;
    }

    .ls-feed-thumb img {
        width: 110px;
        min-height: 80px;
    }

    .ls-feed-card {
        grid-template-columns: 110px 1fr;
    }
}

@media (max-width: 480px) {
    .ls-hero-slider {
        height: 300px;
    }

    .ls-list-item {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }

    .ls-list-thumb img {
        width: 100px;
        height: 80px;
    }

    .ls-related-grid {
        grid-template-columns: 1fr;
    }

    .ls-mag-left {
        grid-template-columns: 1fr;
    }

    .ls-compact-item:nth-last-child(2) {
        border-bottom: 1px solid var(--ls-border);
    }

    .ls-feed-card {
        grid-template-columns: 90px 1fr;
    }

    .ls-feed-thumb img {
        width: 90px;
    }
}

/* ===== SIDEBAR RIGHT REDESIGN ===== */
.ls-mag-right {
    overflow: hidden;
}

.ls-mag-right-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ls-right-item {
    border-bottom: 1px solid var(--ls-border);
}

.ls-right-item:last-of-type {
    border-bottom: none;
}

/* Donate / Buy me a coffee */
.ls-donate-box {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 2px solid var(--ls-border);
    border-bottom: 2px solid var(--ls-border);
}

.ls-donate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000 !important;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    text-align: center;
    transition: all 0.25s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    letter-spacing: 0.3px;
}

.ls-donate-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
    text-shadow: none;
    color: #000 !important;
}

.ls-donate-btn svg {
    flex-shrink: 0;
    fill: #000;
}

/* Tags in right sidebar */
.ls-right-tags {
    margin: 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--ls-border);
}

/* Ad Slot */
.ls-ad-slot {
    margin-top: 1rem;
}

.ls-ad-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ls-text-muted);
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
}

.ls-ad-placeholder {
    background: var(--ls-bg);
    border: 2px dashed var(--ls-border);
    border-radius: 10px;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ls-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Views badge */
.ls-views-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--ls-text-muted);
    font-weight: 600;
}

.ls-views-badge svg {
    opacity: 0.7;
}

/* ===== FEATURED GROUP (Marquee + Most Viewed) ===== */
.ls-featured-group {
    background: #09090b;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    overflow: hidden;
    margin: 4rem 0;
    color: #fff;
}

[data-theme="light"] .ls-featured-group {
    background: #09090b;
    color: #fff;
}

.ls-giant-marquee {
    overflow: hidden;
    padding: 1.5rem 0;
}

.ls-giant-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: ls-giant-scroll 12s linear infinite;
}

.ls-giant-track:hover {
    animation-play-state: paused;
}

@keyframes ls-giant-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ls-gm-feat {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--ls-primary);
    padding: 0 1.5rem;
    display: inline-block;
    flex-shrink: 0;
    font-style: italic;
}

.ls-gm-cat {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
    display: inline-block;
    flex-shrink: 0;
    padding: 0 1rem;
}

[data-theme="light"] .ls-gm-cat {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
}

.ls-gm-sep {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--ls-secondary);
    display: inline-block;
    flex-shrink: 0;
    padding: 0 0.5rem;
}

/* ===== MOST VIEWED SECTION ===== */
.ls-most-viewed-inner {
    padding: 3rem 0 4rem;
}

.ls-featured-group .ls-section-heading {
    color: #fff;
}

.ls-featured-group .ls-section-heading::after {
    background: rgba(255, 255, 255, 0.15);
}

.ls-mv-period {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    font-weight: 500;
    margin-left: 0.75rem;
    font-style: italic;
}

.ls-mv-wrapper {
    position: relative;
}

.ls-mv-carousel {
    position: relative;
    height: 400px;
}

.ls-mv-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.ls-mv-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.ls-mv-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    color: inherit;
    transition: border-color 0.3s;
}

.ls-mv-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.ls-mv-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ls-mv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ls-mv-card:hover .ls-mv-img img {
    transform: scale(1.05);
}

.ls-mv-body {
    position: relative;
    z-index: 2;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.02);
}

.ls-mv-rank {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--ls-primary);
    opacity: 0.15;
    letter-spacing: -3px;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    z-index: 1;
}

.ls-mv-title {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.25;
    color: #fff;
    margin: 0;
    z-index: 2;
}

.ls-mv-card:hover .ls-mv-title {
    color: var(--ls-primary);
}

.ls-mv-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    z-index: 2;
}

.ls-mv-body p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    z-index: 2;
}

.ls-mv-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--ls-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    transition: transform 0.3s;
    z-index: 2;
}

.ls-mv-card:hover .ls-mv-cta {
    transform: translateX(5px);
}

.ls-mag-layout-bottom {
    background: transparent;
    border: none;
    border-radius: 0;
    margin-top: 3rem;
}

.ls-mag-center-feed {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background: transparent;
    border: none;
    border-radius: 0;
}

.ls-mag-center-feed .ls-feed-card {
    display: flex;
    flex-direction: column;
    background: var(--ls-card);
    border: 1px solid var(--ls-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.ls-mag-center-feed .ls-feed-card:hover {
    transform: translateY(-4px);
    border-color: var(--ls-primary);
    background: var(--ls-card-solid);
}

.ls-mag-center-feed .ls-feed-thumb {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 320px;
}

.ls-mag-center-feed .ls-feed-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.ls-mag-center-feed .ls-feed-card:hover .ls-feed-thumb img {
    transform: scale(1.05);
}

.ls-mag-center-feed .ls-feed-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ls-mag-center-feed .ls-feed-title {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.3px;
}

.ls-mag-center-feed .ls-feed-title a {
    color: var(--ls-text);
}

.ls-mag-center-feed .ls-feed-excerpt {
    color: var(--ls-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.ls-mag-center-feed .ls-entry-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: var(--ls-text-muted);
    border-top: 1px solid var(--ls-border);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.ls-mag-center-feed .ls-feed-more-link {
    margin-left: auto;
    font-weight: 800;
    color: var(--ls-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.ls-mag-center-feed .ls-feed-more-link:hover {
    color: #fff;
}

/* MV Controls */
.ls-mv-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.ls-mv-prev,
.ls-mv-next {
    background: var(--ls-card);
    border: 1px solid var(--ls-border);
    color: var(--ls-text);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.ls-mv-prev:hover,
.ls-mv-next:hover {
    background: var(--ls-primary);
    color: #000;
    border-color: var(--ls-primary);
}

.ls-mv-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ls-mv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ls-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.ls-mv-dot.active {
    background: var(--ls-primary);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--ls-primary-dim);
}

@media (max-width: 900px) {
    .ls-mv-carousel {
        height: 480px;
    }

    .ls-mv-card {
        grid-template-columns: 1fr;
        height: 100%;
    }

    .ls-mv-img {
        height: 200px;
        width: 100%;
    }

    .ls-mv-body {
        padding: 1.5rem;
    }

    .ls-mag-center-feed .ls-feed-thumb {
        height: 240px;
    }

    .ls-mag-center-feed .ls-feed-body {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .ls-mv-carousel {
        height: 520px;
    }

    .ls-mv-img {
        height: 180px;
    }

    .ls-mv-body {
        padding: 1.25rem;
        gap: 0.5rem;
    }

    .ls-gm-feat,
    .ls-gm-cat {
        font-size: 2.2rem;
    }

    .ls-mag-center-feed .ls-feed-thumb {
        height: 180px;
    }

    .ls-mag-center-feed .ls-feed-body {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .ls-mag-center-feed .ls-feed-title {
        font-size: 1.2rem;
    }
}

/* ===== ADS ===== */
.ls-ad-placeholder-inline {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.ls-sticky-ad-bottom {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 728px;
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    z-index: 1000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ls-sticky-ad-bottom.ls-ad-hidden {
    transform: translate(-50%, 100%);
    opacity: 0;
    pointer-events: none;
}

.ls-sticky-ad-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    z-index: 2;
    transition: all 0.2s ease;
}

.ls-sticky-ad-close:hover {
    background: #e11d48;
    border-color: #e11d48;
}

.ls-sticky-ad-content {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sidebar thumb visibility guarantee */
.ls-sidebar-thumb {
    display: block !important;
    width: 70px !important;
    height: 55px !important;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.ls-sidebar-thumb img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure compact thumbs show in sidebar/single pages */
.ls-sidebar .ls-compact-thumb,
.ls-mag-right .ls-compact-thumb {
    display: block !important;
    width: 80px !important;
    height: 60px !important;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.ls-sidebar .ls-compact-thumb img,
.ls-mag-right .ls-compact-thumb img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Social2Post Gallery Styles */
.s2p-gallery-item:hover {
    transform: scale(1.03);
}
.s2p-lightbox-trigger img {
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.s2p-lightbox-trigger img:hover {
    opacity: 0.95;
}