.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-light);
  margin: 0 8px;
}

.info-hero {
  background: linear-gradient(135deg, #1344b4 0%, #1a56db 50%, #2563eb 100%);
  color: #fff;
  padding: 44px 0 48px;
  position: relative;
  overflow: hidden;
}

.info-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.info-hero-inner {
  position: relative;
}

.info-hero .pre-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 8px;
}

.info-hero h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.info-hero-lead {
  color: rgba(255, 255, 255, .88);
  max-width: 640px;
  font-size: 15px;
  line-height: 1.7;
}

.info-body {
  padding: 48px 0 64px;
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.info-main {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}

.info-main h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text-main);
}

.info-main h2:first-child {
  margin-top: 0;
}

.info-main h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 22px 0 8px;
  color: var(--text-main);
}

.info-main p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.info-main ul,
.info-main ol {
  margin: 0 0 16px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.info-main li {
  margin-bottom: 6px;
}

.info-main a {
  color: var(--primary);
  text-decoration: underline;
}

.info-updated {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.info-callout {
  background: var(--primary-light);
  border: 1px solid #c7d9f9;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 20px 0;
}

.info-callout p {
  color: var(--primary-dark);
  margin: 0;
  font-size: 14px;
}

.info-sidebar {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-side-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.info-side-card h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.info-side-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-side-card li {
  margin-bottom: 6px;
}

.info-side-card a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--primary);
}

.info-side-card a:hover {
  text-decoration: underline;
}

.info-side-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--bg-section);
}

.contact-card-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.contact-card p {
  font-size: 13.5px;
  margin: 0;
}

.contact-card a {
  color: var(--primary);
  font-weight: 600;
}

.entity-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.entity-table th,
.entity-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.entity-table th {
  width: 34%;
  background: var(--bg-section);
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 900px) {
  .info-layout {
    grid-template-columns: 1fr;
  }

  .info-sidebar {
    position: static;
  }

  .info-main {
    padding: 28px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
