* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}

        .blog-content a {
            color: #044656 !important;    
        }
        .blog-content a:hover {
            color: #ad8b3a !important;    
        }
        


        .blog-container {
            max-width: 1100px;
            margin: 90px auto;
            padding: 40px 40px;
            border: 1px solid lightgray;
        }

        .blog-header {
            margin-bottom: 30px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .author-info {
            display: flex;
            /*align-items: center;*/
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #ccc;
            margin-right: 15px;
        }

        .author-details {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-weight: 500;
            color: #333;
        }

        .post-date {
            color: #777;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        .dot-separator {
            margin: 0 8px;
            font-size: 14px;
            color: #777;
        }

        .blog-actions {
            cursor: pointer;
            font-size: 24px;
            color: #777;
        }

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

        .blog-subtitle {
            font-size: 18px;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin-bottom: 40px;
            border-radius: 4px;
        }

        .blog-content {
            margin-bottom: 40px;
        }

        .blog-content p, .blog-content li {
            margin-bottom: 20px;
            font-size: 18px;
            color: #444;
        }
        

        
        .blog-content ol {
            padding-left: 20px;
        }

        .social-share {
            display: flex;
            align-items: center;
            padding: 20px 0;
            border-top: 1px solid #eee;
            margin-bottom: 40px;
        }

        .social-icon {
            width: 24px;
            height: 24px;
            margin-right: 15px;
            cursor: pointer;
            color: #555;
        }

        .link-icon {
            margin-left: auto;
        }

        .stats {
            display: flex;
            align-items: center;
            margin: 30px 0;
        }

        .views-count {
            margin-right: 20px;
            color: #777;
            font-size: 16px;
        }

        .likes {
            display: flex;
            align-items: center;
            color: #777;
        }

        .like-count {
            margin-left: 5px;
            font-size: 16px;
        }

        .recent-posts-section {
            margin-top: 60px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 24px;
            font-weight: 500;
            color: #333;
        }

        .see-all {
            color: #666;
            text-decoration: none;
            font-size: 16px;
        }

        .recent-posts {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .post-card {
            border-radius: 4px;
            overflow: hidden;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .post-card a{
            text-decoration: none;
        }

        .post-card:hover {
            transform: translateY(-5px);
        }

        .post-card-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .post-card-content {
            padding: 20px;
        }

        .post-card-title {
            line-height: 1.3;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
            clear: both;
        }

        .post-card-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #777;
            font-size: 14px;
        }

        .post-card-views {
            display: flex;
            align-items: center;
        }

        .views-icon {
            margin-right: 5px;
        }

        .post-card-likes {
            display: flex;
            align-items: center;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .blog-title {
                font-size: 36px;
            }

            .blog-subtitle {
                font-size: 16px;
            }

            .recent-posts {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .blog-container {
                padding: 20px 15px;
            }

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

            .featured-image {
                max-height: 350px;
            }

            .blog-content p {
                font-size: 16px;
            }

            .recent-posts {
                grid-template-columns: 1fr;
            }
        }

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

            .author-avatar {
                width: 36px;
                height: 36px;
            }

            .social-share {
                justify-content: space-around;
            }

            .social-icon {
                margin-right: 0;
            }

            .link-icon {
                margin-left: 0;
            }
        }
        
        .card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
        }