.documentation-page {
  background: #ffffff;
  color: #111111;
}

.documentation-page #content,
.documentation-page #primary,
.documentation-page main,
.documentation-page .site-main,
.documentation-page .content-area {
  background: #ffffff !important;
  color: #111111 !important;
}

.documentation-page .banner {
  background: #ffffff !important;
  background-image: none !important;
  padding-top: 28px;
}

.documentation-page .banner h1 {
  color: #111111 !important;
}

.documentation-page .section1,
.documentation-page .section2,
.documentation-page .documentation,
.documentation-page .uk-container {
  background: #ffffff;
  color: #111111;
}



.documentation-page .pt-documentation-section.section2 {
  background: #ffffff !important;
  color: #111111 !important;
  padding: 20px 0 40px;
}

.documentation-page .pt-documentation-section .uk-container,
.documentation-page .pt-documentation-section > div {
  background: #ffffff !important;
  color: #111111 !important;
}

.documentation-page .pt-documentation-section * {
  color: #111111 !important;
}

.documentation-page .section2 h2,
.documentation-page .section2 h3,
.documentation-page .section2 h4,
.documentation-page .section2 h5,
.documentation-page .section2 p,
.documentation-page .section2 li,
.documentation-page .section2 ul,
.documentation-page .section2 ol,
.documentation-page .pt-documentation-section h2,
.documentation-page .pt-documentation-section h3,
.documentation-page .pt-documentation-section h4,
.documentation-page .pt-documentation-section h5,
.documentation-page .pt-documentation-section p,
.documentation-page .pt-documentation-section li,
.documentation-page .pt-documentation-section ul,
.documentation-page .pt-documentation-section ol,
.documentation-page .section1 h2,
.documentation-page .section1 p,
.documentation-page .documentation h2,
.documentation-page .documentation p,
.documentation-page h3[style],
.documentation-page h4[style],
.documentation-page h5[style],
.documentation-page p[style],
.documentation-page li[style] {
  color: #111111 !important;
}

.documentation-page .section2 h3,
.documentation-page .section2 h4,
.documentation-page .section2 h5 {
  margin-top: 1.25rem;
}

.documentation {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.documentation__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .documentation__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.documentation-card {
  display: block;
  border-radius: 1rem;
  border: 1px solid rgba(0, 155, 58, 0.18);
  background: #009B3A;
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  text-decoration: none !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 155, 58, 0.12);
}

.documentation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.documentation-card:hover {
  border-color: rgba(0, 155, 58, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 155, 58, 0.22);
  background: #009B3A;
}

.documentation-card:hover::before {
  opacity: 1;
}

.documentation-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.documentation-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.documentation-card:hover .documentation-card__title {
  color: #ffffff;
}

.documentation-card__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.75;
  transition: all 0.3s ease;
  color: #ffffff;
  stroke: currentColor;
}

.documentation-card:hover .documentation-card__icon {
  opacity: 1;
  transform: translateX(3px) translateY(-3px);
  color: #ffffff;
}

.documentation-card__content {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.documentation-card:hover .documentation-card__content {
  color: #ffffff;
}

@media (min-width: 640px) {
  .documentation-card__content {
    font-size: 1rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.documentation-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.documentation-card:nth-child(1) { animation-delay: 0.1s; }
.documentation-card:nth-child(2) { animation-delay: 0.2s; }
.documentation-card:nth-child(3) { animation-delay: 0.3s; }
.documentation-card:nth-child(4) { animation-delay: 0.4s; }
.documentation-card:nth-child(5) { animation-delay: 0.5s; }
