#text {
  padding: 2rem 0;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
 /* border-bottom: 2px solid #eee;*/
  padding-bottom: 1rem;
}

.category-thumb-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.recipe-entry {
  background: #fff;
 /* border: 1px solid #e0e0e0;*/
  border-radius: 8px;
  margin-bottom: 1.5rem;
  padding: 0;
  transition: transform 0.2s;
  overflow: hidden;
  border: 1px solid #f0c;
 
}

.recipe-entry:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.thumb-fixed {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  padding: 0;
  display: block;
}

.chef-thumb-small {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  padding: 0;
  display: block;
}

.square {
/*
  width: 11.25em;
  height: 11.25em;*/
    width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  padding: 0;
  display: block;
}
.recipe-info-text {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  margin: auto;
}

.pagination-nav {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .category-header {
    flex-direction: column-reverse;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .category-thumb-circle {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .thumb-fixed, .chef-thumb-small {
    height: 250px;
  }
}

.bio-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}


/*

.bio-img {
  width: 100%;
  max-width: 150px;
  object-fit: cover;
}
*/
/*

.bio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*/

@media (max-width: 575.98px) {
  .bio-img {
    height: 150px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .bioshorts {
    text-align: center;
  }
}


.bio_link {
  color: #2c3e50;
  transition: color 0.2s ease;
}

.bio_link:hover {
  color: #009933;
}


.read_more {
  text-decoration: none;
  font-size: 0.9rem;
    white-space: nowrap;
}

.read_more:hover {
  text-decoration: underline;
}

.bio-content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 575.98px) {
  .bio-content p {
    -webkit-line-clamp: 4;
  }
  .bio-content {
    padding-top: 10px;
  }
  
  .bio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

}

.text-start {
  text-align: left !important;
}

/*RECIPES VIEW*/

body {
  background-color: #f8f9fa;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.recipe-main-img {
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .recipe-main-img {
    height: 300px;
  }
}

.author-img {
  border: 3px solid #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.recipe-content p {
  line-height: 1.8;
}

.breadcrumb-item a {
  color: #dc3545;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.btn-light {
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.btn-light:hover {
  background-color: #f8f9fa;
  border-color: #ced4da;
}

.card {
  border-radius: 1rem;
}

.img-fluid {
  border-radius: 0.5rem;
}

.recipe-main-img {
  border-radius: 0;
}


