/* servisne info ma opravy */
.servis-card {
  background: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.servis-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.servis-card .servis-img-container {
  height: 220px;
  overflow: hidden;
}

.servis-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.servis-card:hover img {
  transform: scale(1.1);
}

.servis-card .servis-content {
  padding: 30px;
}

.servis-card .servis-meta {
  font-size: 0.85rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.servis-card .servis-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.servis-card .servis-title:hover {
  color: var(--primary-color);
}

.servis-card .read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
