/* Button row wrapper */
.cg-banner__button-row {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;    /* keep buttons in one row on desktop */
  z-index: 2;
  position: relative;
}

/* Individual buttons */
.cg-banner__button {
    flex: 1 1 0; 
  background-color: white;
  color: #6a1b13;
  border: none;
  border-radius: 20px;
  padding: 30px 20px;
  font-size: 16px;
  text-align: center;
  min-width: 140px;  
  max-width: 150px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  transition: transform 0.2s ease;
  z-index: 2;
}

.cg-banner__button:hover {
  transform: scale(1.03);
}

.cg-banner__button img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cg-banner__button-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .cg-banner__button {
    width: 90%;
    max-width: 300px;
  }
}

.text-white-home em{color:#ffffff!important;}