body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', serif;
  color: #2c2c2c;
  background: #FFFFFF;
}

.back-link {
  position: fixed;
  top: 20px;
  left: 20px;
  display: inline-block;
  padding: 10px 16px;
  background: white;
  color: #333;
  text-decoration: none;
  border-radius: 22px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 100;
}

.back-link:hover {
  transform: translateX(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.article-category {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  color: #999;
  margin: 0 0 8px 0;
  font-family: Poppins, sans-serif;
}

.article-view h1 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 30px 0;
  font-weight: normal;
}

.article-layout {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 30px 80px 30px;
  gap: 50px;
  align-items: flex-start;
}

.article-main {
  flex: 2;
  min-width: 0;
}

.article-side {
  flex: 1;
  position: sticky;
  top: 90px;
}

.article-cover {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: block;
}

@media (max-width: 800px) {
  .article-layout {
    flex-direction: column;
    padding: 80px 20px 60px 20px;
  }

  .article-side {
    position: static;
    order: -1;
  }

  .article-cover {
    max-height: 320px;
  }
}

.article-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-field {
  border-top: 1px solid #e5e2dc;
  padding-top: 18px;
}

.field-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  color: black;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
}

.field-value {
  font-size: 17px;
  line-height: 1.6;
  color: #2c2c2c;
}

.field-value a {
  color: #2c2c2c;
  text-decoration: underline;
}

.field-value p {
  margin: 0 0 12px 0;
}

.field-value p:last-child {
  margin-bottom: 0;
}

.article-tags {
  margin-top: 40px;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 400;
  color: #2c2c2c;
} 

.article-related {
  margin-top: 25px;
  border-top: 1px solid #e5e2dc;
  padding-top: 20px;
}

.related-list {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-list a {
  color: #2c2c2c;
  text-decoration: underline;
  font-size: 15px;
}

.related-list a:hover {
  color: #000;
}


@media (max-width: 600px) {
  .article-view {
    padding: 80px 20px 60px 20px;
  }

  .article-view h1 {
    font-size: 28px;
  }

  .article-cover {
    max-height: 320px;
  }
}