/*
   ╔══════════════════════════════════════════════════════════════════════════════╗
   ║                                                                              ║
   ║                    CREATIVEUP - BLOG STYLES                                  ║
   ║                    Modern & Professional Design                              ║
   ║                                                                              ║
   ╠══════════════════════════════════════════════════════════════════════════════╣
   ║  Colors:                                                                     ║
   ║  - Primary: #ff006e (purple)                                                 ║
   ║  - Secondary: #8338ec (pink/magenta)                                         ║
   ║  - Accent: #00b4d8 (cyan)                                                    ║
   ║  - Gradient: linear-gradient(135deg, #ff006e 0%, #8338ec 100%)              ║
   ╚══════════════════════════════════════════════════════════════════════════════╝
*/

/* ═══════════════════════════════════════════════════════════════════════════════
   CSS VARIABLES - Blog Module
   ═══════════════════════════════════════════════════════════════════════════════ */
:root {
    /* Blog Colors */
    --blog-primary: #ff006e;
    --blog-primary-dark: #4a12ba;
    --blog-secondary: #8338ec;
    --blog-accent: #00b4d8;
    --blog-gradient: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    --blog-gradient-text: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #00b4d8 100%);
    
    /* Blog Surfaces */
    --blog-bg: #fafafa;
    --blog-surface: #ffffff;
    --blog-surface-hover: #f9fafb;
    --blog-border: #e5e7eb;
    --blog-border-light: #f3f4f6;
    
    /* Blog Text */
    --blog-text: #1a1a2e;
    --blog-text-secondary: #4b5563;
    --blog-text-muted: #9ca3af;
    
    /* Category Colors */
    --cat-branding: #8b5cf6;
    --cat-diseno: #3b82f6;
    --cat-seo: #10b981;
    --cat-redes: #f59e0b;
    
    /* Shadows */
    --blog-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --blog-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --blog-shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --blog-shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --blog-shadow-glow: 0 4px 20px rgba(255, 0, 110, 0.25);
    
    /* Transitions */
    --blog-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --blog-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --blog-transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --blog-radius: 12px;
    --blog-radius-lg: 20px;
    --blog-radius-xl: 28px;
    --blog-radius-full: 9999px;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG INDEX - HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.bidx-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #f8f7ff 0%, var(--blog-bg) 100%);
    overflow: hidden;
}

.bidx-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255, 0, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.bidx-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(131, 56, 236, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bidx-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.bidx-hero-content {
    position: relative;
}

.bidx-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.08), rgba(131, 56, 236, 0.05));
    border: 1px solid rgba(255, 0, 110, 0.15);
    border-radius: var(--blog-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blog-primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.bidx-hero-badge i {
    font-size: 0.875rem;
}

.bidx-hero-badge::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blog-gradient);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.bidx-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--blog-text);
    margin: 0 0 1.5rem;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.bidx-hero-title .text-gradient {
    background: var(--blog-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmerText 6s linear infinite;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.bidx-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--blog-text-secondary);
    margin: 0 0 2rem;
    max-width: 500px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Hero Stats */
.bidx-hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.bidx-hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bidx-hero-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blog-surface);
    border: 1px solid var(--blog-border);
    border-radius: var(--blog-radius);
    font-size: 1.125rem;
    color: var(--blog-primary);
    box-shadow: var(--blog-shadow);
    transition: var(--blog-transition);
}

.bidx-hero-stat:hover .bidx-hero-stat-icon {
    background: var(--blog-gradient);
    border-color: transparent;
    color: white;
    transform: scale(1.1);
    box-shadow: var(--blog-shadow-glow);
}

.bidx-hero-stat-info strong {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--blog-text);
    line-height: 1.2;
}

.bidx-hero-stat-info span {
    font-size: 0.8125rem;
    color: var(--blog-text-muted);
}

/* Hero Visual */
.bidx-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.bidx-hero-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform var(--blog-transition);
}

.bidx-hero-visual:hover .bidx-hero-visual-grid {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.bidx-hero-visual-card {
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--blog-surface);
    border: 1px solid var(--blog-border);
    border-radius: var(--blog-radius);
    box-shadow: var(--blog-shadow);
    transition: var(--blog-transition);
}

.bidx-hero-visual-card:nth-child(odd) {
    transform: translateY(20px);
}

.bidx-hero-visual-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--blog-shadow-md);
    border-color: rgba(255, 0, 110, 0.2);
}

