section.story-page .container {
  display: flex;
  flex-direction: column;
  padding: 0 auto;
}
section.story-page .container .top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  gap: 28px;
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1024px) {
  section.story-page .container .top {
    flex-direction: column;
  }
}
section.story-page .container .top .left {
  width: 184px;
}
@media (max-width: 1024px) {
  section.story-page .container .top .left {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
section.story-page .container .top .left img {
  width: 100%;
}
@media (max-width: 1024px) {
  section.story-page .container .top .left img {
    width: 40%;
  }
}
section.story-page .container .top .right {
  width: 400px;
}
@media (max-width: 1024px) {
  section.story-page .container .top .right {
    width: 100%;
  }
}
section.story-page .container .top .right h2 {
  font-size: 32px;
  font-weight: 700;
  color: #121212;
  text-align: center;
}
@media (max-width: 1024px) {
  section.story-page .container .top .right h2 {
    font-size: 28px;
  }
}
section.story-page .container .top .right .interaction {
  padding: 24px 0px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.story-page .container .top .right .interaction ul {
  display: flex;
  justify-content: center;
  gap: 16px;
}
section.story-page .container .top .right .interaction ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-right: 1px solid rgba(74, 74, 74, 0.6392156863);
  padding-right: 16px;
}
section.story-page .container .top .right .interaction ul li:last-child {
  border-right: none;
  padding-right: 0;
}
section.story-page .container .top .right .interaction ul li div {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(18, 18, 18, 0.6392156863);
}
section.story-page .container .top .right .interaction ul li div span {
  font-size: 12px;
}
section.story-page .container .top .right .interaction ul li div.text {
  font-size: 14px;
  font-weight: 700;
  color: #121212;
  cursor: pointer;
}
section.story-page .container .top .right .interaction .button {
  padding: 12px 40px;
  background-color: #121212;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  border-radius: 24px;
  width: fit-content;
}
section.story-page .container .top .right .interaction .button:hover {
  background-color: #8e8e8e;
}
section.story-page .container .top .right .interaction .button img {
  filter: brightness(0) invert(1);
}
section.story-page .container .top .right .interaction .button span {
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
}
section.story-page .container .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  width: 100vw;
}
section.story-page .container .bottom .intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
  max-width: 700px;
}
section.story-page .container .bottom .intro .avatar {
  display: flex;
  align-items: center;
  gap: 8px;
}
section.story-page .container .bottom .intro .avatar img {
  border-radius: 100%;
}
section.story-page .container .bottom .intro .avatar h3 {
  font-size: 18px;
  color: #121212;
}
section.story-page .container .bottom .intro .label {
  background-color: #000;
  padding: 5px;
  width: fit-content;
  border-radius: 5px;
  color: #ffffff;
  font-size: 14px;
}
section.story-page .container .bottom .intro p {
  font-size: 16px;
  color: #121212;
  font-weight: 400;
  line-height: 22px;
}
section.story-page .container .bottom .intro .contents {
  width: 100%;
  padding: 24px 0;
  border-radius: 8px;
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
section.story-page .container .bottom .intro .contents h2 {
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  color: #121212;
  padding: 12px 24px;
}
section.story-page .container .bottom .intro .contents ul {
  display: flex;
  flex-direction: column;
}
section.story-page .container .bottom .intro .contents ul li a {
  display: flex;
  justify-content: space-between;
  color: #121212;
  padding: 16px 24px;
}
section.story-page .container .bottom .intro .contents ul li a h3 {
  font-size: 18px;
}
section.story-page .container .bottom .intro .contents ul li a span {
  font-size: 16px;
}
section.story-page .container .bottom .intro .contents ul li a:hover {
  background-color: #efefef;
}