@charset "UTF-8";
.article-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.article-header {
  margin-bottom: 3rem;
  text-align: center;
}

.article-hero {
  width: 100%;
  aspect-ratio: 2/1;
  border-radius: 8px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: block;
  object-fit: cover;
  background-color: #111111;
}

.article-meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.article-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.3;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(27, 31, 34, 0.85);
  border-radius: 4px;
  padding: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border: solid 1px rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease;
}
.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.08);
}
.faq-item[open] summary {
  margin-bottom: 1rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faq-item p {
  padding: 0 1rem 1rem 1rem;
  margin: 0;
}

.checklist-section ul {
  list-style: none;
  padding-left: 0;
}
.checklist-section ul li {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 0.75rem;
}
.checklist-section ul li:before {
  content: "☐";
  position: absolute;
  left: 0;
  font-size: 1.3em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1680px) {
  .article-container {
    max-width: 1000px;
  }
}
@media screen and (max-width: 736px) {
  .article-container {
    padding: 2rem 1rem;
  }
  .article-title {
    font-size: 1.8rem;
  }
  .article-content {
    font-size: 1rem;
  }
  .article-content .field label {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: normal;
  }
}

/*# sourceMappingURL=article.css.map */