.bidx-hero-visual-card i {
    font-size: 1.75rem;
    background: var(--blog-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bidx-hero-visual-card span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--blog-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}


/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG INDEX - CATEGORY FILTERS
   ═══════════════════════════════════════════════════════════════════════════════ */
.bidx-filters {
    padding: 3rem 0;
    background: var(--blog-bg);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--blog-border);
    backdrop-filter: blur(10px);
}

.bidx-filters-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bidx-filters-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.bidx-filters-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bidx-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--blog-surface);
    border: 1px solid var(--blog-border);
    border-radius: var(--blog-radius-full);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--blog-text-secondary);
    cursor: pointer;
    transition: var(--blog-transition);
}

.bidx-filter-btn:hover {
    border-color: var(--blog-primary);
    color: var(--blog-primary);
    background: rgba(255, 0, 110, 0.05);
}

.bidx-filter-btn.active {
    background: var(--blog-gradient);
    border-color: transparent;
    color: white;
    box-shadow: var(--blog-shadow-glow);
}

.bidx-filter-btn i {
    font-size: 0.9375rem;
}

/* Category specific colors */
.bidx-filter-btn[data-category="branding"]:hover,
.bidx-filter-btn[data-category="branding"].active {
    --cat-color: var(--cat-branding);
}

.bidx-filter-btn[data-category="diseno"]:hover,
.bidx-filter-btn[data-category="diseno"].active {
    --cat-color: var(--cat-diseno);
}

.bidx-filter-btn[data-category="seo"]:hover,
.bidx-filter-btn[data-category="seo"].active {
    --cat-color: var(--cat-seo);
}

.bidx-filter-btn[data-category="redes"]:hover,
.bidx-filter-btn[data-category="redes"].active {
    --cat-color: var(--cat-redes);
}

/* Search Box */
.bidx-search {
    position: relative;
}

.bidx-search-input {
    width: 280px;
    padding: 12px 20px 12px 48px;
    background: var(--blog-surface);
    border: 1px solid var(--blog-border);
    border-radius: var(--blog-radius-full);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--blog-text);
    transition: var(--blog-transition);
}

.bidx-search-input:focus {
    outline: none;
    border-color: var(--blog-primary);
    box-shadow: 0 0 0 4px rgba(255, 0, 110, 0.1);
}

.bidx-search-input::placeholder {
    color: var(--blog-text-muted);
}

.bidx-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--blog-text-muted);
    pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG INDEX - FEATURED POST
   ═══════════════════════════════════════════════════════════════════════════════ */
.bidx-featured {
    padding: 4rem 0;
    background: var(--blog-bg);
}

.bidx-featured-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bidx-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.bidx-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blog-text);
    margin: 0;
}

.bidx-section-title i {
    color: var(--blog-primary);
}

.bidx-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--blog-surface);
    border-radius: var(--blog-radius-xl);
    overflow: hidden;
    box-shadow: var(--blog-shadow-md);
    transition: var(--blog-transition);
}

.bidx-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--blog-shadow-lg);
}

.bidx-featured-image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.bidx-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--blog-transition-slow);
}

.bidx-featured-card:hover .bidx-featured-image img {
    transform: scale(1.05);
}

.bidx-featured-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(131, 56, 236, 0.08) 100%);
}

.bidx-featured-image-placeholder i {
    font-size: 5rem;
    color: rgba(255, 0, 110, 0.15);
}

.bidx-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--blog-gradient);
    border-radius: var(--blog-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--blog-shadow-glow);
}

.bidx-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.bidx-featured-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.25rem;
}

.bidx-post-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 0, 110, 0.08);
    border-radius: var(--blog-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blog-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.bidx-post-category.cat-branding { background: rgba(139, 92, 246, 0.1); color: var(--cat-branding); }
.bidx-post-category.cat-diseno { background: rgba(59, 130, 246, 0.1); color: var(--cat-diseno); }
.bidx-post-category.cat-seo { background: rgba(16, 185, 129, 0.1); color: var(--cat-seo); }
.bidx-post-category.cat-redes { background: rgba(245, 158, 11, 0.1); color: var(--cat-redes); }

.bidx-post-date,
.bidx-post-read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--blog-text-muted);
}

.bidx-featured-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--blog-text);
    margin: 0 0 1rem;
    transition: color var(--blog-transition);
}

.bidx-featured-card:hover .bidx-featured-title {
    color: var(--blog-primary);
}

.bidx-featured-excerpt {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--blog-text-secondary);
    margin: 0 0 2rem;
}

.bidx-featured-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1.5rem;
    border-top: 1px solid var(--blog-border-light);
}

.bidx-author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blog-gradient);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.bidx-author-info strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--blog-text);
}

