/* Pi Documentation Hub — Custom Styles */

/* Enhance grid card hover effects on landing page */
.md-typeset .grid.cards > ul > li {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.md-typeset .grid.cards > ul > li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Custom admonition style for extension cards */
.md-typeset .admonition.extension {
  border-left-color: #009688;
}

.md-typeset .admonition.extension > .admonition-title {
  background-color: rgba(0, 150, 136, 0.1);
  border-left-color: #009688;
}
