:root {
    --bg: #ffffff;
    --panel: #f5f5f5;
    --panel2: #f0f0f0;
    --text: #1a1a1a;
    --muted: rgba(240, 240, 240, 0.96);
    --muted-light: #e8e8e8;
    --line: rgba(42, 46, 87, 0.12);
    --accent: #1a1a1a;
    --accent2: #e8e8f0;
    --ok: #2A2E57;
    --gold: #2A2E57;
    --gold-light: #6a7aaa;
    --shadow: 0 30px 70px rgba(0, 0, 0, 0.07);
    --radius: 0px;
    --radius2: 0px;
    --max: 1300px;
    --rainbow: linear-gradient(135deg, #2A2E57 0%, #4a4e7a 40%, #1a1e3f 100%);
    --btn-glow: rgba(42, 46, 87, 0.15);
    --header-bg: #2A2E57;
    --card-overlay: linear-gradient(0deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 60%, transparent 100%);
    --hover-lift: 0 20px 50px rgba(0, 0, 0, 0.08);
    --font-main: 'Inter', 'Helvetica', sans-serif;
    --font-body: 'Inter', 'Helvetica', sans-serif;
    --gold-glow: 0 0 50px rgba(42, 46, 87, 0.05);
    --border-gold: 1px solid rgba(42, 46, 87, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.01em;
    font-size: 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, li {
    list-style: none;
}

.wrap-solo-main-wp {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    padding: 12px 24px;
    background: var(--panel);
    color: var(--text);
    border: var(--border-gold);
    border-radius: var(--radius);
    z-index: 9999;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.top-stripe {
    height: 2px;
    background: var(--rainbow);
    opacity: 0.3;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
    height: 70px;
    padding: 0 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.brand .logo-text {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.brand .logo-text .light {
    color: #c0a0e0;
    font-weight: 200;
    font-style: italic;
    margin-left: 2px;
    letter-spacing: 4px;
}

.brand .logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rainbow);
    transition: width 0.4s ease;
}

.brand:hover .logo-text::after {
    width: 100%;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0;
}

nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    font-size: 10px;
    white-space: nowrap;
    background: transparent;
    border: none;
    letter-spacing: 3px;
    font-family: var(--font-body);
    text-transform: uppercase;
    opacity: 0.7;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover {
    opacity: 1;
    color: #ffffff;
}

nav a:hover::after {
    width: 30%;
}

nav a.active {
    opacity: 1;
    font-weight: 400;
    color: #ffffff;
}

nav a.active::after {
    width: 30%;
}

.menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 16px;
    line-height: 1;
    z-index: 100;
}

.menu-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.menu-btn .menu-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn.active .menu-icon {
    transform: rotate(90deg);
}

.menu-btn svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
}

@media (max-width: 920px) {
    .menu-btn {
        display: flex;
    }
    
    .brand .logo-text {
        font-size: 14px;
        letter-spacing: 5px;
        color: #ffffff;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #2A2E57;
        backdrop-filter: none;
        padding: 70px 20px 30px;
        flex-direction: column;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.3s ease;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 5px 0 50px rgba(0, 0, 0, 0.3);
    }
    
    nav.show {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 2px;
        width: 100%;
    }
    
    nav a {
        display: block;
        padding: 10px 14px;
        background: transparent;
        border: none;
        border-left: 2px solid transparent;
        border-radius: 0;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 300;
        font-size: 12px;
        text-align: left;
        white-space: normal;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 1;
        width: 100%;
    }
    
    nav a::after {
        display: none;
    }
    
    nav a:hover {
        border-left-color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
    }
    
    nav a.active {
        border-left-color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }
}

.hero {
    margin-top: 54px;
    padding: 20px 0 10px;
}

.hero-main-solo-main-wp {
    background: var(--panel2);
    border: var(--border-gold);
    border-radius: var(--radius2);
    padding: 28px 32px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.hero-main-solo-main-wp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rainbow);
    opacity: 0.2;
}

.hero-main-solo-main-wp::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 40%, rgba(106, 58, 154, 0.02), transparent 60%);
    pointer-events: none;
}

.hero-main-solo-main-wp h1 {
    font-family: var(--font-main);
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    position: relative;
    color: var(--text);
}

.hero-main-solo-main-wp h1 em {
    font-weight: 200;
    font-style: italic;
    opacity: 0.25;
    letter-spacing: 4px;
    color: var(--gold);
}