.bidx-author-info span {
    font-size: 0.8125rem;
    color: var(--blog-text-muted);
}

.bidx-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--blog-primary);
    text-decoration: none;
    transition: var(--blog-transition);
}

.bidx-featured-link:hover {
    gap: 12px;
    color: var(--blog-secondary);
}

.bidx-featured-link i {
    transition: transform var(--blog-transition);
}

.bidx-featured-link:hover i {
    transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG INDEX - POSTS GRID
   ═══════════════════════════════════════════════════════════════════════════════ */
.bidx-posts {
    padding: 4rem 0 6rem;
    background: var(--blog-bg);
}

.bidx-posts-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Post Card */
.bidx-post-card {
    background: var(--blog-surface);
    border-radius: var(--blog-radius-lg);
    overflow: hidden;
    box-shadow: var(--blog-shadow);
    transition: var(--blog-transition);
    display: flex;
    flex-direction: column;
}

.bidx-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--blog-shadow-lg);
}

.bidx-post-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.bidx-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--blog-transition-slow);
}

.bidx-post-card:hover .bidx-post-image img {
    transform: scale(1.08);
}

.bidx-post-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.08) 0%, rgba(131, 56, 236, 0.05) 100%);
}

.bidx-post-image-placeholder i {
    font-size: 3.5rem;
    color: rgba(255, 0, 110, 0.12);
}

.bidx-post-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: var(--blog-transition);
}

.bidx-post-card:hover .bidx-post-image-overlay {
    opacity: 1;
}

.bidx-post-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--blog-radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    z-index: 2;
}

.bidx-post-category-badge.cat-branding { color: var(--cat-branding); }
.bidx-post-category-badge.cat-diseno { color: var(--cat-diseno); }
.bidx-post-category-badge.cat-seo { color: var(--cat-seo); }
.bidx-post-category-badge.cat-redes { color: var(--cat-redes); }

.bidx-post-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bidx-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.875rem;
    font-size: 0.8125rem;
    color: var(--blog-text-muted);
}

.bidx-post-meta i {
    font-size: 0.75rem;
}

.bidx-post-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--blog-text);
    margin: 0 0 0.75rem;
    transition: color var(--blog-transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bidx-post-card:hover .bidx-post-title {
    color: var(--blog-primary);
}

.bidx-post-excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--blog-text-secondary);
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bidx-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--blog-border-light);
}

.bidx-post-author-small {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bidx-post-author-avatar {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blog-gradient);
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.bidx-post-author-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blog-text);
}

.bidx-post-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blog-primary);
    text-decoration: none;
    transition: var(--blog-transition);
}

.bidx-post-link:hover {
    gap: 10px;
    color: var(--blog-secondary);
}


/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG INDEX - PAGINATION
   ═══════════════════════════════════════════════════════════════════════════════ */
.bidx-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 4rem;
}

.bidx-pagination a,
.bidx-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--blog-surface);
    border: 1px solid var(--blog-border);
    border-radius: var(--blog-radius);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--blog-text-secondary);
    text-decoration: none;
    transition: var(--blog-transition);
}

.bidx-pagination a:hover {
    border-color: var(--blog-primary);
    color: var(--blog-primary);
    background: rgba(255, 0, 110, 0.05);
}

.bidx-pagination span[aria-current="page"],
.bidx-pagination .active {
    background: var(--blog-gradient);
    border-color: transparent;
    color: white;
    box-shadow: var(--blog-shadow-glow);
}

.bidx-pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG INDEX - NEWSLETTER CTA
   ═══════════════════════════════════════════════════════════════════════════════ */
.bidx-newsletter {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
}

.bidx-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255, 0, 110, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.bidx-newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(131, 56, 236, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.bidx-newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bidx-newsletter-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    background: var(--blog-gradient);
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.4);
}

.bidx-newsletter-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin: 0 0 1rem;
}

.bidx-newsletter-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 2.5rem;
    line-height: 1.7;
}

.bidx-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.bidx-newsletter-input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--blog-radius-full);
    font-family: inherit;
    font-size: 1rem;
    color: white;
    transition: var(--blog-transition);
}

.bidx-newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.bidx-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.bidx-newsletter-btn {
    padding: 16px 32px;
    background: var(--blog-gradient);
    border: none;
    border-radius: var(--blog-radius-full);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: var(--blog-transition);
    white-space: nowrap;
}

.bidx-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.5);
}

