.elementor-293 .elementor-element.elementor-element-1cea0b3{--display:flex;}.elementor-293 .elementor-element.elementor-element-0c4f17e{margin:88px 0px calc(var(--kit-widget-spacing, 0px) + 88px) 0px;}/* Start custom CSS for html, class: .elementor-element-0c4f17e *//* GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==== KÁRTYA ==== */
.card {
  background: #1F1F1F;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

/* Hover – zöld fény */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 182, 76, 0.25);
  border-color: #00B64C;
}

/* === IMAGE === */
.card-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.card:hover .card-img {
  transform: scale(1.08);
}

/* === CONTENT === */
.card-content {
  padding: 20px;
  flex: 1;
}

.card-content h3 {
  font-family: 'Saira Semi Condensed', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.card-content p {
  font-family: 'Saira', sans-serif;
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 15px;
}

/* === READ MORE LINK === */
.more-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: #00B64C;
  transition: all 0.3s ease;
}

.card:hover .more-link {
  color: #00FF76;
  transform: translateX(5px);
}/* End custom CSS */