/*
Theme Name: Your Theme Child
Template: hello-elementor
Version: 1.0
*/

@import url("../hello-elementor/style.css"); /* Optional for older themes */

.menu-item a {color: #000000; text-decoration: none; font-weight: normal;}
		.menu-item a:hover {color: #2ecc71; text-decoration: underline;}	
		.sub-menu li {width: 215px;}
		.site-header, .site-branding {margin: 1px 0;  padding: 1px;}
		.post-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 5px;
}

.post-content {
  flex: 1;
}

.post-sidebar {
  width: 300px;
}
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 30px;
  font-size: 0.95rem;
}

.post-navigation a {
  text-decoration: none;
  color: inherit;
}

.post-navigation a:hover {
  text-decoration: underline;
}

.prev-post,
.next-post {
  max-width: 45%;
}
@media (max-width: 768px) {
  .post-navigation {
    flex-direction: column;
    gap: 20px;
  }
}

