@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.85;
  }
}

.hero-logo img {
  display: block;
  margin: 2rem auto;
  max-width: 256px;
  animation: fadeInScale 0.8s ease-out forwards;
}

.hero-logo img:hover {
  animation: pulse 4s ease-in-out infinite;
}


#kube-features img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#kube-features .item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  padding: 1rem;
}

#kube-features .item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background-color: #f9f9f9;
  z-index: 2;
  position: relative;
}

#kube-features .item:hover img {
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
/* Remove hero divider line */
#hero p::before {
  display: none !important;
}

/* Remove intro top line */
#intro::before {
  display: none !important;
}

/* Remove any border-bottom from section headers */
#redactor-discover h3,
#grafs-discover h3,
#docs-main #area .doc-head,
.section-title {
  border-bottom: none !important;
}



.post-summary {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.post-summary img {
  float: left;
  margin-right: 1rem;
  max-width: 64px;
  border-radius: 4px;
}

.post-summary .summary {
  font-size: 1rem;
  line-height: 1.6;
}

.post-summary h2.title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Hero section at top of list pages */
.list-hero {
  text-align: center;
  margin: 4rem auto 2rem;
  max-width: 680px;
  padding: 0 1rem;
}

.list-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.85rem;
}

.list-hero p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Post list section (not centered) */
.list-posts {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Optional: page-summary tweaks */
.list-posts li {
  margin-bottom: 2rem;
}

/* Pagination spacing */
.pagination {
  text-align: center;
  margin-top: 3rem;
}

.title {
  /*text-align: center;*/
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

/*
 Release notes:
*/

.badge {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-size: 0.7rem;
  padding: 0.2em 0.5em;
  border-radius: 0.25em;
  margin-left: 0.5em;
  text-transform: uppercase;
}

.badge-pro {
  background: #5a00b3;
  color: #fff;
}

