/* Guide Page Wrapper */
.amigo-guide-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  margin-bottom: 24px;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #666;
}

.breadcrumb-item a {
  color: #666;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #333;
  text-decoration: underline;
}

.breadcrumb-current {
  color: #333;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px;
}

.breadcrumb-separator {
  color: #ccc;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Article Container */
.article-container {
  margin-top: 8px;
}

/* Article Header */
.article-header {
  margin-bottom: 32px;
}

.article-header-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin: 0;
}

.article-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Article Meta */
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-details {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.author-name {
  font-weight: 600;
  color: #333;
}

.meta-separator {
  color: #ccc;
}

.publish-date {
  color: #888;
}

/* Article Content */
.article-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #333;
}

.article-paragraph {
  margin: 0 0 20px;
}

.section-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin: 40px 0 16px;
  line-height: 1.3;
}

.article-subheading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin: 28px 0 12px;
}

/* Lists */
.article-list {
  margin: 0 0 20px;
  padding-left: 24px;
}

.article-list li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Blockquotes */
.article-quote {
  border-left: 4px solid #e0e0e0;
  margin: 24px 0;
  padding: 16px 20px;
  background: #fafafa;
  border-radius: 0 8px 8px 0;
}

.article-quote p {
  margin: 0;
  font-style: italic;
  color: #555;
}

/* Images */
.article-image-container {
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
}

.article-image-container img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Tables */
.article-table-container {
  margin: 24px 0;
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.article-table th {
  background: #f5f5f5;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid #e0e0e0;
}

.article-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.article-table tbody tr:last-child td {
  border-bottom: none;
}

/* Related Articles */
.related-articles {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e0e0e0;
}

.related-articles-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.related-article-item {
  margin-bottom: 16px;
}

.related-article-link {
  display: block;
  padding: 16px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.related-article-link:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.related-article-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 4px;
}

.related-article-desc {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* CTA Section */
.article-cta {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, #fffbe6 0%, #fff9c4 100%);
  border-radius: 12px;
  text-align: center;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
}

.cta-text {
  font-size: 1rem;
  color: #444;
  margin: 0 0 20px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: #fff333;
  color: #000 !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #e6da00;
}

/* Guides Index Page */
.guides-index {
  max-width: 800px;
  margin: 0 auto;
}

.guides-index-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 8px;
}

.guides-index-subtitle {
  font-size: 1.125rem;
  color: #555;
  margin: 0 0 32px;
}

.guides-empty {
  color: #888;
  font-size: 1rem;
}

.guides-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-card {
  display: block;
  padding: 20px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.guide-card:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.guide-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 6px;
}

.guide-card-description {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .amigo-guide-page {
    padding: 24px 16px 40px;
  }

  .article-title {
    font-size: 1.5rem;
  }

  .section-number {
    font-size: 1.25rem;
  }

  .article-cta {
    padding: 24px 20px;
  }

  .breadcrumb-current {
    max-width: 180px;
  }
}

