/*!****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./app/blog/style.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************/
.banner-section {
  background-image: url(/../assets/images/img/about-banner-image.jpg);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
}

.main-heading {
  height: 300px;
}
.about-section {
  padding: 80px 0;
}
.banner-section h1 {
  color: #fff;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
}

.pagination-section .custom-pagination .page-link {
  color: #d4a017; /* Gold color */
  border: 1px solid #d4a017;
  border-radius: 10px;
  padding: 8px 16px;
  background-color: transparent;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination-section .custom-pagination .page-item.active .page-link {
  background-color: #d4a017;
  color: #fff;
  border-color: #d4a017;
}

.pagination-section .page-item.disabled .page-link {
  background-color: #fff8e5;
  color: #d4a017;
  border-color: transparent;
  cursor: not-allowed;
}

.pagination-section .page-link:hover {
  background-color: #d4a017;
  color: #fff;
  border-color: #d4a017;
}

.pagination-section .pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination-section .pagination-wrapper {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

.pagination-section .page-item:last-child .page-link {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.recent-blog-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
}

.recent-blog-section h2 {
  font-weight: 700;
  color: #151515;
  font-size: 40px;
}

.recent-blog-section .blog-card {
  border-radius: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
  margin-bottom: 1rem;
  box-shadow: 0px 20px 40px 0px #15181b1a;
}

.recent-blog-section .blog-card:hover {
  box-shadow: 0 8px 32px rgba(80, 80, 80, 0.15);
}
.recent-blog-section .blog-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}
.recent-blog-section .blog-meta {
  color: #555454;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
.recent-blog-section .blog-title {
  margin-bottom: 0.5rem;
  min-height: 50px;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 28px;
  color: #151515;
}
.recent-blog-section .blog-link {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #6a6a6a;
  text-decoration: none;
}

.recent-blog-section .blog-link:hover {
  color: #199fd9;
  text-decoration: none;
}
.recent-blog-section .blog-link img {
  margin-left: 6px;
}

.pagination-section {
  padding-bottom: 30px;
  padding-top: 30px;
}

@media (max-width: 767px) {
  .banner-section h1 {
    font-size: 35px;
  }
}

