
/* Main Content Container */
.blog-single-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    opacity: 0;
    animation: blog-single-fadeIn 0.8s ease-out forwards;
}

/* Blog Header */
.blog-single-header {
    text-align: center;
    padding: 2rem 0 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.blog-single-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-single-category {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-single-date, .blog-single-readtime {
    color: #64748b;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-single-date i, .blog-single-readtime i {
    color: #2563eb;
    font-size: 0.9rem;
}

.blog-single-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blog-single-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Image */
.blog-single-featured-image {
    width: 100%;
    margin: 2rem 0 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: blog-single-fadeInUp 1s ease-out 0.3s both;
}

.blog-single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-single-featured-image:hover img {
    transform: scale(1.02);
}

.blog-single-image-caption {
    padding: 1rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

/* Blog Content */
.blog-single-content {
    /*max-width: 900px;*/
    margin: 0 auto;
}

.blog-single-intro {
    margin-bottom: 3rem;
}

.blog-single-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
}

/* Sections */
.blog-single-section {
    margin-bottom: 4rem;
    /*opacity: 0;*/
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.blog-single-section.blog-single-animated {
    opacity: 1;
    transform: translateY(0);
}

.blog-single-section-title {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.blog-single-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.blog-single-section-intro {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Features Grid */
.blog-single-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.blog-single-feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #2563eb;
}

.blog-single-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-single-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.3rem;
}

.blog-single-feature h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.blog-single-feature p {
    color: #64748b;
    line-height: 1.6;
}

/* Benefits */
.blog-single-benefit {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.blog-single-benefit.blog-single-animated {
    opacity: 1;
    transform: translateY(0);
}

.blog-single-benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-single-benefit-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.blog-single-benefit h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0;
}

.blog-single-benefit p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-single-benefit p:last-child {
    margin-bottom: 0;
}

/* Highlight Section */
.blog-single-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(79, 70, 229, 0.05));
    padding: 3rem;
    border-radius: 16px;
    border-left: 4px solid #2563eb;
}

/* Reasons Grid */
.blog-single-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.blog-single-reason {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.blog-single-reason.blog-single-animated {
    opacity: 1;
    transform: translateY(0);
}

.blog-single-reason h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.blog-single-reason h4 i {
    color: #2563eb;
    font-size: 1.1rem;
}

.blog-single-reason p {
    color: #475569;
    line-height: 1.7;
    padding-left: 2rem;
}

/* Conclusion */
.blog-single-conclusion {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #22c55e;
}

.blog-single-final-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 8px;
    border: 1px solid #bae6fd;
}

.blog-single-final-note p {
    color: #0c4a6e;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Share Section */
.blog-single-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    margin: 3rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-single-share-label {
    font-weight: 600;
    color: #475569;
    font-size: 1.1rem;
}

.blog-single-share-icons {
    display: flex;
    gap: 1rem;
}

.blog-single-share-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.blog-single-share-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-single-share-icon:nth-child(1):hover { background: #1877f2; color: white; }
.blog-single-share-icon:nth-child(2):hover { background: #1da1f2; color: white; }
.blog-single-share-icon:nth-child(3):hover { background: #0a66c2; color: white; }
.blog-single-share-icon:nth-child(4):hover { background: #25d366; color: white; }
.blog-single-share-icon:nth-child(5):hover { background: #2563eb; color: white; }

/* Back Button */
.blog-single-back {
    text-align: center;
    margin-top: 3rem;
}

.blog-single-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.blog-single-back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    gap: 1.2rem;
}

/* Animations */
@keyframes blog-single-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes blog-single-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Tips Section Styling */
.blog-single-tips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.blog-single-tip {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.blog-single-tip:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.blog-single-tip i {
    color: #2563eb;
    font-size: 1.3rem;
    margin-top: 0.2rem;
    min-width: 1.5rem;
}

.blog-single-tip p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
/* Benefit Highlights Styling */
.blog-single-benefit-highlights {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.blog-single-benefit-highlights h4 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.blog-single-benefit-highlights h4 i {
    color: #2563eb;
    font-size: 1.2rem;
}

.blog-single-benefit-highlights ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.blog-single-benefit-highlights li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    color: #475569;
    line-height: 1.6;
}

.blog-single-benefit-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}
/* Table Styling */
.blog-single-table {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-single-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.blog-single-table th {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-single-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.blog-single-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.blog-single-table tr:hover {
    background-color: #f1f5f9;
}

.blog-single-table-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    text-align: center;
    padding: 0.5rem;
}
.blog-simple-box {
    background: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.blog-simple-box a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.blog-simple-box a:hover {
    text-decoration: underline;
}
/* Responsive Table */


/* Responsive Styles */
@media (max-width: 992px) {
    .blog-single-main-content {
        padding: 2rem 1.5rem 4rem;
    }
    
    .blog-single-title {
        font-size: 2.5rem;
    }
    
    .blog-single-subtitle {
        font-size: 1.2rem;
    }
    
    .blog-single-features-grid,
    .blog-single-reasons {
        grid-template-columns: 1fr;
    }
    
    .blog-single-highlight {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-single-header {
        padding: 1.5rem 0 2rem;
    }
    
    .blog-single-title {
        font-size: 2rem;
    }
    
    .blog-single-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-single-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .blog-single-featured-image {
        margin: 1.5rem 0 2.5rem;
    }
    
    .blog-single-featured-image img {
        max-height: 400px;
    }
    
    .blog-single-section {
        margin-bottom: 3rem;
    }
    
    .blog-single-section-title {
        font-size: 1.7rem;
    }
    
    .blog-single-benefit {
        padding: 1.5rem;
    }
    
    .blog-single-benefit h3 {
        font-size: 1.3rem;
    }
    
    .blog-single-share {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-single-content {
        padding: 0;
    }
    .blog-single-tips {
        grid-template-columns: 1fr;
    }
    .blog-single-benefit-highlights {
        padding: 1.2rem;
    }
    
    .blog-single-benefit-highlights li {
        padding-left: 1.5rem;
    }
    .blog-single-table th,
    .blog-single-table td {
        padding: 0.8rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .blog-single-table th {
        font-size: 0.85rem;
        padding: 1rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .blog-single-main-content {
        padding: 1.5rem 1rem 3rem;
    }
    
    .blog-single-title {
        font-size: 1.8rem;
    }
    
    .blog-single-subtitle {
        font-size: 1rem;
    }
    
    .blog-single-lead {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .blog-single-featured-image img {
        max-height: 300px;
    }
    
    .blog-single-feature,
    .blog-single-benefit {
        padding: 1.2rem;
    }
    
    .blog-single-conclusion {
        padding: 1.5rem;
    }
    
    .blog-single-back-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .blog-single-share-icons {
        gap: 0.8rem;
    }
    
    .blog-single-share-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .blog-single-share,
    .blog-single-back {
        display: none;
    }
    
    .blog-single-main-content {
        padding: 0;
        max-width: 100%;
    }
    
    .blog-single-featured-image {
        box-shadow: none;
    }
}