/* ============================================
   COMPIAZ PULSE - Single Article Styles
   ============================================ */

/* Article Hero */
.pulse-article-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 3rem;
    background: #000;
    overflow: hidden;
}

.pulse-article-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #0a0a0a);
    z-index: 1;
}

.pulse-article-hero .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: blur(2px);
}

.pulse-article-hero .container {
    position: relative;
    z-index: 2;
}

.pulse-article-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.pulse-article-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pulse-article-breadcrumb a:hover {
    color: #f03a70;
}

.pulse-article-breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.pulse-article-breadcrumb .current {
    color: rgba(255, 255, 255, 0.7);
}

.pulse-article-category {
    display: inline-block !important;
    padding: 0.2rem 0.7rem !important;
    border-radius: 50px !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    background: rgba(240, 58, 112, 0.15) !important;
    color: #f03a70 !important;
    border: 1px solid rgba(240, 58, 112, 0.3) !important;
    margin: 0 !important;
    width: auto !important;
}

.pulse-article-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.5rem;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pulse-article-hero h1 .title-accent {
    background: linear-gradient(135deg, #f03a70, #ff6b9d) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #f03a70 !important;
}

.pulse-article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pulse-article-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pulse-article-author-info img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(240, 58, 112, 0.3);
}

.pulse-article-author-info .author-details {
    display: flex;
    flex-direction: column;
}

.pulse-article-author-info .author-name {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.pulse-article-author-info .author-role {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.pulse-article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.pulse-article-meta-item i {
    color: rgba(255, 255, 255, 0.4);
}

/* Article Content */
.pulse-article-content {
    background: #0a0a0a;
    padding: 4rem 0;
    position: relative;
}

.pulse-article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pulse-article-body p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.75rem;
}

.pulse-article-body h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.pulse-article-body h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pulse-article-body h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.pulse-article-body strong {
    color: white;
    font-weight: 600;
}

.pulse-article-body a {
    color: #f03a70;
    text-decoration: none;
    border-bottom: 1px solid rgba(240, 58, 112, 0.3);
    transition: all 0.3s ease;
}

.pulse-article-body a:hover {
    color: #ff6b9d;
    border-bottom-color: #ff6b9d;
}

.pulse-article-body ul,
.pulse-article-body ol {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
}

.pulse-article-body li {
    margin-bottom: 1rem;
}

/* Highlight Box (Analogien/Zitate) */
.pulse-highlight-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #f03a70;
    border-radius: 0 12px 12px 0;
    padding: 1.75rem 2rem;
    margin: 2rem 0;
}

.pulse-highlight-box p {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 0 !important;
}

/* Comparison Tables */
.pulse-comparison {
    margin: 2rem 0 2.5rem;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-comparison-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.pulse-comparison-header i {
    font-size: 1.3rem;
}

.pulse-comparison-header.wp-header {
    background: linear-gradient(135deg, rgba(33, 117, 155, 0.2), rgba(33, 117, 155, 0.05));
    border-bottom: 1px solid rgba(33, 117, 155, 0.2);
}

.pulse-comparison-header.wp-header i {
    color: #21759b;
}

.pulse-comparison-header.custom-header {
    background: linear-gradient(135deg, rgba(240, 58, 112, 0.2), rgba(240, 58, 112, 0.05));
    border-bottom: 1px solid rgba(240, 58, 112, 0.2);
}

.pulse-comparison-header.custom-header i {
    color: #f03a70;
}

.pulse-comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.pulse-comparison-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pulse-comparison-table td {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: top;
}

.pulse-comparison-table tr:last-child td {
    border-bottom: none;
}

.pulse-comparison-table .pro-icon {
    color: #10b981;
    margin-right: 0.5rem;
}

.pulse-comparison-table .con-icon {
    color: #ef4444;
    margin-right: 0.5rem;
}

/* Article CTA Box */
.pulse-article-cta {
    background: linear-gradient(135deg, rgba(240, 58, 112, 0.1), rgba(0, 166, 251, 0.1));
    border: 1px solid rgba(240, 58, 112, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.pulse-article-cta h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: 1rem;
}

.pulse-article-cta p {
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 500px;
    margin: 0 auto 2rem !important;
}

.pulse-article-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f03a70, #ff6b9d);
    color: #ffffff !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-text-fill-color: #ffffff !important;
}

.pulse-article-cta-btn span,
.pulse-article-cta-btn i {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.pulse-article-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 58, 112, 0.4);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Share & Tags */
.pulse-article-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-article-tags .tag-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.pulse-tag {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pulse-tag:hover {
    border-color: rgba(240, 58, 112, 0.4);
    color: #f03a70;
}

/* Back Link */
.pulse-back-section {
    background: #0a0a0a;
    padding: 0 0 4rem;
}

.pulse-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    max-width: 780px;
    margin: 0 auto;
}

.pulse-back-link:hover {
    color: #f03a70;
    gap: 1rem;
}

.pulse-back-link i {
    transition: transform 0.3s ease;
}

.pulse-back-link:hover i {
    transform: translateX(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .pulse-article-hero h1 {
        font-size: 2.3rem;
    }

}

@media (max-width: 768px) {
    .pulse-article-hero {
        padding-top: 110px;
    }

    .pulse-article-hero h1 {
        font-size: 1.8rem;
    }

    .pulse-article-meta {
        gap: 1rem;
    }

    .pulse-article-content {
        padding: 2.5rem 0;
    }

    .pulse-article-body p,
    .pulse-article-body ul,
    .pulse-article-body ol {
        font-size: 1rem;
    }

    .pulse-article-body h2 {
        font-size: 1.5rem;
    }

    .pulse-article-body h3 {
        font-size: 1.25rem;
    }

    .pulse-article-cta {
        padding: 2rem 1.5rem;
    }

    .pulse-highlight-box {
        padding: 1.25rem 1.5rem;
    }

    .pulse-comparison-table th,
    .pulse-comparison-table td {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .pulse-article-hero h1 {
        font-size: 1.5rem;
    }

    .pulse-article-breadcrumb {
        font-size: 0.8rem;
    }
}
