/* ─── Credit Union Directory Grid (DB content) ─── */

/* Container */
.max-w-7xl {
  max-width: 80rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.sm\:px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Heading */
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.text-gray-900 {
  color: #111827;
}
.font-bold {
  font-weight: 700;
}
.text-center {
  text-align: center;
}

/* Grid items */
.w-full {
  width: 100%;
}
@media (min-width: 768px) {
  .md\:w-1\/4 {
    width: 25%;
  }
}

/* Spacing between cards (the flex-wrap grid has no gap utilities) */
.page-content .flex-wrap {
  margin: -0.5rem;
  width: auto;
}
.page-content .flex-wrap > div {
  padding: 0.5rem;
}
.page-content .flex-wrap .bg-white {
  height: 100%;
}

/* Cards */
.bg-white {
  background-color: #ffffff;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.p-4 {
  padding: 1rem;
}
.cursor-pointer {
  cursor: pointer;
}
.transition-shadow {
  transition: box-shadow 0.3s ease;
}
.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Links */
.text-blue-600 {
  color: #2563eb;
}
.font-semibold {
  font-weight: 600;
}
.no-underline {
  text-decoration: none;
}
.hover\:text-blue-800:hover {
  color: #1e40af;
}
.page-content .flex-wrap .text-blue-600 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
}