.tile-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 15px !important;
}

.tile {
  height: 300px;
  background-color: #636362;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 0 20px;
  box-sizing: border-box;
  transition: background-color 0.3s ease, 
              transform 0.3s ease, 
              box-shadow 0.3s ease;
}

.tile:hover,
.tile:focus {
  background-color: var(--tile-hover-color, #84862A);
  transition: 1s;
}

.tile-icon {
  width: 150px;
  height: auto;
  max-height: 147px;
}

.tile__label {
  margin-top: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}


/* Responsive Breakpoints */
@media (max-width: 1199px) {
  .tile-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 991px) {
  .tile-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .tile-grid {
    grid-template-columns: repeat (2,1fr) !important;
  }
  
  .tile {
    height: 280px;
  }
  
  .tile-icon {
    width: 120px;
    max-height: 120px;
  }
  
  .tile__label {
    font-size: 22px;
    margin-top: 20px;
  }
}
    


@media (max-width: 575px) {

  .tile-grid {
      grid-template-columns: 1fr !important;
}
  .tile {
    height: 250px;
  }
  
  .tile-icon {
    width: 150px;
    max-height: 150px;
  }
  
  .tile__label {
    font-size: 24px;
    margin-top: 18px;
  }
}
