.story-page-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background-color: #fffaf0;
}

.story-read-main {
  flex: 1 1 65%;
}

.story-sidebar {
  flex: 1 1 30%;
  background-color: #fffef9;
  padding: 15px;
  border: 1px solid #d4b992;
  border-radius: 8px;
}

.sidebar-box {
  margin-bottom: 20px;
}

.sidebar-box h3 {
  font-size: 20px;
  color: #5a2e00;
  margin-bottom: 10px;
  border-bottom: 1px solid #caa66b;
  padding-bottom: 5px;
}

.sidebar-box input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #d4b992;
  border-radius: 6px;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-box ul li a {
  display: block;
  color: #3f210a;
  padding: 6px 0;
  text-decoration: none;
}

.tag-list a {
  display: inline-block;
  background: #eee1cd;
  color: #5a2e00;
  padding: 4px 10px;
  margin: 5px 5px 0 0;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}

.emoji-reactions{
  text-align: center;
  align-items: center;

}

.related-stories{
 
}

.related-stories ul li{
  list-style-type: none;
}

@media (max-width: 768px) {
  .story-page-layout {
    flex-direction: column;
  }

  .story-read-main, .story-sidebar {
    flex: 1 1 100%;
  }
}
