.wb-wrapper {
  width: 100%;
  min-height: 100%;
  overflow-y: auto;
}

.wb-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 0px;
}

.wb-article-card {
  background: #ffffff;
  border-radius: 24px;
  margin-top: 0px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

.wb-hero-image {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.wb-hero-pattern {
  position: absolute;
  width:100%;
}

.wb-hero-pattern img{
  width:100%
}

.wb-category-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: linear-gradient(135deg, #4ebd11 0%, #29610a 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.wb-reading-time {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wb-content-section {
  padding: 30px;
}

.wb-title {
  font-size: 30px;
  font-weight: 500;
  color: #1a202c;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.wb-article-content {
  font-size: 18px;
  color: #4a5568;
}

.wb-article-content p {
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.wb-article-content h2 {
  font-size: 28px;
  color: #1a202c;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.wb-article-content h3 {
  font-size: 22px;
  color: #2d3748;
  margin: 35px 0 15px;
  font-weight: 600;
}

.wb-highlight-box {
  background: linear-gradient(135deg, #f6f8ff 0%, #f0e6ff 100%);
  border-left: 4px solid #29610a;
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 0 16px 16px 0;
}

.wb-highlight-box p {
  margin: 0;
  font-style: italic;
  color: #4a5568;
  letter-spacing: 1px;
}

.wb-list-styled {
  margin: 0px 0;
  padding-left: 0;
  list-style: none;
}

.wb-list-styled li {
  padding: 12px 0 12px 35px;
  position: relative;
  letter-spacing: 1px;
}

.wb-list-styled li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #4ebd11 0%, #29610a 100%);
  border-radius: 50%;
}

.wb-list-styled li::after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 11px;
  font-weight: bold;
}

.wb-author-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.wb-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.wb-social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.25);
}

.wb-social-link svg {
  width: 18px;
  height: 18px;
  color: #29610a;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .wb-container {
    padding: 50px 15px;
  }

  .wb-hero-image {
    height: 280px;
  }

  .wb-content-section {
    padding: 30px 25px;
  }

  .wb-title {
    font-size: 28px;
  }

  .wb-article-content {
    font-size: 16px;
  }

  .wb-article-content h2 {
    font-size: 22px;
    line-height: 25px;
  }

  .wb-author-social {
    justify-content: center;
  }

  .wb-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wb-title {
    font-size: 24px;
  }

  .wb-category-badge {
    top: 15px;
    left: 15px;
    font-size: 11px;
    padding: 6px 14px;
  }

  .wb-reading-time {
    top: 15px;
    right: 15px;
    font-size: 11px;
  }

  .wb-highlight-box {
    padding: 20px;
  }
}
