/* Single Post Specific Styles */

/* Ensure proper layout for single post pages */
.site-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
}

.content-area {
  flex: 1;
  min-width: 0;
}

.widget-area {
  width: 300px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  align-self: flex-start;
}

/* Post header styling */
.post-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CBD5E1;
}

.entry-title {
  margin-top: 0;
  margin-bottom: 15px;
  color: #0F172A;
  font-size: 2.2rem;
  line-height: 1.3;
}

.entry-meta {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.entry-meta a {
  color: #0EA5E9;
  text-decoration: none;
}

.entry-meta a:hover {
  text-decoration: underline;
}

/* Post content styling */
.entry-content {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: 20px;
}

.entry-content h2 {
  margin-top: 30px;
  color: #0F172A;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

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

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

/* Entry footer styling */
.entry-footer {
  padding-top: 20px;
  border-top: 1px solid #CBD5E1;
  color: #64748b;
  font-size: 0.9rem;
}

.entry-footer a {
  color: #0EA5E9;
  text-decoration: none;
}

.entry-footer a:hover {
  text-decoration: underline;
}

/* Author bio section */
.author-bio {
  display: flex;
  gap: 20px;
  background: #f1f5f9;
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
}

.author-avatar img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.author-info h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.author-info p {
  margin-bottom: 15px;
  color: #64748b;
}

.author-social {
  display: flex;
  gap: 10px;
}

.author-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #0EA5E9;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: #0284C7;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .site-content {
    flex-direction: column;
  }
  
  .content-area {
    order: 2;
  }
  
  .widget-area {
    order: 1;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .author-bio {
    flex-direction: column;
  }
  
  .entry-title {
    font-size: 1.8rem;
  }
}