/* Slot Page Styles */

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  flex-wrap: wrap;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--muted-foreground);
}

.breadcrumb-list a {
  color: var(--gold);
  transition: opacity 0.3s;
}

.breadcrumb-list a:hover {
  opacity: 0.8;
}

.breadcrumb-list li[aria-current="page"] {
  color: var(--foreground);
}

/* Slot Article */
.slot-article {
  padding: 2rem 0 4rem;
}

/* Slot Hero */
.slot-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .slot-hero {
    grid-template-columns: 1fr 300px;
    align-items: center;
  }
}

.slot-provider-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--background);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}

.slot-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, var(--foreground) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .slot-hero h1 {
    font-size: 2.5rem;
  }
}

.slot-tagline {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.last-updated {
  font-size: 0.875rem;
  color: var(--gold);
}

.slot-hero-image img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Specs Table */
.slot-specs-table {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.slot-specs-table h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.slot-specs-table table {
  width: 100%;
  border-collapse: collapse;
}

.slot-specs-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.slot-specs-table td:first-child {
  color: var(--muted-foreground);
  font-weight: 500;
  width: 40%;
}

.slot-specs-table td:last-child {
  color: var(--foreground);
  font-weight: 600;
}

.slot-specs-table tr:last-child td {
  border-bottom: none;
}

/* CTA Box */
.slot-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(196, 160, 82, 0.1) 0%, rgba(196, 160, 82, 0.05) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  text-align: center;
}

.slot-cta-box .btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.cta-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Content */
.slot-content {
  max-width: 800px;
}

.slot-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--foreground);
}

.slot-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--gold);
}

.slot-content p {
  margin-bottom: 1rem;
  color: var(--foreground);
  line-height: 1.7;
}

/* Pros/Cons Box */
.pros-cons-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .pros-cons-box {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-cons-box.prominent {
  background: linear-gradient(135deg, rgba(196, 160, 82, 0.1) 0%, var(--card) 100%);
  border-color: var(--gold);
}

.pros h4 {
  color: #22c55e;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.cons h4 {
  color: #ef4444;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.pros ul,
.cons ul {
  list-style: none;
}

.pros li,
.cons li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
}

.cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ef4444;
}

/* One-liner Summary (Template C) */
.one-liner-summary {
  padding: 1.5rem;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
  border-radius: var(--radius);
  color: var(--background);
}

.one-liner-summary p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.one-liner-summary strong {
  font-weight: 700;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-table th {
  padding: 1rem;
  background: var(--secondary);
  color: var(--gold);
  font-weight: 600;
  text-align: left;
  font-size: 0.875rem;
}

.comparison-table td {
  padding: 0.875rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
}

.comparison-table tr:hover {
  background: var(--secondary);
}

/* Slot FAQ */
.slot-faq {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.slot-faq h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.slot-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slot-faq .faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.slot-faq .faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.slot-faq .faq-question:hover {
  background: var(--secondary);
}

.slot-faq .faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.slot-faq .faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.slot-faq .faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
}

.slot-faq .faq-item.open .faq-answer {
  display: block;
}

.slot-faq .faq-answer p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Related Slots */
.related-slots {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-slots h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.related-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .related-slots-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 500px;
  }
}

.related-slot-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.related-slot-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.related-slot-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
}

.related-slot-card span {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  color: var(--foreground);
}

/* Author Card */
.author-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.author-info h4 {
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.author-bio {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.author-social {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gold);
}

.author-social:hover {
  text-decoration: underline;
}