.bidx-newsletter-privacy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.bidx-newsletter-privacy i {
    margin-right: 6px;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG INDEX - EMPTY STATE
   ═══════════════════════════════════════════════════════════════════════════════ */
.bidx-empty {
    padding: 6rem 0;
    text-align: center;
}

.bidx-empty-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bidx-empty-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.05));
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--blog-primary);
}

.bidx-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blog-text);
    margin: 0 0 0.75rem;
}

.bidx-empty-text {
    font-size: 1rem;
    color: var(--blog-text-secondary);
    line-height: 1.6;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG SHOW - POST DETAIL
   ═══════════════════════════════════════════════════════════════════════════════ */
.bshow-article {
    padding-top: 100px;
    padding-bottom: 80px;
    background: var(--blog-bg);
}

.bshow-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Back Link */
.bshow-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--blog-text-secondary);
    text-decoration: none;
    transition: var(--blog-transition);
}

.bshow-back:hover {
    color: var(--blog-primary);
    gap: 12px;
}

.bshow-back i {
    transition: transform var(--blog-transition);
}

.bshow-back:hover i {
    transform: translateX(-4px);
}

/* Header */
.bshow-header {
    margin-bottom: 3rem;
}

.bshow-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.bshow-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 0, 110, 0.08);
    border-radius: var(--blog-radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--blog-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.bshow-category.cat-branding { background: rgba(139, 92, 246, 0.1); color: var(--cat-branding); }
.bshow-category.cat-diseno { background: rgba(59, 130, 246, 0.1); color: var(--cat-diseno); }
.bshow-category.cat-seo { background: rgba(16, 185, 129, 0.1); color: var(--cat-seo); }
.bshow-category.cat-redes { background: rgba(245, 158, 11, 0.1); color: var(--cat-redes); }

.bshow-date,
.bshow-read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--blog-text-muted);
}

.bshow-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--blog-text);
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

/* Author Box */
.bshow-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.25rem;
    background: var(--blog-surface);
    border-radius: var(--blog-radius);
    box-shadow: var(--blog-shadow-sm);
}

.bshow-author-avatar {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blog-gradient);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.bshow-author-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blog-text);
}

.bshow-author-info span {
    font-size: 0.875rem;
    color: var(--blog-text-muted);
}

/* Featured Image */
.bshow-image {
    margin-bottom: 3rem;
    border-radius: var(--blog-radius-xl);
    overflow: hidden;
    box-shadow: var(--blog-shadow-lg);
}

.bshow-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.bshow-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--blog-text-secondary);
}

.bshow-content h2,
.bshow-content h3,
.bshow-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--blog-text);
    line-height: 1.3;
    position: relative;
    transition: color 0.3s ease;
}

.bshow-content h2 {
    font-size: 1.875rem;
    margin: 3.5rem 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bshow-content h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--post-color, var(--blog-primary));
    border-radius: var(--blog-radius-full);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bshow-content h2:hover::after {
    width: 120px;
}

.bshow-content h3 {
    font-size: 1.5rem;
    margin: 2.75rem 0 1rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--post-color, var(--blog-primary));
}

.bshow-content h4 {
    font-size: 1.25rem;
    margin: 2.25rem 0 0.875rem;
}

.bshow-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--blog-text-secondary);
    margin: 0 0 1.75rem;
}

.bshow-content a {
    color: var(--post-color, var(--blog-primary));
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.2s ease;
}

.bshow-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--post-color, var(--blog-primary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.bshow-content a:hover {
    color: var(--blog-secondary);
}

.bshow-content a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background-color: var(--blog-secondary);
}

.bshow-content ul,
.bshow-content ol {
    margin: 1.5rem 0 2rem;
    padding-left: 1.75rem;
}

.bshow-content li {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--blog-text-secondary);
    margin-bottom: 0.75rem;
}

.bshow-content ul li::marker {
    color: var(--post-color, var(--blog-primary));
    font-size: 1.15em;
}

.bshow-content ol li::marker {
    color: var(--post-color, var(--blog-primary));
    font-weight: 700;
}

.bshow-content blockquote {
    position: relative;
    margin: 3rem 0;
    padding: 2.25rem 2.5rem 2.25rem 3.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.02) 0%, rgba(131, 56, 236, 0.01) 100%);
    border-left: 5px solid var(--post-color, var(--blog-primary));
    border-radius: 4px var(--blog-radius) var(--blog-radius) 4px;
    font-style: italic;
    color: var(--blog-text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.bshow-content blockquote::before {
    content: "“";
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 5rem;
    font-family: 'Georgia', serif;
    color: var(--post-color, var(--blog-primary));
    opacity: 0.15;
    line-height: 1;
}

.bshow-content blockquote p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--blog-text);
    margin-bottom: 0;
}

