/* Blog Detail Container */
.blog-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 40px 80px 40px !important;
}

.blog-header {
    margin-bottom: 40px;
    position: relative;
}

.back-to-blog-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-blog-btn:hover {
    color: #3675ff;
    transform: translateX(-4px);
}

.back-to-blog-btn svg {
    width: 18px;
    height: 18px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(54, 117, 255, 0.1);
    color: #3675ff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.blog-date {
    color: #64748b;
    font-size: 14px;
}

.blog-read-time {
    color: #64748b;
    font-size: 14px;
}

.blog-title {
    font-size: 48px;
    font-weight: 600;
    color: #171717;
    line-height: 1.2;
    margin-bottom: 20px;
}

.blog-featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    color: #1e293b;
    line-height: 1.8;
    font-size: 18px;
}

.blog-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #171717;
    margin-top: 48px;
    margin-bottom: 20px;
}

.blog-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #171717;
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.blog-content li {
    margin-bottom: 12px;
}

.blog-content strong {
    color: #171717;
    font-weight: 600;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #3675ff 0%, #2557d6 100%);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
    color: white;
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-box .cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #3675ff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-box .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Lake Tags */
.lake-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.lake-tag-pill {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lake-tag-pill:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-detail-container {
        padding: 80px 20px 60px 20px !important;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-content h2 {
        font-size: 28px;
    }

    .blog-content h3 {
        font-size: 22px;
    }

    .cta-box {
        padding: 32px 24px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .back-to-blog-btn {
        position: static;
        display: inline-flex;
        margin-bottom: 20px;
        font-size: 14px;
        padding: 0;
        align-items: center;
        gap: 6px;
    }
}