/* ===================================
   BLOG DETAIL PAGE STYLES
   =================================== */

/* Blog Category Badge */
.blog-category {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

/* Blog Title */
.blog-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 15px;
}

/* Blog Meta */
.blog-meta {
    color: #666;
    font-size: 14px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-meta i {
    margin-right: 6px;
    color: #ff6b35;
}

/* Featured Image */
.blog-feature-img {
    border-radius: 12px;
    overflow: hidden;
}

.blog-feature-img img {
    width: 100%;
    height: auto;
}

/* Blog Content */
.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

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

.blog-content h3,
.blog-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

/* CTA Box */
.blog-cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.blog-cta-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-cta-box p {
    margin-bottom: 0;
    opacity: 0.9;
}

.schedule-btn {
    background: #fff;
    color: #667eea;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Tags & Share Section */
.blog-tags-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.tags-share-box {
    gap: 20px;
}

/* Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-tags .tag {
    background: #f5f5f5;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tags .tag:hover {
    background: #ff6b35;
    color: #fff;
}

/* Share Buttons */
.blog-share {
    gap: 12px;
}

.share-text {
    font-weight: 600;
    color: #666;
    margin-right: 5px;
}

.share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-icon:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-3px);
}

/* ===================================
   SIDEBAR STYLES
   =================================== */

.sidebar-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.search-box input {
    padding-right: 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    height: 45px;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

/* Trending Items */
.trending-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.trending-item:last-child {
    margin-bottom: 0;
}

.trending-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.trending-item p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
    color: #1a1a1a;
}

.trending-item a {
    text-decoration: none;
    color: inherit;
}

.trending-item a:hover p {
    color: #ff6b35;
}

.trending-item span {
    font-size: 12px;
    color: #999;
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 12px;
    color: #fff;
}

.newsletter-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-box input {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 8px;
}

.newsletter-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-box input:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.newsletter-box .btn {
    background: #fff;
    color: #667eea;
    font-weight: 600;
    border: none;
}

.newsletter-box .btn:hover {
    background: #f5f5f5;
}

/* ===================================
   MORE FROM HUB SECTION
   =================================== */

.more-hub-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Hub Cards */
.hub-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin: 10px;
    transition: all 0.3s ease;
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hub-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hub-card-body {
    padding: 20px;
}

.hub-card-body h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.hub-card-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.hub-card-body .read-more {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.hub-card-body .read-more:hover {
    text-decoration: underline;
}

/* Owl Carousel Customization */
.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    color: #333 !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -20px;
}

.owl-carousel .owl-nav button:hover {
    background: #ff6b35 !important;
    color: #fff !important;
}

.owl-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.owl-carousel .owl-dot {
    width: 10px;
    height: 10px;
    background: #ddd !important;
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
}

.owl-carousel .owl-dot.active {
    background: #ff6b35 !important;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 991px) {
    .blog-title {
        font-size: 28px;
    }

    .blog-cta-box .text-md-right {
        text-align: left !important;
        margin-top: 15px;
    }

    .tags-share-box {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .blog-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: 0;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 0;
    }
}

