/**!
 * Cascading Style Sheet
 */
@charset "utf-8";

a {
  text-decoration: none; /* underline */
  border-bottom: 1px solid #ccc;
  font-size: 0.9rem;
}
/* 인용(quote) */
blockquote {
  padding: 0 0.5rem;
  border-left: 4px solid #ccc;
  background-color: #f9f9f9;
  font-style: italic;
  color: #555;
  quotes: "“" "”" "‘" "’";
}
blockquote p {
    margin: 0.8rem 0 0;
}
blockquote ul {
    padding: 0 1rem;
}
/*
blockquote:before {
  content: open-quote;
  margin-right: 10px;
  color: #ccc;
  vertical-align: -0.4rem;
}
blockquote:after {
  content: close-quote;
  margin-left: 10px;
  color: #ccc;
  vertical-align: -0.4rem;
}
*/
pre {
  background: #f5f6f7;
  padding: 0.8rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: system-ui;
}
table {
  border-collapse: collapse;
}
table td,
table th {
  border: 1px solid #dbdbdb;
  padding: 3px 8px;
}
table th {
  background-color: #f5f4f3;
  font-size: 1rem;
}
table td {
  background-color: #fff;
  font-size: 0.9rem;
}
/*
textarea {
  font-size: 1rem;
  line-height: 1rem;
  height: 1rem;
  overflow: auto;
  resize: none;
}
*/
