.breadcrumb {
  max-width: 980px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: .78rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.detail-hero {
  position: relative;
  padding: 2.5rem 1.5rem 3rem;
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
}

.detail-hero-glow {
  display: none;
}

.detail-hero-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.detail-logo {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-meta {
  flex: 1;
  min-width: 240px;
}

.detail-rank {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.detail-meta h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: .5rem;
}

.detail-meta .lead {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 1rem;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1rem;
}

.detail-score-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.detail-score {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.detail-score span {
  font-size: 1rem;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.star-rating {
  display: flex;
  gap: 2px;
  align-items: center;
}

.star {
  color: var(--border);
  font-size: 1rem;
}

.star.lit {
  color: var(--gold);
}

.detail-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.content-block {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.content-block h3 {
  font-size: .95rem;
  font-weight: 600;
  margin: 1.25rem 0 .5rem;
  color: var(--white);
}

.content-block p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: .85rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block ul,
.content-block ol {
  margin: .5rem 0 1rem 1.25rem;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
}

.content-block li {
  margin-bottom: .4rem;
}

.content-block li strong {
  color: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

@media (max-width: 600px) {
  .score-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.score-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.score-item .label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: .35rem;
}

.score-item .val {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

.pros-cons h3 {
  font-size: .9rem;
  margin-bottom: .75rem;
}

.pros-cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros-cons li {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.pros-cons li:last-child {
  border-bottom: none;
}

.pros-cons .pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pros-cons .cons li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}

.info-table th,
.info-table td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.info-table th {
  color: var(--muted);
  font-weight: 500;
  width: 40%;
}

.info-table td {
  color: var(--white);
}

.faq-list {
  margin-top: .5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q .arrow {
  font-size: .75rem;
  transition: transform .25s;
  flex-shrink: 0;
  color: var(--gold);
}

.faq-q.open .arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.65;
  padding: 0;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 1rem;
}

.verdict-box {
  background: linear-gradient(135deg, #231535 0%, #2A1A42 100%);
  border: 1px solid rgba(0, 229, 195, 0.35);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.verdict-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: .75rem;
}

.verdict-box p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.related-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 600px) {
  .related-cards {
    grid-template-columns: 1fr;
  }
}

.related-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.related-card:hover {
  border-color: var(--gold);
}

.related-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
}

.related-card strong {
  display: block;
  font-size: .88rem;
  margin-bottom: .15rem;
}

.related-card span {
  font-size: .75rem;
  color: var(--muted);
}
