.blog-container {
  display: block;
  margin-top: 75px;
  padding-bottom: 20px;
  background: #f7f7f7;
}

.blog-container .blog-wrapper {
  display: block;
  padding: 10px;
}

.blog-container .breadcrumb {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  padding-top:0px;
}

.blog-container .breadcrumb a {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  text-decoration: none;
}

.blog-container .breadcrumb span {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.blog-container .wrapper {
  width: 1200px;
  margin: auto;
}

.blog-container .wrapper .title {
  display: block;
  text-align: center;
  margin-top: 20px;
}

.blog-container .wrapper .title h1 {
  font-size: 25px;
  color: #000;
}

.blog-header {
  text-align: center;
  padding: 25px 15px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border-radius: 4px;
  margin-top: 20px;
}

.blog-title {
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.blog-subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto 18px;
  line-height: 1.6;
}

.blog-header-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  margin: 0 auto;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 30px;
  }
  .blog-subtitle {
    font-size: 14px;
  }
}

.blog-container .blog-top-container {
  background: #fff;
  margin-top: 30px;
  border-top: solid 2px #ddd;
  padding: 30px 0px;
}

.blog-container .blog-top-container .blog-flex-layout {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.blog-container .blog-top-container .blog-flex-layout .blog-section-left {
  display: block;
  width: 50%;
}

.blog-section-left h3 {
  font-size: 18px;
  font-weight: 600;
}

.blog-section-left .hero-blog {
  display: block;
  padding: 10px 0px;
  margin-top: 10px;
}

.blog-section-left .hero-blog .hero-link {
  text-decoration: none;
  display: block;
}

.blog-section-left .hero-blog .hero-link .hero-data {
  display: block;
}

.blog-section-left .hero-blog .hero-link .hero-data h2 {
  font-size: 25px;
  color: #000;
  font-weight: 600;
  line-height: 30px;
}

.hero-data .blog-listed-detail {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 0px;
  margin-bottom: 8px;
}

.hero-data .blog-listed-detail h3 {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

.hero-data .blog-listed-detail p {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

.hero-data .hero-image {
  display: block;
  max-height: 400px;
  height: 400px;
  border-radius: 4px;
  position: relative;
}

.hero-data .hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.hero-data .hero-image h4 {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #0678b1;
  color: #fff;
  font-size: 15px;
  padding: 5px 16px;
  border-radius: 4px;
}

.hero-data .blog-description {
  font-size: 16px;
  color: #000;
  padding: 20px 0px;
  font-weight: 400;
  line-height: 23px;
}

.hero-data button {
  padding: 8px 20px;
  border: solid 1px #0678b1;
  border-radius: 4px;
  font-size: 16px;
  color: #000;
  transition: 0.5s;
  background: #fff;
}

.hero-data button:hover {
  background: #0678b1;
  color: #fff;
  border-color: #fff;
}

.blog-section-left .scroll-container {
  display: block;
  padding: 20px 0px;
}
.blog-section-left .scroll-container .article-link {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  border-bottom: solid 1px #ddd;
  padding: 20px 0px;
}

.blog-section-left .scroll-container .article-link .article-textflow {
  width: 60%;
}

.blog-section-left .scroll-container .article-link .article-image-container {
  display: block;
  height: 180px;
  max-height: 180px;
  border-radius: 4px;
  width: 40%;
}

.blog-section-left
  .scroll-container
  .article-link
  .article-image-container
  img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog-section-left .scroll-container .article-link .article-textflow {
  width: 60%;
}

.blog-section-left .scroll-container .article-link .article-textflow h2 {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  line-height: 26px;
}

.blog-section-left
  .scroll-container
  .article-link
  .article-textflow
  .textflow-detail
  h4 {
  font-size: 14px;
  color: #0678b1;
  font-weight: 500;
  margin-bottom: 0 !important;
  max-width: 100px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.blog-section-left .scroll-container .article-link .article-textflow p {
  font-size: 15px;
  color: #666;
  font-weight: 400;
  line-height: 23px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-section-left
  .scroll-container
  .article-link
  .article-textflow
  .textflow-detail {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 6px 0px;
  margin-bottom: 5px;
}

.blog-section-left
  .scroll-container
  .article-link
  .article-textflow
  .textflow-detail
  h3 {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  max-width: 120px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.blog-section-left
  .scroll-container
  .article-link
  .article-textflow
  .textflow-detail
  p {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  max-width: 140px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.sticky-stop-container {
  display: flex;
  width: 50%;
  gap: 10px;
}

.blog-container .blog-top-container .blog-flex-layout .blog-section-middle {
  width: 50%;
}

.blog-section-middle .secondary-trending {
  display: block;
  padding: 10px 0px;
  margin-top: 10px;
}

.blog-section-middle .secondary-trending .trending-item {
  display: block;
  text-decoration: none;
  margin-bottom: 30px;
}

.blog-section-middle .secondary-trending .trending-item .trending-image {
  width: 100%;
  height: 200px;
  display: block;
  position: relative;
}

.blog-section-middle .secondary-trending .trending-item .trending-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 30%;
  background: linear-gradient(
    to bottom,
    rgba(6, 27, 65, 0) 0%,
    rgba(6, 27, 65, 0.95) 100%
  );
  border-radius: 5px;
  z-index: 2;
}

.blog-section-middle .secondary-trending .trending-item .trending-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-section-middle .secondary-trending .trending-item .trending-image h3 {
  position: absolute;
  bottom: 15px;
  left: 10px;
  background: #0678b1;
  padding: 2px 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  z-index: 4;
}

.blog-section-middle .secondary-trending .trending-item .trending-text {
  padding: 10px 0px;
  display: block;
}

.blog-section-middle .secondary-trending .trending-item .trending-text h2 {
  font-size: 17px;
  color: #000;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 10px;
}

.blog-section-middle .secondary-trending .trending-item .trending-text p {
  font-size: 13px;
  color: #444;
  font-weight: 400;
}

.blog-container .blog-top-container .blog-flex-layout .blog-section-right {
  width: 50%;
}

.blog-section-right .featured-blogsItem {
  display: block;
  padding: 10px 0px;
  margin-top: 10px;
}
.blog-section-right .featured-blogsItem .featured-itemList {
  display: flex;
  text-decoration: none;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.blog-section-right .featured-blogsItem .featured-itemList:nth-child(1),
.blog-section-right .featured-blogsItem .featured-itemList:nth-child(5) {
  display: block;
}

.blog-section-right
  .featured-blogsItem
  .featured-itemList:nth-child(1)
  .featured-imageList,
.blog-section-right
  .featured-blogsItem
  .featured-itemList:nth-child(5)
  .featured-imageList {
  display: block;
  height: 200px;
  width: 100%;
  max-width: 100%;
}

.blog-section-right
  .featured-blogsItem
  .featured-itemList:nth-child(1)
  .featured-imageList
  img,
.blog-section-right
  .featured-blogsItem
  .featured-itemList:nth-child(5)
  .featured-imageList
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-section-right
  .featured-blogsItem
  .featured-itemList:nth-child(1)
  .featured-titleItem,
.blog-section-right
  .featured-blogsItem
  .featured-itemList:nth-child(5)
  .featured-titleItem {
  width: 100%;
  display: block;
}

.blog-section-right
  .featured-blogsItem
  .featured-itemList:nth-child(1)
  .featured-titleItem
  h2,
.blog-section-right
  .featured-blogsItem
  .featured-itemList:nth-child(5)
  .featured-titleItem
  h2 {
  margin-top: 10px;
}

.blog-section-right
  .featured-blogsItem
  .featured-itemList:nth-child(1)
  .featured-titleItem
  p,
.blog-section-right
  .featured-blogsItem
  .featured-itemList:nth-child(5)
  .featured-titleItem
  p {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  line-height: 19px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-section-right .featured-blogsItem .featured-itemList .featured-imageList {
  display: block;
  height: 90px;
  max-width: 100px;
  width: 30%;
}

.blog-section-right
  .featured-blogsItem
  .featured-itemList
  .featured-imageList
  img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.blog-section-right .featured-blogsItem .featured-itemList .featured-titleItem {
  display: block;
  width: 70%;
}

.blog-section-right
  .featured-blogsItem
  .featured-itemList
  .featured-titleItem
  h2 {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  line-height: 20px;
}

.blog-section-right
  .featured-blogsItem
  .featured-itemList
  .featured-titleItem
  .feature-dateDetail {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0px;
}

.blog-section-right
  .featured-blogsItem
  .featured-itemList
  .featured-titleItem
  .feature-dateDetail
  p {
  font-size: 13px;
  color: #333;
  font-weight: 400;
  margin-bottom: 0;
  text-overflow: ellipsis;
    width: 48%;
    white-space: nowrap;
    overflow: hidden;
}

.blog-section-right
  .featured-blogsItem
  .featured-itemList
  .featured-titleItem
  .feature-dateDetail
  h3 {
  font-size: 13px;
  color: #333;
  font-weight: 400;
	      text-overflow: ellipsis;
    width: 48%;
    white-space: nowrap;
    overflow: hidden;
}

.blog-section-right .blogcategories {
  display: block;
}

.blog-section-right .blogcategories h4 {
  padding: 8px 10px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  border-bottom: solid 4px #ddd;
  border-top: solid 4px #0678b1;
}

.blog-section-right .blogcategories .category-list {
  display: block;
  margin-top: 15px;
}

.blog-section-right .blogcategories .category-list a {
  display: block;
  text-decoration: none;
  padding: 12px 0px;
  border-bottom: dotted 2px #0678b1;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

.infinite-scroll-loader {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0678b1;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 768px) and (min-width: 360px) {
  .blog-container .wrapper {
    width: 100%;
    padding: 0px 10px;
  }

  .blog-top-container .blog-flex-layout {
    flex-wrap: wrap;
  }
  .blog-container .blog-top-container .blog-flex-layout .blog-section-left {
    width: 100%;
  }

  .blog-section-left .scroll-container .article-link {
    flex-wrap: wrap;
  }

  .blog-section-left .scroll-container .article-link .article-image-container {
    width: 100%;
  }

  .blog-section-left .scroll-container .article-link .article-textflow {
    width: 100%;
  }

  .blog-top-container .blog-flex-layout .sticky-stop-container {
    width: 100%;
    flex-wrap: wrap;
    height: auto !important;
  }

  .blog-container .blog-top-container .blog-flex-layout .blog-section-middle {
    width: 100%;
  }
  .blog-container .blog-top-container .blog-flex-layout .blog-section-right {
    width: 100%;
  }
}

@media only screen and (max-width: 1300px) and (min-width: 769px) {
  .blog-container .wrapper {
    width: 100%;
    padding: 0px 10px;
  }
}