.bshow-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--blog-radius-lg, 16px);
    margin: 2.5rem auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.bshow-content img:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.bshow-content video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--blog-radius-lg, 16px);
    margin: 2.5rem auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #000;
    outline: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bshow-content video:hover {
    transform: translateY(-4px);
}

.bshow-content iframe {
    display: block;
    width: 100% !important;
    aspect-ratio: 16 / 9;
    height: auto !important;
    border: none;
    border-radius: var(--blog-radius-lg, 16px);
    margin: 2.5rem auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #000;
}

.bshow-content pre {
    background: #0f172a;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: var(--blog-radius);
    overflow-x: auto;
    margin: 2rem 0;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.bshow-content code {
    background: rgba(255, 0, 110, 0.06);
    color: var(--blog-primary);
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'Courier New', Courier, monospace;
}

.bshow-content pre code {
    background: none;
    color: inherit;
    padding: 0;
    font-size: inherit;
}

.bshow-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
}

.bshow-content th,
.bshow-content td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
}

.bshow-content th {
    background-color: rgba(0, 0, 0, 0.02);
    color: var(--blog-text);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bshow-content tr:last-child td {
    border-bottom: none;
}

.bshow-content tr:hover td {
    background-color: rgba(0,0,0,0.01);
}

/* Share & Tags */
.bshow-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--blog-border);
}

.bshow-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.bshow-share-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--blog-text);
}

.bshow-share-btns {
    display: flex;
    gap: 10px;
}

.bshow-share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blog-surface);
    border: 1px solid var(--blog-border);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--blog-text-secondary);
    text-decoration: none;
    transition: var(--blog-transition);
}

.bshow-share-btn:hover {
    background: var(--blog-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--blog-shadow-glow);
}

/* Related Posts */
.bshow-related {
    padding: 5rem 0;
    background: var(--blog-surface);
}

.bshow-related-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bshow-related-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--blog-text);
    margin: 0 0 2rem;
    text-align: center;
}

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


/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .bidx-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .bidx-hero-subtitle {
        max-width: none;
    }
    
    .bidx-hero-stats {
        justify-content: center;
    }
    
    .bidx-hero-visual {
        order: -1;
    }
    
    .bidx-hero-visual-grid {
        transform: none;
    }
    
    .bidx-featured-card {
        grid-template-columns: 1fr;
    }
    
    .bidx-featured-image {
        min-height: 300px;
    }
    
    .bidx-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bshow-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bidx-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .bidx-hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .bidx-hero-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .bidx-hero-visual-card {
        width: 90px;
        height: 90px;
    }
    
    .bidx-filters-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bidx-filters-list {
        justify-content: center;
    }
    
    .bidx-search-input {
        width: 100%;
    }
    
    .bidx-grid {
        grid-template-columns: 1fr;
    }
    
    .bidx-featured-content {
        padding: 2rem;
    }
    
    .bidx-featured-title {
        font-size: 1.5rem;
    }
    
    .bidx-newsletter-form {
        flex-direction: column;
    }
    
    .bidx-newsletter-btn {
        width: 100%;
    }
    
    .bshow-related-grid {
        grid-template-columns: 1fr;
    }
    
    .bshow-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .bidx-hero-title {
        font-size: 2rem;
    }
    
    .bidx-filter-btn {
        padding: 8px 14px;
        font-size: 0.8125rem;
    }
    
    .bidx-post-title {
        font-size: 1.125rem;
    }
    
    .bidx-featured-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .bshow-title {
        font-size: 1.75rem;
    }
    
    .bshow-content {
        font-size: 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG PREMIUM LISTING - .bidx-posts-premium
   ═══════════════════════════════════════════════════════════════════════════════ */
.bidx-posts-premium {
    padding: 6rem 0;
    background: var(--blog-bg);
    position: relative;
}

.bidx-section-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.bidx-header-content {
    max-width: 600px;
}

.bidx-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: white;
    border: 1px solid var(--blog-border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blog-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    box-shadow: var(--blog-shadow-sm);
}

.bidx-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blog-gradient);
    border-radius: 50%;
}

.bidx-section-title-premium {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--blog-text);
    line-height: 1.2;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.bidx-section-title-premium .text-gradient {
    background: var(--blog-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bidx-section-subtitle {
    font-size: 1.1rem;
    color: var(--blog-text-secondary);
    margin: 0;
}

.bidx-header-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--blog-border);
    box-shadow: var(--blog-shadow-sm);
}

