/* BLOG POST PAGE STYLES */

.blog-post-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #05070d 0%, #000 100%);
    padding: 150px 20px 100px;
    position: relative;
    overflow: hidden;
}

.blog-post-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(41, 160, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.blog-post-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.post-category-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-category-tag.entrepreneurship {
    color: #f6d60a;
    border-color: rgba(246, 214, 10, 0.3);
}

.post-category-tag.leadership {
    color: #29a0ff;
    border-color: rgba(41, 160, 255, 0.3);
}

.post-category-tag.events {
    color: #ff3b3b;
    border-color: rgba(255, 59, 59, 0.3);
}

.post-category-tag.opinions {
    color: #6bd400;
    border-color: rgba(107, 212, 0, 0.3);
}

.blog-post-hero h1 {
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #fff;
}

.post-meta-detailed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: #9ea3a7;
    font-size: 16px;
    flex-wrap: wrap;
}

.post-meta-detailed span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta-detailed i {
    background: var(--rainbow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ARTICLE CONTENT */
.article-section {
    padding: 80px 0;
    background: #000;
    position: relative;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #dadfe4;
}

.article-content p {
    margin-bottom: 30px;
}

.article-content h2,
.article-content h3 {
    color: #fff;
    margin: 60px 0 20px;
    font-weight: 700;
}

.article-content h2 {
    font-size: 32px;
}

.article-content h3 {
    font-size: 24px;
}

.article-content blockquote {
    margin: 50px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid #29a0ff;
    font-style: italic;
    font-size: 24px;
    line-height: 1.5;
    color: #fff;
    border-radius: 0 20px 20px 0;
}

.article-content img {
    width: 100%;
    border-radius: 24px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content ul,
.article-content ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 12px;
}

/* CTA SECTION */
.post-cta {
    padding: 100px 0;
    background: #050505;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--rainbow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-box p {
    font-size: 18px;
    color: #bfbfbf;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-post-hero {
        padding-top: 120px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .article-content blockquote {
        padding: 25px;
        font-size: 18px;
    }
}