/*--------------------HEADER STYLES-------------*/
#ele-section-header {
    width: 100%;
    position: fixed;
    z-index: 999999;
}
#ele-section-header .elementor-container {
    max-width: 100%;
}
#ele-section-header > .elementor-container{
		max-width: 100%;	
}
#logo-html{
	max-width: 100px;
}
.search-bar{
	display:none;
}
#menu-button .elementor-button {
    padding: 0 24px;
}



/* Top section */
.top-section {
    padding: 50px 20px;
    background-color: #f9f9f9; /* Add a background color to make it stand out */
}

.top-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.video-iframe-container {
    width: 70%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.related-posts-container {
    width: 30%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.related-posts-container h2 {
    font-size: 24px;
    margin-bottom: 15px;
}
/*--------------------------------*/
/* Post Section Styling */
/* Post Section Styling */
.post-section {
  padding: 50px 20px;
}

.post-container {
  display: flex;
  flex-wrap: wrap; /* Allow cards to wrap to the next line */
  gap: 20px; /* Space between cards */
  justify-content: center; /* Center align cards */
}

.post-card {
  width: calc(33.333% - 20px); /* Three cards per row, subtracting gap space */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img {
  width: 100%; /* Ensure the thumbnail spans the full width of the card */
  height: auto;
}

.post-content {
  padding: 15px;
  text-align: center;
}

.post-content h3 {
  font-size: 18px;
  margin: 10px 0;
}

.author-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.author-thumbnail {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.author-name {
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .post-card {
    width: calc(50% - 20px); /* Two cards per row on tablets */
  }
}

@media (max-width: 768px) {
  .post-card {
    width: calc(50% - 20px); /* Two cards per row on medium screens */
  }
}

@media (max-width: 480px) {
  .post-card {
    width: 100%; /* One card per row on small screens */
  }
}

/*---------------STICKY FILTERING MENU STYLES-----------*/
.category-filter-menu {
    max-width: fit-content;
    position: absolute;
    top: 24%;
    left: 2%;
    position: fixed;
}
.all-category {
    display: flex;
    align-items: center;
}
.category-item {
    padding: 5px 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}
.category-item.active {
    font-weight: bold;
    background: grey;
    border-radius: 10px;
}
.category-item:hover {
    background: #33333399;
    border-radius: 10px;
}
.author-image {
    max-width: 30px;
    height: 30px;
    border-radius: 50px;
    object-fit: cover;
    cursor: pointer;
    display: inline;
    float: left;
    margin-right: 10px;
    cursor: pointer;
}

.category-item.active.all-category {
    display: none;
}
svg.home-icon {
    margin-right: 20px;
}
/*---------------FOOTER SECTION----------------*/
#footer-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: yellow;
    padding: 20px;
}

#category-name{
    color:blue;
}