.hero-main-solo-main-wp p {
    font-family: var(--font-body);
    color: var(--text);
    font-size: 14px;
    margin: 0;
    max-width: 90%;
    position: relative;
    opacity: 0.6;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.7;
}

.hero-side {
    background: var(--panel);
    border: var(--border-gold);
    border-radius: var(--radius2);
    padding: 20px;
    box-shadow: var(--shadow);
}

.notice {
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: var(--radius);
    border: var(--border-gold);
    background: rgba(106, 58, 154, 0.02);
    color: var(--text);
    font-size: 12px;
    letter-spacing: 0.04em;
    font-family: var(--font-body);
    font-weight: 300;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 24px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--text);
    font-weight: 300;
    font-size: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 4px;
    font-family: var(--font-body);
    text-transform: uppercase;
    position: relative;
    min-height: 36px;
}

.btn:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.btn-primary {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}

.btn-primary:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: transparent;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.btn-small {
    padding: 4px 14px;
    font-size: 9px;
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    font-family: var(--font-body);
    letter-spacing: 3px;
    min-height: 30px;
}

.btn-small:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--text);
    font-size: 10px;
    font-weight: 300;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    letter-spacing: 1px;
}

.chip:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.chip::before {
    content: '•';
    font-size: 10px;
    opacity: 0.3;
    color: var(--gold);
}

.section {
    margin: 32px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 12px;
}

.section-header h2 {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 300;
    margin: 0;
    color: var(--text);
    letter-spacing: -0.01em;
    position: relative;
}

.section-header h2 em {
    font-weight: 200;
    font-style: italic;
    opacity: 0.2;
    letter-spacing: 4px;
    color: var(--gold);
}

.section-header .sub {
    font-family: var(--font-body);
    color: var(--text);
    font-size: 13px;
    margin: 4px 0 0;
    opacity: 0.5;
    letter-spacing: 0.04em;
    font-weight: 300;
    font-style: normal;
}

.grid {
    column-count: 4;
    column-gap: 14px;
    margin: 16px 0;
}

.post {
    break-inside: avoid;
    margin-bottom: 14px;
    background: var(--panel);
    border: var(--border-gold);
    border-radius: var(--radius2);
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow);
}

.post:hover {
    border-color: rgba(106, 58, 154, 0.2);
    box-shadow: var(--hover-lift);
    transform: translateY(-2px);
}

.post-thumb {
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, 0.02);
    overflow: hidden;
    position: relative;
}

.post-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.post:hover .post-thumb img {
    filter: brightness(1.02);
    transform: scale(1.01);
}

.post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 12px 10px 12px;
    background: var(--card-overlay);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom-left-radius: var(--radius2);
    border-bottom-right-radius: var(--radius2);
    z-index: 2;
    pointer-events: auto;
}

.post-actions-solo-main-wp {
    display: flex;
    justify-content: center;
}

.post-actions-solo-main-wp .btn {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(106, 58, 154, 0.1);
    color: var(--text);
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.3);
    min-width: 80px;
    padding: 4px 16px;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 3px;
    border-radius: 0;
    font-family: var(--font-body);
    text-transform: uppercase;
    min-height: 30px;
}

.post-actions-solo-main-wp .btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.post-info {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-align: center;
    border-radius: var(--radius);
    border: var(--border-gold);
    z-index: 2;
}

.post-title {
    font-family: var(--font-body);
    font-size: 10px;
    margin: 0;
    color: var(--text);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.post-meta {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text);
    margin: 0 0 8px;
    opacity: 0.5;
    letter-spacing: 0.04em;
    font-weight: 300;
}

.section .article-solo-main-wp {
    background: var(--panel);
    border: var(--border-gold);
    border-radius: var(--radius2);
    padding: 24px 28px;
    margin: 24px 0;
    width: 100%;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.section .article-solo-main-wp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--rainbow);
    opacity: 0.15;
}

.section .article-solo-main-wp:first-child {
    margin-right: 10px;
}

@media (min-width: 1025px) {
    .section .article-solo-main-wp {
        width: calc(50% - 10px);
        display: inline-block;
        vertical-align: top;
    }
}

