.blog-gradient-banner {
  background: linear-gradient(to right, #70DAEA 60%, #F4CD80);
  border-radius: 25px;
  height: 307px;
  width: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0.3;
}

/* Background images */
.utils-bg {
  position: absolute;
}

.utils-bg.top-left {
  top: 20px;
  left: 20px;
}

.utils-bg.bottom-right {
  bottom: 20px;
  right: 20px;
}

.blog-gradient-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.blog-gradient-banner-heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 0.5rem;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px 14px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-icon {
  margin-right: 8px;
  opacity: 0.5;
}

.search-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}

.featured-blog-container {
  display: flex;
  flex-direction: row;
  gap: 60px;
  margin-bottom: 3rem;
  padding-top: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .featured-blog-container {
    flex-direction: column;
    gap: 30px;
  }
}

.featured-blog-image {
  flex: 1;
}
.featured-blog-image img {
  width: 100%;
  height: auto;
  padding-top: 1rem;
}

.featured-blog-content {
  flex: 1;
  padding-top: 3rem;
}

.featured-blog-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.featured-blog-date {
  color: #6c757d;
}

.featured-highlights {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  padding-top: 3rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
}

.bullet-point {
  margin-right: 0.5rem;
}

.blog-link {
  display: inline-block;
  padding-top: 1rem;
  color: #165165;
  text-decoration: none;
}
.blog-link:hover {
  text-decoration: underline;
}

.blog-grid {
  padding: 2rem 0;
}

.blog-container {
  display: grid;
  gap: 30px;
}

.blog-card {
  border: 2px solid #E0E5E8;
  border-radius: 20px;
  padding: 20px;
  transition: background-color 0.5s ease, transform 0.3s ease;
}
.blog-card:hover {
  cursor: pointer;
  background-color: #D5D6D7;
  transform: translateY(-5px);
}

.card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: fill;
  display: block;
  border-radius: 10px;
}

.card-content {
  padding: 1.25rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.card-date {
  display: block;
  font-size: 0.875rem;
  color: #666;
}

@media (min-width: 600px) {
  .blog-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .blog-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .blog-container {
    padding: 0;
  }
}
.blog-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.blog-layout .blog-main {
  flex: 2;
  min-width: 0;
}
.blog-layout .blog-sidebar {
  flex: 1;
  min-width: 0;
}
@media (max-width: 992px) {
  .blog-layout {
    flex-direction: column;
  }
  .blog-layout .blog-main,
  .blog-layout .blog-sidebar {
    flex: none;
    width: 100%;
  }
}

.blog-header {
  margin-bottom: 2rem;
}
.blog-header .blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.blog-header .blog-meta {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-featured-image {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.blog-highlights {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.blog-highlights li {
  margin-bottom: 0.5rem;
}

.related-articles__title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.related-articles__card {
  display: block;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease;
}
.related-articles__card:hover {
  transform: translateY(-3px);
}
.related-articles__card .card-image {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}
.related-articles__card .card-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: inherit;
}
.related-articles__card .card-date {
  color: #6c757d;
  font-size: 0.8rem;
}

.blog-content {
  line-height: 1.6;
  font-size: 1.1rem;
}
.blog-content p {
  margin-bottom: 1.5rem;
}
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.related-articles-gap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/*# sourceMappingURL=blog.css.map */