﻿/* Custom CSS for responsive heading */
@media (max-width: 576px) {
    .blog-heading {
        font-size: 1.5rem;
        text-align: center;
    }

    .blog-details-content h1 {
        font-size: 1.75rem;
    }

    .blog-details-content h2 {
        font-size: 1.3rem;
    }

    .blog-details-content h3 {
        font-size: 1.25rem;
    }

    .blog-details-content h4 {
        font-size: 1.125rem;
    }

    .blog-details-content h5 {
        font-size: 1rem;
    }

    .blog-details-content h6 {
        font-size: 0.875rem;
    }
}

@media (min-width: 577px) {
    .blog-heading {
        font-size: 2.5rem;
    }

    .blog-details-content h1 {
        font-size: 2.2rem;
    }

    .blog-details-content h2 {
        font-size: 2rem;
    }

    .blog-details-content h3 {
        font-size: 1.75rem;
    }

    .blog-details-content h4 {
        font-size: 1.5rem;
    }

    .blog-details-content h5 {
        font-size: 1.25rem;
    }

    .blog-details-content h6 {
        font-size: 1rem;
    }
}

.carousel-item .card-img-top {
    height: 150px; /* Adjust the height as needed */
    object-fit: cover; /* Ensures the image covers the entire container */
}

/* Default like button style */
#btnLike {
    background-color: white;
    color: #0d6efd;
    border: 1px solid #0d6efd;
    transition: background-color 0.3s, color 0.3s;
}

    /* When the post is liked */
    #btnLike.liked {
        background-color: #0d6efd;
        color: white;
        border: 1px solid #0d6efd;
    }


.article-img img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
}