.article-solo-main-wp h2 {
    font-family: var(--font-main);
    font-size: 20px;
    margin: 0 0 12px;
    color: var(--text);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.article-solo-main-wp h2 a {
    position: relative;
}

.article-solo-main-wp h2 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
    opacity: 0.3;
}

.article-solo-main-wp h2 a:hover::after {
    width: 100%;
}

.article-solo-main-wp h3 {
    font-family: var(--font-main);
    font-size: 16px;
    margin: 18px 0 10px;
    color: var(--text);
    opacity: 0.5;
    font-weight: 300;
    font-style: italic;
}

.article-solo-main-wp p {
    font-family: var(--font-body);
    color: var(--text);
    font-size: 14px;
    margin: 0 0 14px;
    line-height: 1.8;
    opacity: 0.6;
    letter-spacing: 0.03em;
    font-weight: 300;
}

.article-solo-main-wp a {
    position: relative;
    font-weight: 400;
    color: var(--gold);
}

.article-solo-main-wp a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
    opacity: 0.3;
}

.article-solo-main-wp a:hover::after {
    width: 100%;
}

.article-thumbs-solo-main-wp {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px 0;
}

.article-thumb {
    flex: 0 0 120px;
    max-width: 100%;
}

.article-thumb .post-thumb {
    border-radius: var(--radius);
    border: var(--border-gold);
    overflow: hidden;
}

.article-thumb .post-thumb img {
    aspect-ratio: 2/3;
    object-fit: cover;
}

.card {
    border: var(--border-gold);
    border-radius: var(--radius2);
    background: var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 18px 0;
}

.card-pad {
    padding: 20px 24px;
}

.title {
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-solo-main-wp {
    display: inline-block;
    padding: 6px 18px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--text);
    font-size: 10px;
    font-weight: 300;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    letter-spacing: 3px;
    text-transform: uppercase;
    min-height: 34px;
}

.pill-solo-main-wp:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-1px);
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #2A2E57;
    padding: 40px 20px 20px;
    margin-top: 44px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rainbow);
    opacity: 0.3;
}

.footer-grid {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    max-width: var(--max);
    margin: 0 auto;
}

.footer-info {
    flex: 0 1 320px;
}

.footer-info h3 {
    font-family: var(--font-main);
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    font-weight: 300;
    letter-spacing: 4px;
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--rainbow);
    opacity: 0.3;
}

.footer-info p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 12px;
    opacity: 0.7;
    letter-spacing: 0.03em;
    font-weight: 300;
}

.footer-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 12px;
}

.footer-badge {
    display: flex;
    flex-direction: column;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    color: #ffffff;
    transition: all 0.3s ease;
    min-width: 90px;
}

.footer-badge:hover {
    color: #c0a0e0;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.badge-name {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 1px;
    text-transform: uppercase;
}

