/* Correct: separate media queries */

@media (max-width: 768px) {
  .memorial-card-container {
    max-width: 450px;
    height: 260px;
  }
  .memorial-card-inner {
    flex-direction: row;
    padding: 20px;
  }
  .memorial-card-content {
    width: 65%;
  }
  .memorial-candle-container {
    width: 35%;
  }
  .memorial-candle-wrapper {
    height: 150px;
  }
  .memorial-candle {
    width: 30px;
    height: 130px;
  }
  .memorial-wick {
    height: 10px;
  }
  .memorial-flame {
    width: 16px;
    height: 28px;
  }
  .memorial-glow {
    width: 80px;
    height: 80px;
  }
  .memorial-dedication {
    font-size: 16px;
  }
  .memorial-hebrew {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .memorial-wrapper {
    padding: 20px 10px;
  }
  .memorial-card-container {
    max-width: 320px;
    height: 200px;
  }
  .memorial-card-inner {
    padding: 15px;
  }
  .memorial-card-content {
    width: 60%;
  }
  .memorial-candle-container {
    width: 40%;
  }
  .memorial-candle-wrapper {
    height: 120px;
  }
  .memorial-candle {
    width: 24px;
    height: 100px;
  }
  .memorial-flame {
    width: 12px;
    height: 22px;
  }
  .memorial-dedication {
    font-size: 14px;
    margin-top: 10px;
  }
  .memorial-hebrew {
    font-size: 12px;

  }
  @media (max-width: 480px) {
    .memorial-candle-container {
        display: none;
    }
}
}