.bidx-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bidx-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blog-text);
    line-height: 1.1;
}

.bidx-stat-label {
    font-size: 0.75rem;
    color: var(--blog-text-muted);
    font-weight: 600;
}

.bidx-stat-divider {
    width: 1px;
    height: 30px;
    background: var(--blog-border-light);
}

/* Grilla premium */
.bidx-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* Tarjeta premium */
.bidx-card-premium {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.03),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bidx-card-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.bidx-card-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.bidx-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bidx-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.06), rgba(131, 56, 236, 0.04));
    font-size: 3rem;
    color: var(--blog-primary);
}

.bidx-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bidx-card-category {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 2;
    transition: all 0.3s ease;
}

/* Colores dinámicos de categorías */
.bidx-card-category.cat-branding { color: var(--cat-branding); }
.bidx-card-category.cat-diseno { color: var(--cat-diseno); }
.bidx-card-category.cat-seo { color: var(--cat-seo); }
.bidx-card-category.cat-redes { color: var(--cat-redes); }

.bidx-card-hover-icon {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blog-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: var(--blog-shadow-glow);
    transform: scale(0) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    z-index: 2;
}

/* Hover de tarjeta premium */
.bidx-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(131, 56, 236, 0.08),
        0 0 0 1px rgba(131, 56, 236, 0.15) inset;
    border-color: rgba(131, 56, 236, 0.1);
}

.bidx-card-premium:hover .bidx-card-image {
    transform: scale(1.08);
}

.bidx-card-premium:hover .bidx-card-overlay {
    opacity: 1;
}

.bidx-card-premium:hover .bidx-card-hover-icon {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

/* Brillo shine en hover */
.bidx-card-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

.bidx-card-premium:hover .bidx-card-image-wrapper::after {
    opacity: 1;
    animation: shine-blog 1.2s ease-in-out forwards;
}

/* Cuerpo de tarjeta */
.bidx-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bidx-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--blog-text-muted);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.bidx-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bidx-meta-item i {
    font-size: 0.75rem;
    color: var(--blog-primary);
}

.bidx-meta-separator {
    color: var(--blog-border);
}

.bidx-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blog-text);
    line-height: 1.35;
    margin: 0 0 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.bidx-card-premium:hover .bidx-card-title {
    color: var(--blog-primary);
}

.bidx-card-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--blog-text-secondary);
    margin: 0 0 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Footer tarjeta */
.bidx-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--blog-border-light);
    margin-top: auto;
    gap: 1rem;
}

.bidx-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.bidx-author-avatar-premium {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--blog-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bidx-author-avatar-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bidx-avatar-initial {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
}

.bidx-author-details {
    min-width: 0;
}

.bidx-author-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blog-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bidx-card-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blog-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.bidx-cta-arrow {
    transition: transform 0.3s ease;
}

.bidx-card-premium:hover .bidx-cta-arrow {
    transform: translateX(4px);
}

/* Paginación Premium */
.bidx-pagination-premium {
    margin-top: 4.5rem;
    display: flex;
    justify-content: center;
}

.bidx-pagination-premium nav {
    display: flex;
    gap: 8px;
}

.bidx-pagination-premium a,
.bidx-pagination-premium span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: white;
    border: 1px solid var(--blog-border);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blog-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--blog-shadow-sm);
}

.bidx-pagination-premium a:hover {
    border-color: var(--blog-primary);
    color: var(--blog-primary);
    background: rgba(255, 0, 110, 0.03);
    transform: translateY(-2px);
}

.bidx-pagination-premium .active span {
    background: var(--blog-gradient);
    border-color: transparent;
    color: white;
    box-shadow: var(--blog-shadow-glow);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG HERO BG ORBS & SHAPES
   ═══════════════════════════════════════════════════════════════════════════════ */
.bidx-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bidx-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.bidx-hero-shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: floatOrb 15s ease-in-out infinite;
}

.bidx-hero-shape--2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.12) 0%, transparent 70%);
    bottom: -300px;
    left: -150px;
    animation: floatOrb 20s ease-in-out infinite alternate;
}

.bidx-hero-shape--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation: floatOrb 25s ease-in-out infinite;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG SHOW PREMIUM DETAILED VIEW
   ═══════════════════════════════════════════════════════════════════════════════ */
.bshow-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--post-color, #ff006e), #8338ec);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease-out;
}

.bshow-hero {
    position: relative;
    background: #09090b;
    padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
    color: white;
    overflow: hidden;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bshow-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bshow-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}

