/* Import Google Font - Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Apply Roboto font to the entire blog */
body, .blog-post, .related-blogs, .post, .post-thumb, #dyndata p {
    font-family: 'Roboto', sans-serif;
}

/* Blog post styles */
.blog-post {
    margin-bottom: 50px;
    line-height: 1.8; /* Improved line height for readability */
    padding: 20px; /* Added padding for better spacing */
}

.blog-post .post-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.blog-post .post-content {
    font-size: 16px;
    line-height: 1.8; /* Improved line spacing for better readability */
    color: #333; /* Darker text color for contrast */
}

.related-blogs h3 {
    margin-bottom: 40px;
    font-size: 24px; /* Larger font size for headings */
    font-weight: 700; /* Bold font for headings */
}

.related-blogs .blog-item {
    margin-bottom: 20px;
}

.related-blogs .blog-item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.related-blogs .blog-item h4 {
    margin-bottom: 5px;
    font-size: 18px; /* Slightly larger text for item titles */
    font-weight: 600; /* Bold titles */
}

.related-blogs .blog-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6; /* Better spacing for paragraph text */
}

.mt {
    margin-top: 160px;
    margin-bottom: 140px;
}

.post {
    position: relative;
    padding-left: 100px;
    padding-bottom: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #000;
}

.post-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

#dyndata p {
    text-align: justify !important;
    font-size: 16px; /* Ensures text in #dyndata is readable */
    color: #444;
    line-height: 1.8;
}

.main-hero-title {
    font-size: 40px !important;
    font-weight: 700; /* Bold and prominent title */
    margin-bottom: 20px; /* Added spacing below the title */
}

/* Mobile responsiveness */
@media (max-width: 1500px) {
    .main-hero-title {
        font-size: 30px !important;
    }
}

@media (max-width: 1200px) {
    .main-hero-title {
        font-size: 20px !important;
    }
}

@media (max-width: 1000px) {
    .main-hero-title {
        font-size: 18px !important;
    }
}

@media (max-width: 850px) {
    .main-hero-title {
        font-size: 16px !important;
    }
}

@media (max-width: 600px) {
    .main-hero-title {
        font-size: 14px !important;
    }
}

@media (max-width: 400px) {
    .main-hero-title {
        font-size: 12px !important;
    }
}

/* Additional spacing and padding for better layout */
.blog-post, .related-blogs {
    padding: 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    border-radius: 8px; /* Rounded corners for a modern look */
}

.related-blogs .blog-item {
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Soft shadow for separation */
}
