:root {
  --anannt-orange: #E27B0D;
  --anannt-navy: #222E48;
  --anannt-border: #E2E8F0;
  --anannt-muted: #64748B;
}

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

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

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

.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-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

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

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

.anannt-il-decision {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid #C7D2FE;
  background: #F0F4FF;
  border-radius: 10px;
  color: var(--anannt-navy);
  font-size: 14px;
}

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

.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);
}

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