.elementor-2083 .elementor-element.elementor-element-316aace{--display:flex;}.elementor-2083 .elementor-element.elementor-element-f16d682{text-align:left;}.elementor-2083 .elementor-element.elementor-element-723711d{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-f16d682 *//* Physics blog container */
.physics-blog-container {
  max-width: 850px;
  margin: auto;
  padding: 30px;
  background-color: #f0f8ff; /* AliceBlue background */
  border-radius: 15px;
  font-family: Verdana, sans-serif;
  color: #333333;
}

/* Main header */
.physics-blog-container h1 {
  color: #1e3a8a; /* dark blue */
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px #a5b4fc; /* soft blue shadow */
}

/* Subheadings */
.physics-blog-container h2 {
  color: #1e40af; /* royal blue */
  font-size: 1.8rem;
  margin-top: 25px;
}

/* Paragraph text */
.physics-blog-container p {
  line-height: 1.7;
  font-size: 1rem;
  color: #333333;
}

/* Game cards */
.physics-blog-container .game-card {
  background: linear-gradient(145deg, #dbeafe, #e0f2fe); /* light blue gradient */
  padding: 25px;
  margin: 25px 0;
  border-radius: 20px;
  border: 2px dashed #93c5fd; /* soft blue border */
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.physics-blog-container .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Lists */
.physics-blog-container ul {
  padding-left: 25px;
}

.physics-blog-container li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  list-style: none;
}

/* Circular colored bullets */
.physics-blog-container li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1e40af; /* blue bullet */
  font-size: 1.2rem;
}

/* First letter of paragraphs */
.physics-blog-container p::first-letter {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1e3a8a; /* dark blue */
}

/* Links */
.physics-blog-container a {
  color: #1e40af;
  text-decoration: none;
  transition: color 0.3s;
}

.physics-blog-container a:hover {
  color: #60a5fa; /* lighter blue */
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  .physics-blog-container {
    padding: 15px;
  }

  .physics-blog-container h1 {
    font-size: 2rem;
  }

  .physics-blog-container h2 {
    font-size: 1.5rem;
  }
}/* End custom CSS */