:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1ffcc4f */.blog-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.blog-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.gradient-line {
  height: 4px;
  width: 60px;
  background: linear-gradient(to right, #5300AA, #00CF97);
  margin: 0 auto 15px;
}

.blog-description {
  font-size: 16px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  overflow: hidden;
}

.blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 14px;
  color: #5F5F5E;
  margin-bottom: 15px;
  line-height: 1.4;
  flex-grow: 1;
}

.read-more {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(to right, #5300AA, #00CF97);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: opacity 0.3s ease;
  text-align: center;
  font-size: 14px;
}

.read-more:hover {
  opacity: 0.9;
}

.see-more-container {
  text-align: right;
  margin-top: 30px;
}

.see-more-link {
  display: inline-flex;
  align-items: center;
  color: #5300AA;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.see-more-link:hover {
  color: #00CF97;
}

.arrow-icon {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.see-more-link:hover .arrow-icon {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-title {
    font-size: 28px;
  }
}/* End custom CSS */