.elementor-341 .elementor-element.elementor-element-ccfb9c0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS *//* ============================================================
   HUNBISCO – KALÓRIATÁBLÁZAT GRID
   ============================================================ */

#kaloriatablazat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  padding: 0;
}

/* ============================================================
   KÁRTYA
   ============================================================ */
.kaloria-etelcsoport {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 18px 20px 16px;
  transition:
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s,
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kaloria-etelcsoport:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.05),
    0 10px 28px rgba(0, 0, 0, 0.08);
  border-color: #d8d8d8;
}

/* ============================================================
   KATEGÓRIA CÍM
   ============================================================ */
.kaloria-etelcsoport h5 {
  margin: 0 0 12px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888888;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
  line-height: 1.3;
}

/* ============================================================
   LINK LISTA
   ============================================================ */
.kaloria-etelcsoport ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kaloria-etelcsoport ul li {
  margin: 0;
  padding: 0;
}

.kaloria-etelcsoport ul li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  padding: 5px 6px;
  border-radius: 5px;
  line-height: 1.35;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}

/* PDF ikon */
.kaloria-etelcsoport ul li a::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bbbbbb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.2s;
}

.kaloria-etelcsoport ul li a:hover {
  background: #f5f3ef;
  color: #1a1a1a;
  padding-left: 10px;
}

.kaloria-etelcsoport ul li a:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a96e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3C/svg%3E");
}

/* ============================================================
   RESZPONZÍV
   ============================================================ */
@media (max-width: 900px) {
  #kaloriatablazat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  #kaloriatablazat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .kaloria-etelcsoport {
    padding: 14px 16px 12px;
  }
}

@media (max-width: 380px) {
  #kaloriatablazat-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */