/* components/grid-cards.css */
.grid-cards-section {
  position: relative;
}

.grid-cards-section .section-text {
  margin: auto auto 2.625rem;
  max-width: 900px;
}

.black-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: auto;
}

.black-card {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 300px;
  border-radius: 10px;
  border: 1px solid var(--primary-brown);
  background: var(--grayscale-color-10);
}

.black-card h3 {
  font-size: 1.3125rem;
}

.black-card p {
  color: var(--typography-orange);
}

/* pages/industries/liquor-stores.css */
.black-card p {
  height: 65%;
}

.gradient {
  width: 50vw;
  max-width: 435px;
  opacity: 0.4;
}

.grid-cards-section :nth-child(1 of .gradient) {
  right: 10%;
  bottom: 10%;
}

.grid-cards-section :nth-child(2 of .gradient) {
  left: 0;
  top: 0;
}

.splide__pagination {
  bottom: -3.7rem;
  gap: 12px;
}

.splide__pagination__page {
  height: 6px;
  width: 12px;
  border-radius: 10px;
  opacity: 1;
  transition: width 300ms ease;
}

.splide__pagination__page.is-active {
  transform: none;
  background: var(--primary-color-0);
  width: 28px;
}

@media (max-width: 992px) {
  .black-cards-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .splide__pagination {
    bottom: -5.1rem;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .grid-cards-section .section-text {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .black-card {
    cursor: pointer;
  }

  .grid-cards-section {
    margin-bottom: 8rem;
  }

  .grid-cards-section .splide__arrows.custom-arrows {
    width: 100%;
    justify-content: space-between;
  }
}
