.example-hero {
  padding-block: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(180deg, var(--color-bg-subtle) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
}

.example-hero .breadcrumbs ol {
  display: flex;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-3);
  flex-wrap: wrap;
}

.example-hero .breadcrumbs li + li::before {
  content: "/";
  margin-right: var(--space-2);
  color: var(--color-border-strong);
}

.example-hero .breadcrumbs a {
  color: var(--color-text-muted);
}

.example-hero .breadcrumbs a:hover {
  color: var(--color-primary);
}

.example-hero-inner {
  display: grid;
  gap: var(--space-6);
  align-items: start;
}

.example-hero h1 {
  font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-3);
}

.example-hero-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-5);
  max-width: 60ch;
}

.example-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.example-body {
  padding-block: clamp(2rem, 5vw, 3rem);
}

.example-body-grid {
  display: grid;
  gap: var(--space-8);
}

.example-body-main {
  min-width: 0;
}

.example-body-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.example-section {
  margin-bottom: var(--space-8);
}

.example-section:last-child {
  margin-bottom: 0;
}

.example-section h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 0 0 var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-border);
  letter-spacing: -0.01em;
}

.example-section h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin: var(--space-5) 0 var(--space-2);
}

.example-section p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 var(--space-4);
}

.example-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
}

.example-section ul li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.example-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(-45deg);
}

.example-experience-item {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.example-experience-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.example-experience-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  align-items: baseline;
  margin-bottom: var(--space-1);
}

.example-experience-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.example-experience-date {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  font-variant-numeric: tabular-nums;
}

.example-experience-company {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  margin: 0 0 var(--space-3);
}

.example-experience-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.example-experience-bullets li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.example-experience-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.example-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
}

.example-skills-grid li {
  padding: 0.5rem 0.75rem;
  background: var(--color-bg-muted);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text);
  text-align: center;
  font-weight: 500;
}

.example-skills-grid li::before {
  content: none;
}

.example-tip-card {
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.example-tip-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin: 0 0 var(--space-3);
  color: var(--color-text);
}

.example-tip-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.example-tip-card ul li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.example-tip-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.example-meta-list {
  display: grid;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0;
}

.example-meta-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}

.example-meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.example-meta-item-label {
  color: var(--color-text-soft);
  font-weight: 500;
}

.example-meta-item-value {
  color: var(--color-text);
  font-weight: 600;
  text-align: right;
}

.example-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-4);
}

.example-related-card {
  display: block;
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

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

.example-related-card strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.example-related-card span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.example-faq {
  margin-top: var(--space-8);
}

.example-faq details {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) 0;
}

.example-faq details:last-child {
  border-bottom: none;
}

.example-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
  list-style: none;
  position: relative;
  padding-right: var(--space-6);
}

.example-faq summary::-webkit-details-marker {
  display: none;
}

.example-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--color-text-muted);
}

.example-faq details[open] summary::after {
  content: "−";
}

.example-faq details p {
  margin: var(--space-3) 0 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .example-body-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (max-width: 480px) {
  .example-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .example-hero-actions .btn {
    width: 100%;
  }
}