.badge-desc {
    font-family: var(--font-body);
    font-size: 9px;
    opacity: 0.5;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.footer-badge:hover .badge-desc {
    opacity: 0.7;
}

.footer-link-solo-main-wps {
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-start;
}

.footer-col {
    min-width: 100px;
}

.footer-col h3 {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 300;
    margin: 0 0 14px;
    color: #ffffff;
    letter-spacing: 3px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--rainbow);
    opacity: 0.2;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col li {
    margin: 0;
}

.footer-col a {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 0 3px 8px;
    border-bottom: none;
    border-left: 1px solid transparent;
    opacity: 0.7;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.footer-col a:hover {
    opacity: 1;
    color: #ffffff;
    border-left-color: #c0a0e0;
    padding-left: 14px;
}

.footer-stamp {
    margin-top: 20px;
    max-width: 120px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-stamp:hover {
    opacity: 0.8;
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-stamp img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    opacity: 0.6;
    font-family: var(--font-body);
    letter-spacing: 3px;
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

@media (max-width: 1100px) {
    .grid {
        column-count: 3;
    }
}

@media (max-width: 1024px) {
    .grid {
        column-count: 2;
    }
    
    .section .article-solo-main-wp {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 920px) {
    .footer-grid {
        flex-direction: column-reverse;
    }
    
    .footer-link-solo-main-wps {
        justify-content: flex-start;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 50px;
    }
    
    .hero-main-solo-main-wp {
        padding: 20px;
        max-width: 100%;
    }
    
    .hero-main-solo-main-wp p {
        max-width: 100%;
        font-size: 13px;
    }
    
    .hero-main-solo-main-wp h1 {
        font-size: 22px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 4px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .article-solo-main-wp {
        padding: 16px;
    }
    
    .article-solo-main-wp p {
        font-size: 13px;
    }
    
    .grid {
        column-count: 2;
        column-gap: 12px;
    }
    
    .post-content {
        padding: 12px 8px 6px 8px;
    }
    
    .post-actions-solo-main-wp .btn {
        padding: 4px 14px;
        font-size: 8px;
        min-width: 70px;
        letter-spacing: 2px;
        min-height: 28px;
    }
    
    .footer-link-solo-main-wps {
        gap: 24px;
    }
    
    .links {
        gap: 6px;
    }
    
    .pill-solo-main-wp {
        padding: 5px 14px;
        font-size: 9px;
        letter-spacing: 2px;
        min-height: 30px;
    }
    
    .topbar {
        height: 54px;
        padding: 0 16px;
    }
    
    .brand .logo-text {
        font-size: 14px;
        letter-spacing: 4px;
    }
}

@media (max-width: 640px) {
    .grid {
        column-count: 1;
    }
    
    .article-thumb {
        flex: 0 0 100%;
    }
    
    .title {
        font-size: 20px;
    }
    
    .card-pad {
        padding: 16px;
    }
    
    .footer-link-solo-main-wps {
        gap: 20px;
    }
    
    .footer-badge-list {
        gap: 6px;
    }
    
    .footer-badge {
        min-width: 80px;
        padding: 5px 12px;
    }
    
    .badge-name {
        font-size: 11px;
    }
    
    .badge-desc {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .brand .logo-text {
        font-size: 11px;
        letter-spacing: 3px;
    }
    
    .brand .logo-text .light {
        letter-spacing: 3px;
    }
    
    .hero-main-solo-main-wp {
        padding: 16px;
    }
    
    .hero-main-solo-main-wp h1 {
        font-size: 18px;
    }
    
    .hero-side {
        padding: 14px;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    .post-content {
        padding: 10px 6px 4px 6px;
    }
    
    .post-actions-solo-main-wp .btn {
        padding: 3px 10px;
        font-size: 7px;
        min-width: 60px;
        letter-spacing: 1.5px;
        min-height: 26px;
    }
    
    .links {
        gap: 4px;
    }
    
    .pill-solo-main-wp {
        padding: 4px 12px;
        font-size: 8px;
        letter-spacing: 1.5px;
        min-height: 28px;
    }
    
    .footer-link-solo-main-wps {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-badge-list {
        gap: 4px;
    }
    
    .footer-badge {
        min-width: 100%;
    }
}

.post .post-content .btn {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(106, 58, 154, 0.1);
    box-shadow: none;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 300;
    color: var(--text);
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.2);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    min-width: auto;
    font-family: var(--font-body);
    letter-spacing: 2px;
    min-height: 26px;
}

.post .post-content .btn::before {
    display: none;
}

.post .post-content .btn:hover {
    background: rgba(106, 58, 154, 0.05);
    border-color: var(--gold);
    transform: none;
    box-shadow: none;
    color: var(--gold);
}

.post .post-content .btn-primary {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(106, 58, 154, 0.1);
    box-shadow: none;
}

.post .post-content .btn-primary:hover {
    background: rgba(106, 58, 154, 0.05);
    border-color: var(--gold);
    box-shadow: none;
}

.post, .hero-main-solo-main-wp, .hero-side, .card, .btn, .pill-solo-main-wp, .footer-badge, .article-thumb .post-thumb {
    border-color: var(--line) !important;
}

.post:hover, .btn:hover, .pill-solo-main-wp:hover, .footer-badge:hover {
    border-color: var(--gold) !important;
}

.grid-cat {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin: 20px 0;
}

.post-cat {
    position: relative;
    background: var(--panel);
    border: var(--border-gold);
    border-radius: var(--radius2);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    aspect-ratio: 2/3;
}

.post-cat:hover {
    border-color: rgba(106, 58, 154, 0.2);
    box-shadow: var(--hover-lift);
    transform: translateY(-2px);
}

.post-thumb-cat {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.02);
    overflow: hidden;
    position: relative;
}

.post-thumb-cat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.post-cat:hover .post-thumb-cat img {
    filter: brightness(1.02);
    transform: scale(1.01);
}

.post-content-cat {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 12px 12px 12px;
    background: var(--card-overlay);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom-left-radius: var(--radius2);
    border-bottom-right-radius: var(--radius2);
    z-index: 2;
    pointer-events: auto;
}

.post-actions-solo-main-wp-cat {
    display: flex;
    justify-content: center;
}

.post-actions-solo-main-wp-cat .btn {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(106, 58, 154, 0.1);
    color: var(--text);
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.3);
    min-width: 80px;
    padding: 4px 16px;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 3px;
    border-radius: 0;
    font-family: var(--font-body);
    text-transform: uppercase;
    min-height: 30px;
}

.post-actions-solo-main-wp-cat .btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}

@media (max-width: 1200px) {
    .grid-cat {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .grid-cat {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .post-content-cat {
        padding: 12px 8px 8px 8px;
    }
    
    .post-actions-solo-main-wp-cat .btn {
        padding: 4px 12px;
        font-size: 8px;
        min-width: 70px;
        letter-spacing: 2px;
        min-height: 28px;
    }
}

@media (max-width: 480px) {
    .grid-cat {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .post-content-cat {
        padding: 10px 6px 6px 6px;
    }
    
    .post-actions-solo-main-wp-cat .btn {
        padding: 3px 10px;
        font-size: 7px;
        min-width: 60px;
        letter-spacing: 1.5px;
        min-height: 26px;
    }
}

/* ===== HEADER V2 ===== */
.header-v2 {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #2A2E57;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.wrap-header {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 16px;
}

.brand-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-icon {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-v2:hover .brand-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.brand-name {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 6px;
    color: #ffffff;
    text-transform: uppercase;
}

.brand-accent {
    color: #c0a0e0;
    font-weight: 200;
    letter-spacing: 4px;
    margin-left: 2px;
}

.nav-v2 {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-link-v2 {
    display: inline-block;
    padding: 4px 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    opacity: 0.7;
    position: relative;
}

.nav-link-v2::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-v2:hover {
    opacity: 1;
    color: #ffffff;
}

.nav-link-v2:hover::after {
    width: 25%;
}

.nav-link-v2.active {
    opacity: 1;
    font-weight: 400;
    color: #ffffff;
}

.nav-link-v2.active::after {
    width: 25%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.search-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: #ffffff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.search-btn:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-btn-v2 {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: #ffffff;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-btn-v2:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-btn-v2.active-v2 {
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-icon-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.menu-btn-v2.active-v2 .menu-icon-v2 {
    transform: rotate(90deg);
}

@media (max-width: 920px) {
    .menu-btn-v2 {
        display: flex;
    }

    .nav-v2 {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #2A2E57;
        backdrop-filter: none;
        padding: 70px 20px 30px;
        flex-direction: column;
        justify-content: flex-start;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.3s ease;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 5px 0 50px rgba(0, 0, 0, 0.3);
    }

    .nav-v2.show-v2 {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2px;
        width: 100%;
    }

    .nav-link-v2 {
        display: block;
        padding: 10px 14px;
        font-size: 12px;
        letter-spacing: 2px;
        text-align: left;
        border-left: 2px solid transparent;
        border-radius: 0;
        opacity: 1;
        color: rgba(255, 255, 255, 0.7);
        width: 100%;
    }

    .nav-link-v2::after {
        display: none;
    }

    .nav-link-v2:hover {
        border-left-color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
    }

    .nav-link-v2.active {
        border-left-color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }

    .brand-name {
        font-size: 14px;
        letter-spacing: 4px;
        color: #ffffff;
    }

    .brand-icon {
        font-size: 15px;
        color: #ffffff;
    }

    .header-inner {
        height: 56px;
    }

    .wrap-header {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 11px;
        letter-spacing: 3px;
        color: #ffffff;
    }

    .brand-accent {
        letter-spacing: 2px;
        color: #c0a0e0;
    }

    .brand-icon {
        font-size: 13px;
        color: #ffffff;
    }

    .search-btn {
        width: 30px;
        height: 30px;
        color: #ffffff;
    }

    .search-btn svg {
        width: 13px;
        height: 13px;
        stroke: #ffffff;
    }

    .menu-btn-v2 {
        width: 30px;
        height: 30px;
        color: #ffffff;
    }

    .menu-btn-v2 svg {
        width: 15px;
        height: 15px;
        stroke: #ffffff;
    }

    .header-inner {
        height: 50px;
        gap: 10px;
    }

    .wrap-header {
        padding: 0 12px;
    }

    .nav-v2 {
        width: 90%;
        padding: 60px 16px 20px;
    }
}

/* ===== FOOTER V2 ===== */
.footer-v2 {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #2A2E57;
    padding: 40px 20px 16px;
    margin-top: 44px;
    position: relative;
}

.footer-v2::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c0a0e0, #8a5ac0, #c0a0e0, transparent);
    opacity: 0.2;
}

.wrap-footer-v2 {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid-v2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 28px;
}

.footer-col-v2 {
    display: flex;
    flex-direction: column;
}

.footer-col-brand {
    gap: 10px;
}

.footer-brand-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 2px;
}

.footer-brand-icon {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.5;
}

.footer-brand-name {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    letter-spacing: 5px;
    color: #ffffff;
    text-transform: uppercase;
}

.footer-brand-accent {
    color: #c0a0e0;
    font-weight: 200;
    letter-spacing: 3px;
    margin-left: 2px;
}

.footer-desc-v2 {
    font-family: 'Inter', Helvetica, sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.7;
    margin: 0 0 2px;
    letter-spacing: 0.03em;
    max-width: 380px;
    font-weight: 300;
}

.footer-legal-v2 {
    font-family: 'Inter', Helvetica, sans-serif;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    line-height: 1.6;
    opacity: 0.5;
    margin: 2px 0 0;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.footer-badge-list-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 6px 0 2px;
}

.footer-badge-v2 {
    display: flex;
    flex-direction: column;
    padding: 4px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 80px;
}

.footer-badge-v2:hover {
    color: #c0a0e0;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.badge-name-v2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-desc-v2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 9px;
    opacity: 0.5;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.footer-badge-v2:hover .badge-desc-v2 {
    opacity: 0.7;
}

.footer-heading-v2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300;
    margin: 0 0 14px;
    color: #ffffff;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: #c0a0e0;
    opacity: 0.2;
}

.footer-links-v2 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.footer-links-v2 li {
    margin: 0;
}

.footer-link-v2 {
    font-family: 'Inter', Helvetica, sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0 2px 8px;
    border-left: 1px solid transparent;
    opacity: 0.7;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.footer-link-v2:hover {
    opacity: 1;
    color: #ffffff;
    border-left-color: #c0a0e0;
    padding-left: 14px;
}

.footer-bottom-v2 {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    opacity: 0.5;
    font-family: 'Inter', Helvetica, sans-serif;
    letter-spacing: 3px;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .footer-grid-v2 {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 28px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    .footer-desc-v2 {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-v2 {
        padding: 28px 16px 14px;
    }

    .footer-grid-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    .footer-heading-v2 {
        font-size: 13px;
        margin-bottom: 10px;
        padding-bottom: 6px;
        color: #ffffff;
    }

    .footer-link-v2 {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer-desc-v2 {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer-brand-name {
        font-size: 14px;
        letter-spacing: 4px;
        color: #ffffff;
    }

    .footer-brand-accent {
        color: #c0a0e0;
    }

    .footer-badge-v2 {
        min-width: 70px;
        padding: 4px 10px;
        color: #ffffff;
    }

    .badge-name-v2 {
        font-size: 10px;
    }

    .badge-desc-v2 {
        font-size: 8px;
    }

    .footer-bottom-v2 {
        font-size: 10px;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.3);
    }
}

@media (max-width: 480px) {
    .footer-v2 {
        padding: 20px 12px 10px;
        margin-top: 28px;
    }

    .footer-grid-v2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col-brand {
        grid-column: 1;
    }

    .footer-heading-v2 {
        font-size: 12px;
        margin-bottom: 8px;
        padding-bottom: 4px;
        color: #ffffff;
    }

    .footer-heading-v2::after {
        width: 16px;
    }

    .footer-link-v2 {
        font-size: 11px;
        padding: 2px 0 2px 6px;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer-link-v2:hover {
        padding-left: 10px;
        color: #ffffff;
    }

    .footer-desc-v2 {
        font-size: 11px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer-brand-name {
        font-size: 12px;
        letter-spacing: 3px;
        color: #ffffff;
    }

    .footer-brand-accent {
        letter-spacing: 2px;
        color: #c0a0e0;
    }

    .footer-brand-icon {
        font-size: 14px;
        color: #ffffff;
    }

    .footer-badge-list-v2 {
        gap: 4px;
    }

    .footer-badge-v2 {
        min-width: 100%;
        padding: 4px 10px;
        align-items: center;
        color: #ffffff;
    }

    .footer-bottom-v2 {
        font-size: 9px;
        letter-spacing: 1.5px;
        padding-top: 12px;
        color: rgba(255, 255, 255, 0.3);
    }

    .footer-legal-v2 {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.3);
    }
}

.section-categories {
    margin: 40px 0 28px;
}

.section-header-cat {
    margin-bottom: 24px;
    text-align: center;
}

.section-header-content {
    max-width: 680px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #6a3a9a;
    background: rgba(106, 58, 154, 0.05);
    padding: 2px 14px;
    border-radius: 0;
    border: 1px solid rgba(106, 58, 154, 0.08);
    margin-bottom: 6px;
}

.section-title-cat {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 200;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
}

.section-title-cat::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, #6a3a9a, transparent);
    margin: 8px auto 0;
    opacity: 0.15;
}

.section-sub-cat {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    opacity: 0.5;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.7;
    margin: 0;
}

.grid-cat-v2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin: 0;
}

.post-cat-v2 {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: #f5f5f5;
    border: 1px solid rgba(106, 58, 154, 0.06);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.post-cat-v2:hover {
    transform: translateY(-3px);
    border-color: rgba(106, 58, 154, 0.12);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
}

.post-thumb-cat-v2 {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.post-thumb-cat-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.post-cat-v2:hover .post-thumb-cat-v2 img {
    transform: scale(1.03);
    filter: brightness(1.02);
}

.post-overlay-cat-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 14px 16px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 2;
    min-height: 50%;
}

.post-cat-v2:hover .post-overlay-cat-v2 {
    padding-bottom: 20px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.05) 100%);
}

.post-cat-name {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.2);
}

.post-cat-v2:hover .post-cat-name {
    color: #6a3a9a;
    letter-spacing: 3px;
}

.post-cat-v2::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(106, 58, 154, 0.02);
    border-radius: 0px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.post-cat-v2:hover::after {
    border-color: rgba(106, 58, 154, 0.06);
}

@media (max-width: 1200px) {
    .grid-cat-v2 {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .grid-cat-v2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .section-categories {
        margin: 28px 0 20px;
    }

    .section-title-cat {
        font-size: 22px;
    }

    .post-cat-name {
        font-size: 12px;
    }

    .post-overlay-cat-v2 {
        padding: 16px 10px 12px;
        min-height: 45%;
    }
}

@media (max-width: 600px) {
    .grid-cat-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .section-header-cat {
        margin-bottom: 14px;
    }

    .section-title-cat {
        font-size: 18px;
    }

    .section-sub-cat {
        font-size: 12px;
    }

    .section-badge {
        font-size: 8px;
        letter-spacing: 3px;
        padding: 2px 10px;
    }

    .post-cat-name {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .post-overlay-cat-v2 {
        padding: 12px 8px 10px;
        min-height: 40%;
    }

    .post-cat-v2:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 400px) {
    .grid-cat-v2 {
        gap: 6px;
    }

    .post-cat-name {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .post-overlay-cat-v2 {
        padding: 8px 4px 6px;
        min-height: 35%;
    }
}

.article-solo-wp2-v2 {
    margin-bottom: 28px;
    background: var(--panel);
    border: 1px solid rgba(106, 58, 154, 0.06);
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.article-solo-wp2-v2:hover {
    border-color: rgba(106, 58, 154, 0.10);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.article-solo-wp2-inner {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.article-solo-wp2-image {
    flex: 0 0 260px;
    min-height: 360px;
    overflow: hidden;
    position: relative;
}

.article-solo-wp2-image .post-thumb-solo-wp2 {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.article-solo-wp2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.article-solo-wp2-v2:hover .article-solo-wp2-image img {
    transform: scale(1.02);
}

.article-solo-wp2-content {
    flex: 1;
    padding: 24px 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-solo-wp2-content .section-header-solo-wp2 {
    margin-bottom: 12px;
}

.article-solo-wp2-content .section-header-solo-wp2 h2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #1a1a1a;
    margin: 0 0 2px;
    letter-spacing: -0.01em;
}

.article-solo-wp2-content .section-header-solo-wp2 h2 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-solo-wp2-content .section-header-solo-wp2 h2 a:hover {
    color: #6a3a9a;
}

.article-solo-wp2-content .section-header-solo-wp2 .sub-solo-wp2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 13px;
    color: #6a3a9a;
    opacity: 0.5;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin: 0;
}

.article-solo-wp2-content p {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: #1a1a1a;
    opacity: 0.5;
    margin: 0;
    letter-spacing: 0.02em;
    font-weight: 300;
}

.article-solo-wp2-content p a {
    color: #6a3a9a;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.article-solo-wp2-content p a:hover {
    opacity: 0.7;
    border-bottom-color: rgba(106, 58, 154, 0.15);
}

@media (max-width: 768px) {
    .article-solo-wp2-inner {
        flex-direction: column;
    }

    .article-solo-wp2-image {
        flex: 0 0 auto;
        height: 240px;
        min-height: auto;
        width: 100%;
    }

    .article-solo-wp2-content {
        padding: 18px;
    }

    .article-solo-wp2-content .section-header-solo-wp2 h2 {
        font-size: 18px;
    }

    .article-solo-wp2-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .article-solo-wp2-image {
        height: 180px;
    }

    .article-solo-wp2-content {
        padding: 14px;
    }

    .article-solo-wp2-content .section-header-solo-wp2 h2 {
        font-size: 16px;
    }

    .article-solo-wp2-content p {
        font-size: 11px;
        line-height: 1.6;
    }

    .article-solo-wp2-content .section-header-solo-wp2 .sub-solo-wp2 {
        font-size: 11px;
    }

    .article-solo-wp2-v2 {
        margin-bottom: 16px;
        border-radius: 0px;
    }
}





/* ===== SOLO POSTS SECTION ===== */
.solo-posts-section {
    padding: 40px 0 20px;
    background: #ffffff;
}

.solo-posts-section .section-header {
    margin-bottom: 28px;
}

.solo-posts-section .section-header h2 {
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size: 26px;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    margin: 0;
}

.solo-posts-section .section-header .sub {
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    opacity: 0.5;
    margin: 4px 0 0;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.solo-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
}

.solo-post-card {
    background: #f5f5f5;
    border: 1px solid rgba(42, 46, 87, 0.08);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.solo-post-card:hover {
    border-color: rgba(42, 46, 87, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.solo-post-thumb {
    display: block;
    overflow: hidden;
    background: #e8e8e8;
    aspect-ratio: 16/9;
}

.solo-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.solo-post-card:hover .solo-post-thumb img {
    transform: scale(1.02);
    filter: brightness(1.02);
}

.solo-post-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solo-post-cat {
    display: inline-block;
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2A2E57;
    background: rgba(42, 46, 87, 0.06);
    padding: 2px 12px;
    border: 1px solid rgba(42, 46, 87, 0.06);
    border-radius: 0;
    margin-bottom: 8px;
    align-self: flex-start;
}

.solo-post-body h3 {
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 8px;
}

.solo-post-body h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solo-post-body h3 a:hover {
    color: #2A2E57;
}

.solo-post-body p {
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #1a1a1a;
    opacity: 0.5;
    margin: 0 0 12px;
    flex: 1;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.solo-post-link {
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2A2E57;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    align-self: flex-start;
}

.solo-post-link:hover {
    color: #1a1e3f;
    border-bottom-color: #2A2E57;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .solo-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .solo-posts-section {
        padding: 28px 0 14px;
    }

    .solo-posts-section .section-header h2 {
        font-size: 22px;
    }

    .solo-posts-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .solo-post-body {
        padding: 14px 16px 16px;
    }

    .solo-post-body h3 {
        font-size: 15px;
    }

    .solo-post-body p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .solo-posts-section {
        padding: 20px 0 10px;
    }

    .solo-posts-section .section-header h2 {
        font-size: 18px;
    }

    .solo-posts-grid {
        gap: 12px;
    }

    .solo-post-body {
        padding: 12px 14px 14px;
    }

    .solo-post-body h3 {
        font-size: 14px;
    }

    .solo-post-body p {
        font-size: 11px;
        opacity: 0.6;
    }

    .solo-post-cat {
        font-size: 8px;
        letter-spacing: 1.5px;
        padding: 2px 10px;
    }

    .solo-post-link {
        font-size: 10px;
    }
}