:root {
  --anannt-orange: #E27B0D;
  --anannt-navy: #222E48;
  --anannt-dark: #1C1D20;
  --anannt-border: #E2E8F0;
  --anannt-muted: #64748B;
  --anannt-bg: #F8FAFC;
  --anannt-link: #E27B0D;
}

.anannt-il-wrap {
  max-width: 1140px;
  margin: 28px auto;
  padding: 0 12px;
  font-family: Inter, Arial, sans-serif;
}

.anannt-il-card {
  background: #fff;
  border: 1px solid var(--anannt-border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  padding: 18px;
  margin-bottom: 16px;
}

.anannt-il-title {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--anannt-navy);
  text-transform: uppercase;
}

.anannt-il-item {
  border: 1px solid var(--anannt-border);
  border-radius: 10px;
  padding: 12px;
  background: #fff;
}

.anannt-il-item + .anannt-il-item {
  margin-top: 10px;
}

.anannt-il-item h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--anannt-navy);
}

.anannt-il-item p {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--anannt-muted);
}

.anannt-il-link {
  color: var(--anannt-link);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.anannt-il-link:hover {
  text-decoration: underline;
}

.anannt-il-banner {
  background: linear-gradient(90deg, #222E48, #1C1D20);
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 auto 20px;
  max-width: 1140px;
  font-family: Inter, Arial, sans-serif;
}

.anannt-il-banner a {
  color: #FFB357;
  text-decoration: none;
  font-weight: 700;
}

.anannt-il-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.anannt-il-breadcrumb {
  max-width: 1140px;
  margin: 18px auto;
  padding: 0 12px;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  color: var(--anannt-muted);
}

.anannt-il-breadcrumb a {
  color: var(--anannt-navy);
  text-decoration: none;
}

.anannt-il-breadcrumb .sep {
  margin: 0 6px;
  color: #94A3B8;
}

.anannt-il-decision {
  max-width: 1140px;
  margin: 0 auto 18px;
  padding: 12px 14px;
  border: 1px solid #C7D2FE;
  background: #F0F4FF;
  border-radius: 10px;
  color: var(--anannt-navy);
  font-size: 14px;
  font-family: Inter, Arial, sans-serif;
}

.anannt-il-decision a {
  color: var(--anannt-orange);
  font-weight: 700;
  text-decoration: none;
}

.anannt-il-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9990;
  width: min(330px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid var(--anannt-border);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  padding: 14px;
  font-family: Inter, Arial, sans-serif;
}

.anannt-il-sticky-cta h4 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--anannt-navy);
}

.anannt-il-sticky-cta p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--anannt-muted);
}

.anannt-il-cta-actions {
  display: flex;
  gap: 8px;
}

.anannt-il-btn {
  border: none;
  border-radius: 9px;
  padding: 9px 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.anannt-il-btn-primary {
  background: var(--anannt-orange);
  color: #fff;
}

.anannt-il-btn-secondary {
  background: #EEF2FF;
  color: var(--anannt-navy);
}

.anannt-il-sidebar {
  position: fixed;
  right: 16px;
  top: 96px;
  z-index: 9980;
  width: 280px;
  max-height: calc(100vh - 300px);
  overflow: auto;
}

.anannt-il-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 1199px) {
  .anannt-il-sidebar {
    position: static;
    width: auto;
    max-height: none;
    margin: 0 auto;
    padding: 0 12px;
  }
}

@media (max-width: 767px) {
  .anannt-il-next,
  .anannt-il-related-grid {
    grid-template-columns: 1fr;
  }

  .anannt-il-sticky-cta {
    left: 12px;
    right: 12px;
    width: auto;
  }
}