.head {
  margin: 0;
  margin-top: 100px;
  padding: 0;
  min-height: 80vh;
  position: relative;
}

.head::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/blog/IMG_0913.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-image: linear-gradient(to right, #fed9ac, #fed9ac83, #ffffff00);
  z-index: -1;
}

.head .container {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.head .container h1 {
  color: #2e3455;
}

.ql-1 {
  font-size: 24px;
  font-weight: 600;
  
}

.ql-2 {
  font-size: 42px;
}

/* blog */
.title-blogs {
  padding: 40px 0;
}

.title-blogs h2 {
  margin: 0;
  font-size: 40px;
}

/* .search-topic {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}

.search-topic > div {
  padding: 5px;
  background: #f4f4fa;
  width: 400px;
  display: flex;
}

.search-topic input {
  font-size: 20px;
  outline: none;
  border: none;
  background: #f4f4fa;
  width: 70%;
}

.search-topic img {
  width: 35px;
  object-fit: contain;
  margin-right: 20px;
}
*/

.blog-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* feed */
.feed-side {
  padding: 20px;
  padding-right: 40px;
  width: 70%;
  min-width: 500px;
}

.blog-feed {
  margin-bottom: 20px;
}

.blog-feed > * {
  margin-bottom: 15px;
}

.blog-feed img {
  width: 100%;
  height: 400px;
  border-radius: 4px;
}

.blog-feed h3 {
  color: #212529;
  font-family: TamilFont;
}

.blog-feed .meta {
  margin-left: 5px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.blog-feed .meta span {
  margin-right: 20px;
  color: #6c757d;
}

.blog-feed .meta span::before {
  content: "";
  display: inline-block;
  background-color: red;
  width: 8px;
  height: 8px;
  position: relative;
  left: -5px;
  border-radius: 100px;
}

.blog-feed .content {
  color: #343a40;
  font-size: 18px;
  line-height: 1.4;
  font-family: TamilFont !important;
}

.blog-feed a button {
  background: #ebf7ff;
  color: #495057;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 8px;
}

.no-post {
  text-align: center;
}

hr {
  margin: 20px 0;
  opacity: 0.5;
}

/* blog category */
.blog-category {
  padding: 20px;
  width: 30%;
  min-width: 200px;
}

.blog-category h2 {
  text-align: left;
  font-size: 32px;
}

.blog-category li a {
  color: #212529;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 800px) {
  /* head */
  .head {
    margin-top: 90px;
    min-height: 50vh;
  }

  .head::before {
    background-position: 80%;
  }

  .head::after {
    width: 40%;
    
  }

  .head .container {
    min-height: 50vh;
  }

  .head .container h1 {
    padding-left: 20px;
    color: white;
  }

  .ql-1 {
    font-size: 20px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  }

  .ql-2 {
    font-size: 38px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  }

  .title-blogs {
    padding: 20px 0;
  }

  .title-blogs h2 {
    margin: 0;
    font-size: 32px;
  }

  /* feed side */
  .feed-side {
    padding: 0;
    width: 100%;
    min-width: 300px;
  }

  /* .blog-feed {
    width: 100%;
  } */

  .blog-feed .meta {
    font-size: 15px;
  }

  .blog-feed img {
    height: 180px;
  }

  .blog-feed .content {
    font-size: 17px;
  }

  .blog-feed a button {
    font-size: 17px;
  }
}