.bshow-hero-shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, color-mix(in srgb, var(--post-color, #ff006e) 40%, transparent) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: floatOrb 18s ease-in-out infinite;
}

.bshow-hero-shape--2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.25) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    animation: floatOrb 22s ease-in-out infinite alternate;
}

.bshow-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.75;
}

.bshow-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px) brightness(0.65) contrast(1.05) scale(1.02);
}

.bshow-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.2) 0%, rgba(9, 9, 11, 0.6) 50%, #09090b 100%);
}

.bshow-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.bshow-hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.bshow-hero-info {
    display: flex;
    flex-direction: column;
}

.bshow-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bshow-img-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    aspect-ratio: 16 / 10;
    width: 100%;
    background: #18181b;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bshow-img-frame:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 60px -15px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 40px color-mix(in srgb, var(--post-color, #ff006e) 30%, transparent);
}

.bshow-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bshow-img-frame:hover img {
    transform: scale(1.06);
}

.bshow-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.2);
    font-size: 3rem;
}

.bshow-img-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--post-color, #ff006e);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.bshow-img-corner--tl {
    top: 16px;
    left: 16px;
    border-right: none;
    border-bottom: none;
}

.bshow-img-corner--br {
    bottom: 16px;
    right: 16px;
    border-left: none;
    border-top: none;
}

.bshow-img-frame:hover .bshow-img-corner {
    width: 28px;
    height: 28px;
}

.bshow-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    width: fit-content;
}

.bshow-back-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-4px);
}

.bshow-hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.bshow-hero-category {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--post-color, #ff006e) 20%, transparent);
    color: var(--post-color, #ff006e);
}

.bshow-hero-title {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: white;
    margin: 0 0 2rem;
}

.bshow-hero-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bshow-hero-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blog-gradient);
    color: white;
    font-weight: 700;
}

.bshow-hero-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bshow-hero-author-info {
    display: flex;
    flex-direction: column;
}

.bshow-hero-author-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.bshow-hero-author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.bshow-hero-author-position {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 4px;
}

/* Artículo */
.bshow-article {
    background: var(--blog-bg);
    padding: 5rem 0;
}

.bshow-article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3.5rem;
    align-items: start;
}

.bshow-article-content {
    background: white;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.bshow-content-wrapper {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--blog-text-secondary);
}

.bshow-content-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blog-text);
    margin: 3rem 0 1.25rem;
    letter-spacing: -0.015em;
    position: relative;
    padding-bottom: 8px;
}

.bshow-content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--post-color, #ff006e);
    border-radius: 2px;
}

.bshow-content-wrapper p {
    margin-bottom: 1.5rem;
}

.bshow-content-wrapper blockquote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.03), rgba(131, 56, 236, 0.02));
    border-left: 4px solid var(--post-color, #ff006e);
    border-radius: 0 20px 20px 0;
    font-style: italic;
    color: var(--blog-text);
    font-size: 1.25rem;
    line-height: 1.8;
    position: relative;
}

.bshow-content-wrapper blockquote::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 6rem;
    font-family: serif;
    color: var(--post-color, #ff006e);
    opacity: 0.12;
    line-height: 1;
}

/* Compartir */
.bshow-share-section {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--blog-border-light);
}

.bshow-share-header {
    margin-bottom: 1.5rem;
}

.bshow-share-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blog-text);
    margin: 0 0 0.25rem;
}

.bshow-share-subtitle {
    font-size: 0.9rem;
    color: var(--blog-text-muted);
    margin: 0;
}

.bshow-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bshow-share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--blog-border);
    background: white;
    color: var(--blog-text-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bshow-share-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--blog-shadow-sm);
    color: white;
}

