/**
 * Telescope Info Shortcode Styles
 * Styles for the [telescope-info] shortcode display
 * Matches the dataset-info styling for consistency
 */
.telescope-info-wrapper {
  color: #e0e0e0;
}

.telescope-info-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.telescope-info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 10px;
}
.telescope-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.telescope-info-label {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.telescope-info-value {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 768px) {
  .telescope-info-wrapper {
    padding: 10px;
  }
  .telescope-info-grid {
    gap: 5px;
  }
  .telescope-info-row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding-bottom: 8px;
  }
  .telescope-info-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 2px;
  }
  .telescope-info-value {
    font-size: 14px;
    margin-bottom: 0;
  }
}
