/* ---------------------------
   Content Links Section
---------------------------- */
.contentLinks {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contentLinks a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.contentLink {
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  transition: var(--t);
}

.contentLink:hover {
  background: var(--surface);
  border-color: rgba(208, 122, 92, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contentLinkTitle {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.contentLinkDescription {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.contentLinkUrl {
  font-size: 12px;
  color: rgba(208, 122, 92, 0.8);
  font-family: var(--font-mono);
  font-weight: 500;
}

/* ---------------------------
   Comparison Table Section
---------------------------- */
.comparisonTable {
  margin: 24px 0;
  overflow-x: auto;
}

.comparisonTable table {
  width: 100%;
  min-width: 600px;
}

.comparisonTable th {
  background: var(--surface-2);
  font-weight: 600;
  white-space: nowrap;
}

.comparisonTable td strong {
  font-family: var(--font-heading);
  color: var(--text);
}

/* ---------------------------
   Pros/Cons Section
---------------------------- */
.prosCons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.prosConsColumn {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.prosColumn {
  background: rgba(76, 175, 80, 0.08);
  border-color: rgba(76, 175, 80, 0.2);
}

.consColumn {
  background: rgba(244, 67, 54, 0.08);
  border-color: rgba(244, 67, 54, 0.2);
}

.prosConsHeader {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.prosConsIcon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prosIcon {
  background: rgba(76, 175, 80, 0.15);
  color: rgb(56, 142, 60);
}

.consIcon {
  background: rgba(244, 67, 54, 0.15);
  color: rgb(198, 40, 40);
}

.prosConsIcon svg {
  width: 16px;
  height: 16px;
}

.prosConsColumn h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.prosConsColumn ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.prosConsColumn li {
  margin: 14px 0;
  line-height: 1.7;
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  color: var(--text);
}

.prosConsColumn li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--muted);
  font-size: 18px;
}

.prosColumn li::before {
  color: rgba(76, 175, 80, 0.6);
}

.consColumn li::before {
  color: rgba(244, 67, 54, 0.6);
}

.prosConsColumn li strong {
  color: var(--text);
  font-weight: 600;
  display: inline;
}

.prosConsColumn li:first-child {
  margin-top: 0;
}

.prosConsColumn li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .prosCons {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prosConsColumn {
    padding: 20px;
  }

  .prosConsColumn h3 {
    font-size: 20px;
  }
}

