.Solar_Insights {}

.Solar_Insights .Solar_Insights_header_holder {
  text-align: center;
  font-family: sans-serif;
  margin-top: 20px;
}

.Solar_Insights .Solar_Insights_header_holder .Solar_Insights_header {
  font-size: 24px;
  font-weight: 900;
  color: #00648b;
  margin-bottom: 10px;
}

.Solar_Insights .Solar_Insights_header_holder .Solar_Insights_subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.Solar_Insights .blog_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  padding: 4% 0;
}

.Solar_Insights .blog_card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  color: #fff;
  font-family: sans-serif;
  padding: 20px;
  cursor: pointer;
}

.Solar_Insights .blog_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
  z-index: 0;
  background: transparent linear-gradient(180deg, #10101000 0%, #0000007D 10%, #002446 100%) 0% 0% no-repeat padding-box;
}

.Solar_Insights .blog_card_large {
  grid-column: span 3;
  height: 400px;
}

.Solar_Insights .blog_card_small {
  grid-column: span 2;
  height: 400px;
}

.Solar_Insights .blog_card .blog_overlay {
  z-index: 111;
}

.Solar_Insights .blog_card .blog_overlay .blog_meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.Solar_Insights .blog_card .blog_overlay .blog_meta .author_name {
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  width: 150px;
}

.Solar_Insights .blog_card .blog_overlay .blog_meta .date {
  font-size: 13px;
  font-weight: 400;
  margin-left: 30px;
}

.Solar_Insights .blog_card .blog_overlay .blog_title {
  font-size: 18px;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Solar_Insights .blog_card .blog_overlay .blog_desc {
  font-size: 14px;
  font-weight: 100;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0px;
}

.Solar_Insights .blog_card .read_more {
  font-size: 18px;
  font-weight: 800;
  text-decoration: underline;
  color: #fff;
}

/* View All Half Circle Section */

.Solar_Insights .view_all_section {
  position: relative;
  text-align: center;
}

.Solar_Insights .view_all_section .view_line {
  height: 2px;
  background: #393535;
  width: 100%;
}

/* Half Circle Button */
.Solar_Insights .view_all_section .view_all_btn {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  width: 120px;
  height: 60px;
  background: #2d2d2d;
  color: #fff;
  border: 2px solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 120px;
  border-bottom-right-radius: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.Solar_Insights .view_all_section:hover .view_all_btn {
  border: 2px solid #00648b;
}

.Solar_Insights .view_all_section:hover .view_line {
  background: #00648b;
}

/* ============== Hover State =================== */

.Solar_Insights .blog_card:hover .read_more {
  color: #0dcaf0;
}

.blog_card::before {
  background-image: inherit;
}

/* Hover Effect - ONLY image zoom */
.blog_card:hover::before {
  transform: scale(1.1);
}

/* ================= Media Queries ================== */

@media (min-width: 0px) and (max-width: 574px) {
  .Solar_Insights .Solar_Insights_header_holder .Solar_Insights_header {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .Solar_Insights .Solar_Insights_header_holder .Solar_Insights_subtitle {
    font-size: 15px;
  }

  .Solar_Insights .blog_card .blog_overlay .blog_meta .author_name {
    font-size: 13px;
  }

  .Solar_Insights .blog_card .blog_overlay .blog_meta .date {
    font-size: 12px;
    margin-left: 8px;
  }

  .Solar_Insights .blog_card .blog_overlay .blog_title,
  .Solar_Insights .blog_card .read_more {
    font-size: 15px;
    font-weight: 700;
  }

  .Solar_Insights .blog_card .blog_overlay .blog_desc {
    font-size: 13px;
    text-align: justify;
  }

  .Solar_Insights .blog_card {
    margin-bottom: 30px;
    height: 300px;
  }

  .Solar_Insights .blog_grid {
    display: block;
  }

  .Solar_Insights {
    margin: 15% 0;
  }
}

@media (min-width: 575px) and (max-width: 767px) {
  .Solar_Insights .blog_card .blog_overlay .blog_meta .author_name {
    font-size: 13px;
  }

  .Solar_Insights .blog_card .blog_overlay .blog_meta .date {
    font-size: 12px;
    margin-left: 8px;
  }

  .Solar_Insights .blog_card .blog_overlay .blog_title,
  .Solar_Insights .blog_card .read_more {
    font-size: 15px;
    font-weight: 700;
  }

  .Solar_Insights .blog_card .blog_overlay .blog_desc {
    font-size: 13px;
    text-align: justify;
  }

  .Solar_Insights .blog_card_small {
    grid-column: span 3;
  }

  .Solar_Insights .blog_card_large,
  .Solar_Insights .blog_card_small {
    height: 330px;
  }

  .Solar_Insights .blog_card {
    padding: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .Solar_Insights .blog_card .blog_overlay .blog_title {
    font-size: 16px;
  }

  .Solar_Insights .blog_card .read_more {
    font-size: 16px;
  }

  .Solar_Insights .blog_card_small {
    grid-column: span 3;
  }

  .Solar_Insights .Solar_Insights_header_holder .Solar_Insights_header {
    margin-top: 9%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .Solar_Insights .blog_card .blog_overlay .blog_title {
    font-size: 16px;
  }

  .Solar_Insights .blog_card .read_more {
    font-size: 16px;
  }
}