/*
Theme Name: Hello Child 
Theme URI:  https://www.wpserveur.net
Author:     WPServeur
Author URI: https://www.wpserveur.net
Template:   hello-elementor
Version:    1.0
License:    GNU General Public License v2 or later
*/

.entry-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.entry-content {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.post-date {
  font-size: 14px;
  color: #999;
}
.entry-header img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}


.blog-layout {
  display: flex;
  gap: 30px;
  margin: 30px;
}

.main-posts .post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Main layout */
.single-layout {
  display: flex;
  gap: 30px;
  width:100%;
  background-color:#F5EDE0;
  margin: 0 auto;
  padding: 40px 20px;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* Left content area */
.single-post-left {
  width: 70%;
}

.post-article {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.post-thumbnail {
  margin-bottom: 20px;
}

.post-image {
  width: 100%;
  border-radius: 8px;
  height: auto;
}

.post-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.post-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.post-content {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}

/* Right sidebar */
.single-post-right {
  width: 25%;
}

.related-posts {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.related-heading {
  margin-bottom: 15px;
  font-size: 20px;
}

.related-list {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
}

.related-item {
  margin-bottom: 10px;
}

.related-link {
  text-decoration: none;
  color: #0073aa;
}

.related-link:hover {
  color: #005077;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .single-post-left,
  .single-post-right {
    width: 100%;
  }

  .single-layout {
    flex-direction: column;
  }
}
