/* view.css */

.view-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  flex: 1;
}

.container {
  background: white;
  padding: 60px 80px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 850px;
  margin: 0 auto;
}

/* 제목 */
.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #1e293b;
  line-height: 1.4;
}

/* 세부 정보 */
.info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: gray;
  font-size: 13px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.sep-bar {
  color: #e2e8f0;
}

/* 본문 */
.content {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
  color: #1e293b;
  text-align: justify;
  word-break: keep-all;
}

/* 이미지 */
.image {
  text-align: center;
  margin-bottom: 20px;
}

.image img {
  max-width: 100%;
  border-radius: 8px;
}

/* 버튼 */
.buttons {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

/* 링크 */
.source-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  transition: all 0.2s ease;
}

.source-link:hover {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
  background-color: #eff6ff;
}
