.custom-card-box-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  padding: 0 10px;
}

/* 1 card */
.custom-card-box-wrapper > .custom-card-box-item:nth-child(1):only-child {
  grid-column: 1 / -1; /* full width */
}

/* 2 cards */
.custom-card-box-wrapper > .custom-card-box-item:nth-child(2):last-child:nth-last-child(2),
.custom-card-box-wrapper > .custom-card-box-item:nth-child(1):first-child:nth-last-child(2) {
  grid-column: span 1;
}

/* Default: 3 cards or more */
.custom-card-box-wrapper {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.custom-card-box-item {
  border: 1px solid #959DC6;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  background: #fff;
  text-decoration: none;
  transition: 0.3s;
  display: block;
}

.custom-card-box-item img {
  width: 60px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.custom-card-box-title {
  font-size: 18px;
  font-weight: 700;
  color: #2B345E;
  transition: 0.3s;
}

.custom-card-box-item:hover {
  background: #2B345E;
  border-color: #2B345E;
}

.custom-card-box-item:hover .custom-card-box-title {
  color: #fff;
}

.custom-card-box-item:hover img {
  filter: brightness(0) invert(1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .custom-card-box-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .custom-card-box-wrapper {
    grid-template-columns: 1fr;
  }
}