.bshow-share-twitter:hover { background: #0f1419; border-color: #0f1419; }
.bshow-share-facebook:hover { background: #1877f2; border-color: #1877f2; }
.bshow-share-linkedin:hover { background: #0a66c2; border-color: #0a66c2; }
.bshow-share-whatsapp:hover { background: #25d366; border-color: #25d366; }
.bshow-share-copy:hover { background: var(--blog-primary); border-color: var(--blog-primary); }

/* Ficha del autor */
.bshow-author-card {
    margin-top: 4rem;
    padding: 2.25rem;
    background: #f8fafc;
    border: 1px solid var(--blog-border-light);
    border-radius: 24px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.bshow-author-card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--blog-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bshow-author-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bshow-avatar-initial-large {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.bshow-author-card-content {
    flex: 1;
}

.bshow-author-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--blog-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.bshow-author-card-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blog-text);
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bshow-author-card-position {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--blog-text-muted);
    padding: 2px 8px;
    background: #e2e8f0;
    border-radius: 100px;
}

.bshow-author-card-bio {
    font-size: 0.925rem;
    color: var(--blog-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Sidebar */
.bshow-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.bshow-sidebar-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.02),
        0 1px 0 rgba(255, 255, 255, 0.5) inset;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bshow-sidebar-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.bshow-sidebar-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--blog-text);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--blog-border-light);
    padding-bottom: 0.75rem;
}

.bshow-sidebar-title i {
    color: var(--post-color, var(--blog-primary));
}

.bshow-toc-placeholder {
    font-size: 0.9rem;
    color: var(--blog-text-muted);
    margin: 0;
}
.bshow-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bshow-toc-item {
    padding: 0;
}
.bshow-toc-item--h3 {
    padding-left: 16px;
}
.bshow-toc-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--blog-text-secondary);
    text-decoration: none;
    transition: all 0.25s ease;
    display: block;
    line-height: 1.4;
    border-left: 2px solid transparent;
    padding-left: 8px;
}
.bshow-toc-link:hover,
.bshow-toc-link.active {
    color: var(--post-color, #ff006e);
    border-left-color: var(--post-color, #ff006e);
    font-weight: 700;
    padding-left: 12px;
}

.bshow-subscribe-text {
    font-size: 0.875rem;
    color: var(--blog-text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}
.bshow-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bshow-subscribe-form input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--blog-border);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    color: var(--blog-text);
    transition: all 0.3s ease;
}
.bshow-subscribe-form input:focus {
    outline: none;
    border-color: var(--post-color, #ff006e);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--post-color, #ff006e) 15%, transparent);
}
.bshow-subscribe-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 14px;
    border: none;
    background: var(--btn-color, #ff006e);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.bshow-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--btn-color, #ff006e) 30%, transparent);
}
.bshow-subscribe-btn i {
    transition: transform 0.3s ease;
}
.bshow-subscribe-btn:hover i {
    transform: translateX(4px);
}

.bshow-share-sticky-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}
.bshow-share-sticky-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--blog-border);
    color: var(--blog-text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.bshow-share-sticky-btn:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: var(--blog-shadow-sm);
}

/* Relacionados */
.bshow-related {
    background: white;
    padding: 6rem 0;
    border-top: 1px solid var(--blog-border-light);
}

.bshow-related-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bshow-related-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.bshow-related-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--blog-text);
    margin: 0 0 0.5rem;
    letter-spacing: -0.015em;
}

.bshow-related-title .text-gradient {
    background: var(--blog-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bshow-related-subtitle {
    font-size: 1.05rem;
    color: var(--blog-text-secondary);
    margin: 0;
}

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

.bshow-related-card {
    background: #f8fafc;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bshow-related-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bshow-related-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.bshow-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bshow-related-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.bshow-related-category.cat-branding { color: var(--cat-branding); }
.bshow-related-category.cat-diseno { color: var(--cat-diseno); }
.bshow-related-category.cat-seo { color: var(--cat-seo); }
.bshow-related-category.cat-redes { color: var(--cat-redes); }

.bshow-related-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bshow-related-meta {
    font-size: 0.8rem;
    color: var(--blog-text-muted);
    margin-bottom: 0.5rem;
}

.bshow-related-title-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blog-text);
    line-height: 1.4;
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.bshow-related-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.bshow-related-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bshow-related-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--blog-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

.bshow-related-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bshow-related-author-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blog-text-secondary);
}

.bshow-related-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--blog-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blog-primary);
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.bshow-related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--blog-shadow);
    border-color: rgba(131, 56, 236, 0.1);
}

.bshow-related-card:hover img {
    transform: scale(1.05);
}

.bshow-related-card:hover .bshow-related-arrow {
    background: var(--blog-gradient);
    color: white;
    border-color: transparent;
    transform: translateX(2px);
}

@media (max-width: 1024px) {
    .bidx-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bshow-hero-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .bshow-hero-visual {
        order: -1;
    }
    
    .bshow-article-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .bshow-sidebar {
        position: static;
    }
    
    .bshow-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bidx-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .bidx-section-header-premium {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
        gap: 1.5rem;
    }
    
    .bidx-header-stats {
        width: 100%;
        justify-content: space-around;
    }
    
    .bshow-related-grid {
        grid-template-columns: 1fr;
    }
    
    .bshow-share-buttons {
        gap: 8px;
    }
    
    .bshow-share-button {
        width: 100%;
        justify-content: center;
    }
}

