
.blog-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 600;
    padding: 0.5rem;
    font-size: 1.5rem; /* Mobile default */
}

.blog-meta {
    color: #6c757d;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.share-btn-container {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2px;
}

.share-btn-container a i {
  font-size: 32px;
}

.share-btn-container a {
  margin: 0px 10px;
  transition: 500ms;
}

.share-btn-container a:hover {
  transform: scale(1.2);
}

.share-btn-container .fa-facebook {
  color: #3b5998;
}

.share-btn-container .fa-twitter {
  color: #1da1f2;
}

.share-btn-container .fa-linkedin {
  color: #0077b5;
}

.share-btn-container .fa-pinterest {
  color: #bd081c;
}

.share-btn-container .fa-whatsapp {
  color: #25d366;
}
/* Tag style */
.tags {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: white;
    padding: 1px 2px;
    border-radius: 10px;
}

.tags .badge {
    background-color: #21bf73;
    color: white;
    margin: .5px;
    padding: 4px 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.tags .badge:hover {
    background-color: white;
    color: black;
    border: 1px solid #21bf73;
    transition: transform 0.3s ease;
}

/* Base article font */
.article-content {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin-top: 1rem;
}

/* Blogs pages style */

/* Base Style for All Category Tags */
.category-label {
    display: inline-block;
    padding: 4px 8px;
    font-weight: 700;
    border-radius: 20px;
    font-family: 'Merriweather', serif;
    transition: all 0.3s ease-in-out;
}

/* Specific Style for "Fresh for You" Tag */
.food-label {
    background-color: #abe401;
    font-size: 18px;
    color: #333;
}

.trend-label {
    background-color: #abe401;
    font-size: 18px;
    color: #333;
}

/* Specific Style for "Discover your Interest" Tag */
.discover-label {
    font-size: 18px;
    font-family: 'Libre Baskerville', serif;
    background-color: #daebed;
    color: #222;
}
.allcategories-label {
    font-size: 18px;
    font-family: 'Libre Baskerville', serif;
    background-color: #daebed;
    color: #060606;
}

/* Hover effects (optional) */
.category-label:hover {
    background-color: #b7e4c7;
    color: #000;
}

/* Blog cards */
/* Blog entry container */
.fresh-blog-entry {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

/* Blog image container */
.fresh-blog-entry .hoverimage {
    overflow: hidden;
    display: block;
    border-radius: 6px;
    border: 1px solid #21bf73;
}

.fresh-blog-entry .hoverimage img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 6px;
}

/* Hover effect */
.fresh-blog-entry .hoverimage:hover img {
    transform: scale(1.1);
}

/* Blog title */
.fresh-blog-entry .blog-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 6px;
    padding: 0px 0px;
}

.fresh-blog-entry .blog-title a {
    text-decoration: none;
    color: inherit;
}

.fresh-blog-entry .blog-title a:hover {
    color: #21bf73;
}

/* Author & meta */
.fresh-blog-entry .meta {
    font-size: 14px;
    color: #666;
}

/* Tags */
.fresh-blog-entry .badge {
    background-color: #21bf73;
    color: white;
    font-size: 13px;
    margin: 2px;
    padding: 4px 8px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.fresh-blog-entry .badge:hover {
    background-color: white;
    color: black;
    text-decoration: none;
}

/* Blog excerpt */
.fresh-blog-entry .excerpt {
    font-size: 15px;
    color: #444;
    margin-top: 2px;
    line-height: 1.4;
    font-family: 'Merriweather', serif;
}

/* Explore more blogs button */
.explore-btn {
  display: inline-block;
  width: 100%;
  padding: 4px 8px;
  background-color: transparent;
  border: 2px solid #07e81f; /* Bootstrap's secondary color */
  color: #343a40; /* Darker text */
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: #7ede88;
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Desktop view enhancements */
@media (min-width: 768px) {
    .article-content {
        font-size: 1.125rem;
    }

    .tags .badge {
        font-size: 12px;
    }

    .blog-title {
        font-size: 2.5rem;
    }

    .blog-meta {
        font-size: 1rem;
    }

    .share-btn-container {
        justify-content: center;
        padding: 5px;
    }

    .share-btn-container a {
        margin: 0px 5px;
      }
}
