/* Main Content */
.blog-post {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post p, .blog-post ul, .blog-post ol {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.blog-post a {
    color: #dab96b;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post a:hover {
    color: #b8935f;
}

.ritual-step {
    margin-bottom: 40px;
    scroll-margin-top: 100px; /* For smooth scrolling with fixed header */
}

.ritual-step h2 {
    font-size: 32px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    color: var(--primary-color);
}

.blog-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ritual-step img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.ritual-step ul, .ritual-step ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.ritual-step li {
    margin-bottom: 8px;
}

.ritual-step strong {
    color: var(--primary-color);
}

.conclusion {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
}

/* From Detail Blogs/css/style.css */
.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.post-header .meta {
    color: #777;
    font-size: 16px;
}

/* From Detail Blogs/css/responsive.css */
@media (max-width: 992px) {
    body {
        padding-top: 80px; /* Adjust for mobile header */
    }
    .blog-post {
        padding: 20px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .blog-post {
        padding: 30px 0;
    }
    
    .ritual-step h2 {
        font-size: 30px;
    }
    
    .blog-post p, .blog-post ul, .blog-post ol {
        font-size: 17px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .ritual-step h2 {
        font-size: 24px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .blog-post p, .blog-post ul, .blog-post ol {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .ritual-step {
        margin-bottom: 30px;
    }
    
    .ritual-step img {
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .conclusion {
        padding: 15px;
        margin-top: 30px;
    }
    .ritual-step img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
    .ritual-step img {
        loading: lazy;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px; /* Adjust for small mobile header */
    }
    .blog-post {
        padding: 15px 0;
    }
    
    .blog-post p, .blog-post ul, .blog-post ol {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .ritual-step h2 {
        font-size: 20px;
    }
    
    .ritual-step img {
        border-radius: 6px;
    }
    
    .conclusion {
        padding: 12px;
    }
    .ritual-step img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
}