/* Responsive Grid for Service Cards */

/* Desktop - 3 columns */
@media (min-width: 1200px) {
  .hizmet-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Tablet - 2 columns */
@media (min-width: 768px) and (max-width: 1199px) {
  .hizmet-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile - 1 column */
@media (max-width: 767px) {
  .hizmet-grid {
    grid-template-columns: 1fr !important;
  }
  
  .hizmet-card {
    margin-bottom: 16px;
  }
}

/* Ensure equal height for all cards */
.hizmet-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hizmet-card > div:first-child {
  flex-shrink: 0;
}

.hizmet-card > div:last-child {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hizmet-card .btn {
  margin-top: auto;
}
