/* Platform Section */

/* Info box */
.info-box {
  background-color: white;
  border: 1px solid var(--gray-300);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.info-box:hover {
  box-shadow: 0 10px 25px rgba(94, 152, 241, 0.15);
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.info-tag {
  font-size: 0.75rem;
  background-color: rgba(94, 152, 241, 0.1);
  color: var(--primary);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
}

.info-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-item-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tag-essential {
  background: var(--primary);
  color: white;
}

.tag-popular {
  background: #10b981;
  color: white;
}

.tag-new {
  background: #f59e0b;
  color: white;
}

.item-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.item-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
