/* Blog Page Specific Styles */

/* Header */
.blog-header {
    padding: 160px 20px 60px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(66, 133, 244, 0.05) 0%, transparent 50%);
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.blog-category {
    background: rgba(66, 133, 244, 0.1);
    color: var(--brand-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
}

.blog-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(180deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.blog-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--bg-secondary);
}

.author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.author-role {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Content */
.blog-content {
    padding-bottom: 100px;
}

.blog-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.blog-content .lead-text {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.blog-content h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    color: var(--text-primary);
}

.blog-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--text-primary);
}

.blog-image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.blog-hero-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-screenshot:hover {
    transform: scale(1.02);
}

.hero-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-tertiary);
}

.big-icon {
    font-size: 48px;
    opacity: 0.5;
}

.image-caption {
    font-size: 14px !important;
    color: var(--text-tertiary) !important;
}

.highlight-box {
    background: rgba(66, 133, 244, 0.04);
    border: 1px solid rgba(66, 133, 244, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-box ul {
    margin: 0;
    padding-left: 20px;
}

.highlight-box li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.highlight-box li:last-child {
    margin-bottom: 0;
}

.cta-section {
    margin-top: 80px;
    padding: 60px;
    background: var(--bg-secondary);
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.cta-section h3 {
    margin-top: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-title {
        font-size: 36px;
    }

    .blog-header {
        padding-top: 120px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-section {
        padding: 40px 20px;
    }
}