.featured_whitepaper {
    background: #0A0F14;
    border: 1px solid #0F2139;
    border-width: 1px 0;
    padding: 80px 0
}

.featured_whitepaper_inner {
  display: flex;
  background: #0E151D;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.featured_whitepaper_image {
  flex: 0 0 50%;
}

.featured_whitepaper_image_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 13/5;
  object-fit: cover;
}

.featured_whitepaper_content {
  flex: 1;
  background-image: url('../images/featured-whitepaper-left-bg.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured_whitepaper_title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.featured_whitepaper_text {
  color: #B5BBC3;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.featured_whitepaper_content .blog_card_details {
  margin-bottom: 30px;
  justify-content: flex-start;
  gap: 8px;
}

.featured_whitepaper_btn {
  align-self: flex-start;
}

.whitepaper_grid_section {
  padding: 80px 0;
  border-bottom: 1px solid #0F2139;
}

.whitepaper_section_header {
  margin-bottom: 50px;
}

.whitepaper_section_title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.whitepaper_section_subtitle {
  color: #B5BBC3;
  font-size: 1.125rem;
  margin: 0 auto;
  line-height: 1.5;
}

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

.whitepaper_card {
  display: flex;
  flex-direction: column;
  background: #0E151D;
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              border-color 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.whitepaper_card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 117, 255, 0.15);
}

.whitepaper_card_image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.whitepaper_card_image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 13/5;
  object-fit: cover;
}

.whitepaper_card_content {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.whitepaper_card_title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.whitepaper_card:hover .whitepaper_card_title {
  color: #0075ff;
}

.whitepaper_card_text {
  color: #B5BBC3;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.whitepaper_card_btn {
  align-self: flex-start;
  margin-top: auto;
  width: auto;
  text-align: center;
  font-size: 0.875rem;
  padding: 10px 20px;
}

.whitepaper_grid_actions {
  margin-top: 50px;
}

.load_more_btn {
  padding: 12px 36px;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .featured_whitepaper_inner {
    flex-direction: column;
  }
  
  .featured_whitepaper_image {
    width: 100%;
    max-width: none;
    height: 350px;
  }
  
  .featured_whitepaper_content {
    padding: 40px;
  }
  
  .featured_whitepaper_title {
    font-size: 2rem;
  }
  .whitepapers_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .whitepaper_section_title {
    font-size: 2.25rem;
  }
  .whitepaper_card_content {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .featured_whitepaper_title {
    font-size: 1.75rem;
  }
  
  .featured_whitepaper_content {
    padding: 25px;
  }

  .featured_whitepaper_image {
    height: 250px;
  }
  
  .featured_whitepaper_content .blog_card_details {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  
  .featured_whitepaper_btn {
    width: 100%;
  }
  .whitepaper_grid_section {
    padding: 60px 0;
  }
  .whitepapers_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .whitepaper_section_title {
    font-size: 1.85rem;
  }
  .whitepaper_section_subtitle {
    font-size: 1rem;
  }
  .whitepaper_card_title {
    font-size: 1.25rem;
  }
  .whitepaper_card_btn {
    width: 100%;
  }
}
